-
Notifications
You must be signed in to change notification settings - Fork 2
Command Reference
apekshyya edited this page Aug 9, 2025
·
3 revisions
| 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.)