Skip to content
apekshyya edited this page Aug 9, 2025 · 3 revisions

Command Reference

Supported Commands

Command Syntax Example Output
CREATE TABLE CREATE TABLE table (col TYPE, ...) CREATE TABLE students (id INT, name TEXT); Table created.
INSERT INSERT INTO table VALUES (...) INSERT INTO students VALUES (1, 'Alice'); Row inserted.
SELECT SELECT col FROM table WHERE ... SELECT name FROM students WHERE age > 18; Alice
.quit .quit .quit (Exits REPL)
.tables .tables .tables students

(Expand as more commands are added.)


Clone this wiki locally