Skip to content

Instantly share code, notes, and snippets.

View supervoron1's full-sized avatar
🏠
Working from home

Dmitriy Vorontsov supervoron1

🏠
Working from home
View GitHub Profile
dmitry@linuxmint in ~
$ sqlite3 test_guru
sqlite> CREATE TABLE categories (
...> id INT PRIMARY KEY,
...> title VARCHAR(40)
...> );
sqlite> CREATE TABLE tests (
...> id INT PRIMARY KEY,
...> title VARCHAR(40),