Skip to content

Instantly share code, notes, and snippets.

View alanfrancis442's full-sized avatar
🌱
Learning

Alan Francis alanfrancis442

🌱
Learning
  • Kochi
  • 19:18 (UTC -12:00)
View GitHub Profile
@alanfrancis442
alanfrancis442 / sql_commands.md
Last active May 8, 2025 20:11
SQL cheat sheet

MySQL SQL Cheat Sheet

Basic Query Structure

SELECT column1, column2, ... 
FROM table_name
WHERE condition
GROUP BY column_name
HAVING group_condition
ORDER BY column_name ASC/DESC