Answers for "how to create table plsql"

SQL
0

create new table plsql

CREATE TABLE table_name
( 
  column1 datatype [ NULL | NOT NULL ],
  column2 datatype [ NULL | NOT NULL ],
  ...
  column_n datatype [ NULL | NOT NULL ]
);
Posted by: Guest on February-14-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language