Introduction to SQL
A subquery in an SQL SELECT statement:

has a distinct form that cannot be duplicated by a join.
can only be used with two tables.
cannot have its results sorted using ORDER BY.
can always be duplicated by a join.

ANSWER DOWNLOAD EXAMIANS APP

Introduction to SQL
Which of the following query finds the names of the sailors who have reserved at least one boat?

SELECT DISTINCT s.sname FROM sailors s, reserves r WHERE s.sid = r.sid;
SELECT DISTINCT s.sname FROM sailors, reserves WHERE s.sid = r.sid;
SELECT s.sname FROM sailors s, reserves r WHERE s.sid = r.sid;
None of These

ANSWER DOWNLOAD EXAMIANS APP