SQL Insert
It is use to INSERT the data in database.
Insert data into Customer Table:
INSERT INTO Customer(CustomerName,Address,Phone)VALUES('ABC','PAKISTAN','92363624')
Insert data into Customer Table whose id = 1:
INSERT INTO Customer(CustomerName,Address,Phone)VALUES('ABC','PAKISTAN','92363624') where id = '1'.
Comments
Post a Comment