Computer Science, asked by sanketdeshmukh2019, 11 months ago

write the use of following SQL command -INSERT​

Answers

Answered by parvathy23
14

Answer:

Explanation:Insert command is used to insert a new record/row/tuple in a table

Answered by sushiladevi4418
10

Answer:

Use of SQL command - INSERT.

Explanation:

Insert command of SQL query is used to insert the data into the table it can be used to fill the table by the required data. Insert is only the command which can be used to enter the data. So we can also say that it is the entry data command to enter the data.

For example:-

Insert into <Table_name> Values ("ram",1."ok");

It will enter the data which is passed by this query.

Similar questions