Executing Queries
Running a query
Section titled “Running a query”Press Cmd+Enter to execute the current editor contents.
Press Ctrl+Enter to execute the current editor contents.
Multi-statement execution
Section titled “Multi-statement execution”Write multiple SQL statements separated by semicolons. Seaquel executes all of them in sequence:
SELECT * FROM users;SELECT * FROM orders;Each statement produces its own result set, displayed in separate panels below the editor.
Understanding the output
Section titled “Understanding the output”After execution, you’ll see for each statement:
- Row count — how many rows were returned or affected
- Execution time — how long the query took to run
- Error messages — if a statement fails, its error is shown inline without stopping subsequent statements
EXPLAIN queries
Section titled “EXPLAIN queries”Use the toolbar buttons to run EXPLAIN or EXPLAIN ANALYZE on your query. This shows the query execution plan without modifying the SQL in your editor — useful for diagnosing slow queries.