Answers for "create table in dbms cmds"

SQL
1

how to creat table in dbms

CREATE TABLE table_name ( column1 datatype, column2 datatype, column3 datatype, ...
Posted by: Guest on May-17-2021
0

create table in dbms cmds

CREATE TABLE table_name(
   column1 datatype,
   column2 datatype,
   column3 datatype,
   .....
   columnN datatype,
   PRIMARY KEY( one or more columns )
);
Posted by: Guest on October-19-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language