當前位置:首頁 » 編程語言 » 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文件中