1/3
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
subquery / nested query / inner query
a query within another SQL query.
precedence order is higher. PEDMAS
Notation
SELECT *
FROM table1
WHERE Percentage IN
(SELECT Percentage
FROM table1
WHERE column_name = ‘ABW’);
alias
temporary name assigned to a column or table.
AS
temporary name assigned to a column or table.
The AS
keyword follows a column or table name to create an alias.