Answers:
Subqueries always process the innermost query first and the work outward.
Answers:
Joins are usually faster, but subqueries can be more reliable, so it depends on your situation.
Answers:
Inner Join
Answers:
Inner joins are one of the most popular types of joins use
There is no limit to the number of table you can join with an inner join.
Performance will most likely worsen with the more joins you make
Answers:
Aliases are often used to make column names more readable.
SQL aliases are used to give a table, or a column in a table, a temporary name.
An alias only exists for the duration of the query.
Answers:
Should be using an inner join rather than a left join
Column names do not have an alias
Answers:
The only difference between a left and right join is the order in which the tables are relating.
Answers:
200
Answers:
Each SELECT statement within UNION must have the same number of columns
The UNION operator is used to combine the result-set of two or more SELECT statements
The columns must also have similar data types
Answers:
Retrieve data from multiple tables.