Comprehensive documentation for SQL commands and functions
Defines a new table in the database.
Modifies an existing table's structure.
Deletes a table and all its data.
Creates an index on a table's column(s).
Deletes an index.
Retrieves data from one or more tables.
Adds new rows of data to a table.
Modifies existing data in a table.
Removes rows of data from a table.
Gives user access privileges to the database.
Removes user access privileges.
Counts the number of rows.
Calculates the sum of values in a column.
Calculates the average of values.
Finds the maximum value.
Finds the minimum value.
Concatenates strings.
Converts string to uppercase.
Converts string to lowercase.
Extracts a part of a string.
Performs IF-THEN-ELSE logic.
Filters records based on a condition.
Groups rows that have the same values.
Filters groups based on a condition.
Sorts the result set.
Restricts the number of rows returned.
Returns rows when there is a match in both tables.
Returns all rows from the left table, and the matched rows from the right table.
Returns all rows from the right table, and the matched rows from the left table.
Returns all rows from both tables, with NULLs where no match exists.
Returns the Cartesian product of rows from both tables.