How to Create Table using SQL

To create a table in your database write the following command.
CREATE TABLE employee(
ID INT,
NAME VARCHAR(15),
ADDRESS VARCHAR(50)
);

Here employee is your table name and id, name and address are the attributes of your table.

No comments:

Post a Comment