creating table in mysql,tell me the syntax with example?
Answers
Answered by
1
Following is an example to create a table in MYSQL:
create table Demo
(
Empname varchar(10),
Ejob varchar(10),
joining DATE
);
Hope this helps!
create table Demo
(
Empname varchar(10),
Ejob varchar(10),
joining DATE
);
Hope this helps!
Similar questions