Install
turso
curl -sSL tur.so/install | sh
Launch
tursodb
Turso Enter ".help" for usage hints. Connected to a transient in-memory database. Use ".open FILENAME" to reopen on a persistent database turso>
Execute
Create a table
CREATE TABLE users (id INT, username TEXT);
Insert data
INSERT INTO users VALUES (1, 'alice'); INSERT INTO users VALUES (2, 'bob');
Query data
SELECT * FROM users;
1|alice 2|bob
Was this page helpful?