What Is The Syntax To Load Data Into The Database Consider D As #578
What is the syntax to load data into the database? (Consider D as the database and a, b, c as data)
This multiple choice question (MCQ) is related to the book/course gs gs114 Relational Database Management System. It can also be found in gs gs114 Introduction to Relational Model and SQL - Sql Data Definition - Quiz No.1.
What is the syntax to load data into the database? (Consider D as the database and a, b, c as data)
enter into D (a, b, c);
insert into D values (a, b, c);
insert into D (a, b, c);
insert (a, b, c) values into D;