You are on page 1of 3

CREATE DATABASE

The CREATE DATABASE statement is used to create a new SQL database.

Syntax
CREATE DATABASE databasename;

Example
CREATE DATABASE inventoryDb;

CREATE
The CREATE TABLE statement is used to create a new table in a database

Syntax
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
column3 datatype,
....
);
Example:
CREATE TABLE Customers
(
CustomerID int,
CustomerName varchar(255),
ContactName varchar(255),
Address varchar(255),
City varchar(255),
PostalCode int,
Country varchar(255)
);
1. INSERT
The INSERT INTO statement is used to insert new records in a table.
Syntax
INSERT INTO table_name (column1, column2, column3, ...)
VALUES (value1, value2, value3, ...);
Example:
insert into
Customers(CustomerID,CustomerName,ContactName,Address,City,PostalCode,Country)
values(1,'rupesh','birge','nawalpur','dumkibas',12,'nepal');

2. SELECT
The SELECT statement is used to select data from a database
Syntax
SELECT column1, column2, ...
FROM table_name;
Example:
SELECT * FROM Customers where Country='nepal' or PostalCode=12209;

3. UPDATE
The UPDATE statement is used to modify the existing records in a table.
Syntax
UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;
Example:
update Customers
set City='Butwal'
WHERE CustomerID = 1;

4. DELETE
The DELETE statement is used to delete existing records in a table.
Syntax
DELETE FROM table_name WHERE condition;
Example:
delete from Customers where CustomerID=1;

You might also like