Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

create table in dbms cmds

CREATE TABLE table_name(
   column1 datatype,
   column2 datatype,
   column3 datatype,
   .....
   columnN datatype,
   PRIMARY KEY( one or more columns )
);
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #create #table #dbms #cmds
ADD COMMENT
Topic
Name
2+7 =