Computer Science, asked by Ashishmishraji9862, 11 months ago

What command can be used to create a new row in a table in the database?

Answers

Answered by nrgibson1
0

If you are adding values for all the columns of the table, you do not need to specify the column names in the SQL query. However, make sure the order of the values is in the same order as the columns in the table. The INSERT INTO syntax would be as follows:

Answered by StaceeLichtenstein
3

Insert command is the correct answer to the given question.

Explanation:

  • Insert command are used in the database to inserting the value in the database in the row format before performing the insert command we must confirm the schema of table is created by the create command .
  • Following are the syntax of insert command in the database management system .

   Insert into table-name(column 1,column2..)values(values1,values2);

  • For example : insert into emp(id,city)values(235'knpu'); here the schema of  emp table is already created.

Learn More :

  • brainly.in/question/12894742
Similar questions