当前位置:首页 » 编程语言 » sql同时执行select和update
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

sql同时执行select和update

发布时间: 2023-06-16 12:03:19

㈠ 一个sql文件里能不能放多个select,update等语句

可以的。每个语句必须是完整的sql语句,并且update insert 和delete 的语句后一定要有 commit;

比如:
select * from table_name ;

update table_name
set name = 'a'
where id = 1 ;
commit ;

insert into table_name(id,name)
values(2,'b');
commit ;

alter table table_name
add age number(5) ;

delete table_name
where id = 1 ;
commit;

这些语句都可以在一个.sql文件中