CBSE Class 12 Computer Science Question 31 of 79

Table Creation and Data Manipulation Commands — Question 5

Back to all questions
5
Question

Question 5

In the given query which keyword has to be inserted ?

INSERT INTO employee ............... (1002, Kausar, 2000) ;
  1. Table
  2. Values
  3. Relation
  4. Field
Answer

Values

Reason — The syntax of INSERT INTO command is :

INSERT INTO <tablename> [<column List>]
Values (<value>, <value> ...............) ;

According to this syntax, Values keyword is used to specify the values that will be inserted into the specified columns of the table.