Database Explorer
No tables yet. Create one using the Query or Designer tab.
Ready
SQL Editor
1
2
3
4
5
-- Try me
CREATE TABLE IF NOT EXISTS students(id INTEGER PRIMARY KEY, name TEXT, year INTEGER);
INSERT INTO students(name, year) VALUES ('Asha', 10), ('Marco', 11), ('Zara', 13);
SELECT * FROM students;
Results
Run a query to see results.