SQL Basics Flashcards
Basic Queries from SQL bootcamp
1
Q
SELECT * FROM tbl
A
Select all rows and columns from table tbl
2
Q
SELECT c1, c2 FROM tbl
A
Select column c1, c2 and all frows from table tbl
3
Q
SELECT c1, c2 FROM tbl
WHERE conditions
ORDER BY c1 ASC, c2 DESC
A
Select columns c1, c2 with where conditions and from table tbl order result by column c1 in ascending order and c2 in descending order