SQL (pronounced "ess-cue-ell" or sometimes "sequel") stands for Structured Query Language. It is the standard language used to communicate with relational databases — databases that store data in tables with rows and columns.
| 📘 SQL Keywords |
| SELECT | Used to select data from a database |
| FROM | Specifies the table to select or delete data from |
| WHERE | Filters records |
| INSERT INTO | Adds new data into a table |
| VALUES | Provides values for an INSERT |
| UPDATE | Modifies existing data |
| SET | Defines new values in UPDATE |
| DELETE | Deletes data from a table |
| CREATE TABLE | Creates a new table |
| ALTER TABLE | Modifies a table structure |
| DROP TABLE | Deletes a table |
| JOIN | Combines rows from multiple tables |
| INNER JOIN | Returns rows with matching values |
| LEFT JOIN | All rows from left + matched from right |
| RIGHT JOIN | All rows from right + matched from left |
| FULL JOIN | All rows from both tables |
| GROUP BY | Groups rows sharing a property |
| ORDER BY | Sorts results |
| HAVING | Filters grouped records |
| AS | Alias for a column or table |
| DISTINCT | Returns only distinct values |
| LIMIT | Specifies number of records to return |
| OFFSET | Skips number of records |
| IN | Matches any in a list |
| NOT IN | Excludes from list |
| LIKE | Pattern matching |
| IS NULL | Checks for NULL |
| UNION | Combines multiple SELECT results |
| CASE | Conditional logic |