Sqlite
From DWIKI
Links
Performance tuning sqlite
TODO
Cheatsheetje
Show tables
.tables
Select all from table
select * from mytable;
Describe table
.schema mytable
FAQ
Check integrity
PRAGMA integrity_check;
TODO
.tables
select * from mytable;
.schema mytable
PRAGMA integrity_check;