KnowledgeBoat Logo

Computer Science

In the given query which keyword has to be inserted ?

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

DDL & DML

3 Likes

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.

Answered By

3 Likes


Related Questions