SQL view
Create Table Syntax- SQL View
Create table Employees(
ID int Primary key,
Emp_Name Text,
Department Text,
Gender Text,
Age int)
Insert Values Syntax- Insert Values
Insert into Employees values(1, 'Apple', 'Accounts', 'M', 45)
ADD Column Syntax
Alter Table Employees Add Column Location Text
DROP Column Syntax
Alter Table Employees Drop Column Location
DROP Table Syntax
Drop Table Employees