create new table plsql

Solutions on MaxInterview for create new table plsql by the best coders in the world

showing results for - "create new table plsql"
Rocco
27 Oct 2018
1CREATE TABLE customers
2( customer_id number(10) NOT NULL,
3  customer_name varchar2(50) NOT NULL,
4  city varchar2(50)
5);
Marshall
13 Mar 2019
1CREATE TABLE table_name
2( 
3  column1 datatype [ NULL | NOT NULL ],
4  column2 datatype [ NULL | NOT NULL ],
5  ...
6  column_n datatype [ NULL | NOT NULL ]
7);