1/20
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
SELECT
SQL QUERY: Used to list the contents of a table.
Various segments of a query that help filter data, such as SELECT, FROM, WHERE, GROUP BY, HAVING, ORDER BY, INSERT, UPDATE, DELETE, and JOIN
WHERE
SQL QUERY: Used to select partial table contents by placing restrictions on the rows to be included in the output.
GROUP BY
SQL QUERY: Used to collect data across multiple records and group the results by one or more columns.
HAVING
SQL QUERY: Specifies conditions that filter group results, following the GROUP BY clause.
ORDER BY
SQL QUERY: Used to sort data in ascending or descending order based on one or more columns.
SQL QUERY: Used with SELECT to eliminate duplicate records and fetch only unique records.
Returns records from the first set that are not in the second set.