Search⌘ K

Cheat Sheet

Explore essential SQL commands and syntax in this practical cheat sheet to enhance your database management and query skills. Learn to list databases, create tables, run joins, and understand core SQL functions for effective data handling.

We'll cover the following...
Task Example
What does SQL stand for? Structured Query Language
Default Port on which MySQL runs? 3306 TCP
Hello World example? SELECT "Hello World";
How to list all databases? SHOW DATABASES;
How to select a database to query against? USE DatabaseName
How to list storage engines? SHOW ENGINES;
How
...