Consider The Following Relationp Pre Langsql Cssfilehk1style #91
Consider the following relation:</p> <pre><code class="language-sql"> Instructor (Id, Name, City, Country); </code></pre> <p>Using SQL, how to insert a row with Id number 5, name Ravi.
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Statements - SQL Insert Into Statement - Quiz No.1.
Consider the following relation:
Instructor (Id, Name, City, Country);
Using SQL, how to insert a row with Id number 5, name Ravi.
Insert into Instructor values (5, ‘Ravi’);
Insert into Instructor values (5, Ravi);
Insert into Instructor values (‘5’, ‘Ravi’);
Insert into Instructor (Id, Name) values (5, ‘Ravi’);