Introduction to SQL
Introduction
First Tour Of SQL
What Is SQL
Creating Your Database
Data
Getting A Deeper Understanding
Getting Meta
Developing With SQL
Glossary
Appendix
References
Book Outline And Todos
ROUND
Table
Test
CatalogIntroduction to SQLGetting A Deeper UnderstandingOrder Of Operation

Untitled

SELECT *
FROM <table> as x
JOIN <table_2> as y
	ON x.rel_id = y.id
WHERE
	<expr>
	AND <expr>
	OR <expr>
GROUP BY
ORDER BY <column> ASC | DESC