How to Create Table using SQL
To create a table in your database write the following command.
Here employee is your table name and id, name and address are the attributes of your table.
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.
How to Create database using SQL
To create database just write the following command.
CREATE DATABASE crazy;Here crazy is your database name.
Subscribe to:
Comments (Atom)

