write the use of following SQL command -INSERT
Answers
Answered by
14
Answer:
Explanation:Insert command is used to insert a new record/row/tuple in a table
Answered by
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