Skip to content

Instantly share code, notes, and snippets.

@barryparkin
barryparkin / (sqlite) Show SQLite tables, indexes, etc...
Last active August 29, 2015 14:04
(sqlite) Show SQLite tables, indexes, etc...
SELECT *
FROM sqlite_master;
@barryparkin
barryparkin / (sqlite) Find table in database by field name
Last active February 13, 2024 11:44
(sqlite) Find table in database by field name
SELECT DISTINCT TABLE_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME like '%{{fieldname}}%'
AND TABLE_SCHEMA = {{Database}};