flare> prompt and accepts standard SQL statements. End each statement with a semicolon, and it executes right away. Multi-line statements are supported — continuation lines use the ... | prompt.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Query and manage FlareDB tables with the interactive SQL shell.
flare sql
flare> prompt and accepts standard SQL statements. End each statement with a semicolon, and it executes right away. Multi-line statements are supported — continuation lines use the ... | prompt.
| Command | Description |
|---|---|
help | Show help text. |
exit, quit | Exit the shell. |
CREATE TABLE users (id INT, name STRING);
INSERT INTO users VALUES (1, 'Alice'), (2, 'Bob');
SELECT * FROM users;
SHOW TABLES;
SELECT * FROM flare.default.scores;