What can be said about the following query :
SELECT ID, CTITLE,
SDATE,
SNO,
FROM SESSIONS
WHERE ID = '7820'
The clause used to put together rows which have the same value in a column is:
The clause used to sort the rows of the result by one or more columns :
The clause used to determine which column to include in query is :
Which question best fits the following query?
SELECT *
FROM COURSES
WHERE CTITLE LIKE '%SQL%'
AND CID NOT IN ('7800','7820')