Computer Science, asked by kunuk, 3 months ago

how will you insert a command​

Answers

Answered by sandhya2006mishra
1

Answer:

The INSERT INTO statement is used to add new data to a database. INSERT INTO adds a new record to a table. INSERT INTO can contain values for some or all of its columns. INSERT INTO can be combined with a SELECT to insert records.

Answered by biharautobegusarai
0

Explanation:

Insert command is used to insert data into a table. Following is its general syntax, INSERT INTO table_name VALUES(data1, data2, ...)

Similar questions