Sql is case-sansative programming language
-when you close the table always use(;)semiclon
SQL create table
Syntax:-
create table table name(
coloumn 1 datatype,column 2 datatype,
constraint_specification(one or more columns));
Sql example:-
create table"student"("rollno"integer primary key,"name"varchar(70),"address"varchar(100));
-when you close the table always use(;)semiclon
SQL create table
Syntax:-
create table table name(
coloumn 1 datatype,column 2 datatype,
constraint_specification(one or more columns));
Sql example:-
create table"student"("rollno"integer primary key,"name"varchar(70),"address"varchar(100));
Post a Comment
If you have any doubts, Please let me know
Thanks!