Sql server GO equivalent in oracle

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

First, I would like to make changes to the structure, and then execute the data.

In SQL Server, I would use GO to separate statements

Is there an SQL Server GO equivalent in Oracle?

+5
source share
1 answer

This is ; and /

1.

 select * from user_tables; 

2.

 select * from user_tables / 
+12
source

All Articles