SQL and PL/SQL Question: Download SQL and PL/SQL PDF

The INSERT INTO Statements in SQL?

Tweet Share WhatsApp

Answer:

INSERT INTO table_name VALUES (value1, value2,....)
INSERT INTO table_name (column1, column2,...) VALUES (value1, value2,....)

Download SQL and PL/SQL PDF Read All 45 SQL and PL/SQL Questions
Previous QuestionNext Question
The SELECT INTO Statement is most often used to create backup copies of tables or for archiving records?The Update Statement in SQL.