Computer Science, asked by anuj, 1 year ago

creating table in mysql,tell me the syntax with example?

Answers

Answered by siddhartharao77
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!
Similar questions