+ 2
How do you create a table?
7 Answers
+ 2
Using create table command whose syntax is
Create Table < Table Name > ( <Column name > < column definition>,.........) ;
+ 2
create table <TABLE_NAME>(columnname datatype, next CN DATATYPE);
+ 1
using create table name table_name
+ 1
You can use the existing column format in the database by copying the wholw relation to create your own.
Create table <your table name> as
Select* <or any desire columns> from <existing table name>;
+ 1
create table tablename
(
column_name data type(size),
column_name data type(size),
........
);
0
thanks everyone
0
create table (table_name);