SQL Flashcards
vertical bar | meaning
bar meaning
OR
curly brackets {…} meaning
indicates a required element
square bracket […] meaning
indicate an optional element or optional repetition
SELECT description
selects specific columns
FROM description
specifies the table(s)
WHERE description
filters individual rows that are subject to some condition
GROUP BY description
groups together rows with same column name
HAVING description
filters groups that are subject to some condition
ORDER BY description
specifies the order of the output
SELECT everything query
SELECT (*) FROM table;
IS NULL description
to test for empty values
IS NOT NULL description
to test for non-empty values
SELECT DISTINCT description
selects columns without the repetitive values
AS description
renames a column
LIKE description
to search for a specified pattern
% meaning
0 or more characters
_ meaning
any single character
e.g S% meaning
any string starting with the letter “S”
e.g S_ _ _ _
any 5 letter string starting with “S”
e.g %S
any string ending with the letter “S”
NOT LIKE description
to filter a pattern out
ASC keyword
to specify ascending order
DESC keyword
to specify descending order
INSERT values into a table query
INSERT INTO table(column) VALUES (‘values’);
INSERT columns into another table query
INSERT INTO table2 SELECT column FROM table1 WHERE condition;
UPDATE query
UPDATE table SET column1 = value1 WHERE condition;
SET description
specifies names of 1 or more columns that are to be updated
DELETE query
DELETE FROM table WHERE condition;
COUNT description
returns number of rows that match the specified criterion
SUM description
returns sum of values in specified column
AVG description
returns average value in the specified column
MIN description
returns lowest value in specified column
MAX description
returns highest value in specified column
Which SQL aggregate functions can only apply to numeric and non-numeric fields?
COUNT, MIN, MAX
Which SQL aggregate functions can only apply to numeric fields?
SUM and AVG
DISTINCT has no effect with ___/___ but may have with ___/___
MIN/MAX, SUM/AVG
SELECT DISTINCT query
SELECT DISTINCT column FROM table;
AS query
SELECT columnName AS newName FROM table;
COUNT query
SELECT COUNT (column) FROM table WHERE condition;
SUM query
SELECT SUM (column) FROM table WHERE condition;
AVG query
SELECT AVG (column) FROM table WHERE condition;
GROUP UP query
SELECT column FROM table WHERE condition GROUP BY column;
HAVING query
SELECT column FROM table WHERE condition HAVING condition;
ORDER BY query
SELECT * FROM table ORDER BY column;
ASC|DESC query
SELECT column FROM table ORDER BY column ASC|DESC
IS NULL|IS NOT NULL query
SELECT column1 FROM table WHERE column2 IS NULL | IS NOT NULL;
LIKE|NOT LIKE query
SELECT column1 FROM table WHERE column2 LIKE | NOT LIKE pattern;