Standard SQL - davidkhala/sql GitHub Wiki
Insert
INSERT INTOis the ANSI standard, but theINTOhere is optional in mysql, SQL server and teradata
Join, union
Join
- is used in order to combine two or more tables based on common property (
ONclause) - horizontal columns merge
Union
- is used when there is a need to produce a conjunction/combined result of two SELECT statements.
- vertical rows merge