SQL
Structured Query Language
Basic SQL Commands
-- Show all databases in the system
SHOW DATABASES;
-- Switch to a specific database
USE [DATABASE];
-- Show all tables in the selected database
SHOW TABLES;
-- Retrieve all rows and columns from a table
SELECT * FROM [TABLE];Relational databases
SQLite3
Key Commands:
MySQL
Key Commands:
Password Information:
PostgreSQL
Key Commands:
Last updated