简体   繁体   中英

sql server GO equivalent in oracle

I am working on migration script for Oracle, I need to change table structure and then populate it with data.

I would like to do the structure changes first and then do the data.

In SQL Server I would use GO to separate statements

Is there an SQL Server GO command equivalent in Oracle?

It's ; and /

select * from user_tables;
/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM