INSERT INTO:
This sql command is used to add data into the fields (columns) of table
INSERT INTO table-name [column1, column2,......] VALUES (value1, value2,.....)
Examples
INSERT INTO student VALUES ('12-2800','HAMID','ALI',25)
INSERT INTO student (sid, fname, lname) VALUES ('12-2800','HAMID','ALI')
No comments:
Post a Comment