Sqlite: Difference between revisions

From DWIKI
Tony (talk | contribs)
mNo edit summary
Tag: wikieditor
Tony (talk | contribs)
Tag: wikieditor
 
Line 13: Line 13:
==Describe table==
==Describe table==
  .schema mytable
  .schema mytable
==Describe all tables==
.schema


= FAQ =
= FAQ =

Latest revision as of 12:27, 28 January 2026

Links

Performance tuning sqlite

TODO

Cheatsheetje

Show tables

.tables

Select all from table

select * from mytable;

Describe table

.schema mytable


Describe all tables

.schema

FAQ

Check integrity

PRAGMA integrity_check;