Page 1 of 1

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

Posted: Thu Jul 14, 2022 8:53 am
by answerhappygod
a) enter into D (a, b, c);
b) insert into D values (a, b, c);
c) insert into D (a, b, c);
d) insert (a, b, c) values into D;