41.
Which of the following query finds the total rating of the sailors who have reserved boat "103"?

42.
The SELECT statement SELECT 'Hi' FROM DUAL WHERE NULL = NULL; Outputs

43.
Which of the following is illegal?

44.
If a query involves NOT, AND, OR with no parenthesis

45.
Let the statement
SELECT column1 FROM myTable;
return 10 rows. The statement
SELECT ALL column1 FROM myTable;
will return

46.
Table employee has 10 records. It has a non-NULL SALARY column which is also UNIQUE.
The SQL statement
SELECT COUNT(*) FROM employee WHERE SALARY > ALL (SELECT SALARY FROM EMPLOYEE);
prints

47.
Which of the following SQL commands can be used to add data to a database table?

48.
Which of the following join is also called as an 'inner-join'?

49.
Which of the following is NOT a type of SQL constraint?

50.
What is an SQL virtual table that is constructed from other tables?