← All Shortcuts

SQL Keyboard Shortcuts & Commands (10)

10 SQL shortcuts and commands.

Search all shortcuts interactively

Open Shortcut Finder

All Shortcuts

Queries

ShortcutActionDescription
SELECT * FROM tableSelect allQuery all data from a table.
WHERE conditionFilterFilter data by condition.
JOIN table ON conditionJoinJoin two tables.
GROUP BY columnGroupGroup by column.
ORDER BY column DESCSortSort in descending order.
INSERT INTO table VALUESInsertInsert data.
UPDATE table SETUpdateUpdate data.
DELETE FROM table WHEREDeleteDelete data.
CREATE TABLECreate tableCreate a new table.
ALTER TABLE ADD COLUMNAdd columnAdd a column.