Define a new table
Create new rows in a table
Modifies a table definition
Retrieve rows from a table or view
To retrieve specific information from a table excluding other irrelevant data
Select rows that must satisfy all the given conditions
Select rows that satisfy atleast one of the given conditions
Select rows that do not satisfy the given condition
To temporarily rename a table or a column heading
To select values within a range
To collect data across multiple records and group the results by a column
To filter data based on the group functions
To test whether a value is in the list of values provided
To search for a specified pattern in a column
To return only distinct (different) values in a column
To sort the records in the result based on a column
Returns the average value of a numeric column
Returns the number of rows that matches a specified criteria
Returns the largest value of the selected column
Returns the smallest value of the selected column
Returns the total sum of a numeric column
Define a new view
Remove a view
Update rows of a table
Define a new table
Delete rows of a table
Converts a field to upper case
Converts a field to lower case
Returns the length of a text field
Returns the current system date and time
Define a new table
Enforces a column to not accept NULL values
Used in combination with a subquery and is considered to be met if the subquery returns at least one row
Create a new table from the results of a query
Returns all rows from both tables where there is a match
Returns all the rows from the first table even if there are no matches in the second table
Returns all the rows from the second table, even if there are no matches in the first table
Returns all rows from both tables with nulls in place where the join condition is not met
Combines the result of two or more SELECT statements and selects only distinct values
Combines the result of two or more SELECT statements and also select duplicate values
Ensures that each row for a column must have a unique value
Combination of NOT NULL and UNIQUE. It uniquely identifies each record in a database table
Ensure the referential integrity of the data in one table to match values in another table
Specifies a default value for a column
Extract characters from a text field
Rounds a numeric field to the number of decimals specified
Formats how a field is to be displayed