sql-join Flashcards
1
Q
What is a foreign key?
A
A key that links a table to another in the database
2
Q
How do you join two SQL tables?
A
select *
from xxx
(join clause) using (a column)
3
Q
How do you temporarily rename columns or tables in a SQL statement?
A
creating alias using the as clause