Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.09 KB

File metadata and controls

39 lines (29 loc) · 1.09 KB

SQL Editor

Features

  • Monaco Editor (same engine as VS Code)
  • Syntax highlighting for SQL
  • Intelligent auto-complete (table names, column names, SQL keywords)
  • Multi-cursor editing
  • SQL formatting (Shift+Alt+F)
  • Find and replace (Cmd+F)
  • Drag and drop table names from sidebar

Executing queries

Action Shortcut
Run query Cmd/Ctrl+Enter
Run selected text Select text, then Cmd/Ctrl+Enter
Explain query Toolbar "Explain" button
Cancel running query Toolbar "Cancel" button

Multi-statement

You can write multiple SQL statements separated by semicolons. Tabloy executes them sequentially and shows results for each SELECT statement in separate tabs.

Query history

  • All executed queries are saved automatically
  • Open history: click "History" in toolbar
  • Search, filter by favorites, reuse previous queries
  • History is stored in SQLite (persists across restarts)

File operations

Action Shortcut
Open .sql file Cmd/Ctrl+O
Save to .sql file Cmd/Ctrl+S
Save as Cmd/Ctrl+Shift+S