write a SQL query to insert the details in already created table
Answers
Answered by
1
INSERT INTO Syntax
It is possible to write the INSERT INTO statement in two ways. The first way specifies both the column names and the values to be inserted: INSERT INTO table_name (column1, column2, column3, ...)
It is possible to write the INSERT INTO statement in two ways. The first way specifies both the column names and the values to be inserted: INSERT INTO table_name (column1, column2, column3, ...)
Similar questions