MySQL Cheat Sheet
Here's a MySQL cheat sheet to help you quickly reference common commands and functions:
MySQL Basics
Connect to MySQL:
mysql -u username -p
Select a Database:
USE database_name;
List Databases:
SHOW DATABASES;
List Tables:
SHOW TABLES...
dgostin.hashnode.dev3 min read