Q:

What is the syntax to load data into the database? (Consider D as the database and a, b, c as data)

belongs to collection: DBMS - SQL MCQ

0

What is the syntax to load data into the database? (Consider D as the database and a, b, c as data)


  1. enter into D (a, b, c);
  2. insert into D values (a, b, c);
  3. insert into D (a, b, c);
  4. insert (a, b, c) values into D;

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

 (b).insert into D values (a, b, c);

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

DBMS - SQL MCQ

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Which of the following commands do we use to delet... >>
<< If a1, a2, a3 are attributes in a relation and S i...