SQL query cheatsheet in one page

To Create a database

To Delete a database

To Work in a database

To Create table in a database

To Delete a table

To show schema(structure) of a table

To Change name of a table

To Change name of a column

To add new column at last

To add new column at specific position

To Delete a column

To modify datatype(size)/position of a column

To insert values in a table

To update values in a table

To read values in a table

Conditional Operators for where clause

And OR and NOT Operators

MIN() MAX() AVG() COUNT() and SUM()

Order by (Ascending or Descending order)

IN and BETWEEN