3.12 SQL: Components of a query
SELECTcolumnsFROMa table in a databaseWHERErows meet a conditionGROUP BYvalues of a columnORDER BYvalues of a column when displaying resultsLIMITto only X number of rows in resulting table- Always required:
SELECTandFROM. Rest are optional. SELECTcan be combined with operators such asSUM,COUNT,AVG…- To merge multiple tables, you can use
JOIN