Q.1.
Insert the appropriate key word in the blank in the query ( A is a relation)
Q.2.
How many relations can a delete command operate on?
Q.3.
What is the result of the following query? DELETE FROM student WHERE marks < (SELECT avg(marks) FROM student);
Q.4.
What is the format of entering date into a database while inserting data into it?
Q.5.
Choose the correct option regarding the following query INSERT INTO course ('CS-, 'course name', 'any' , 5);
Q.6.
To change a value in a tuple without changing all the values in the tuple, we use the _____ statement
Q.7.
What does the following query do? UPDATE student SET marks = marks*1.10;
Q.8.
State true or false: We cannot write a where clause under an update command
Q.9.
Scalar Subqueries can be used in the SQL update statement when they are used under the ____ clause
Q.10.
Which of the following cannot be used to modify the data in a database