top of page
Волнистый абстрактный фон

SQLite Object Tree: Indexes

List of indexes in connected databases  SQLite. Allows you to quickly navigate the database structure, perform various index maintenance operations, view the structure and data.  

SQLite tree - table index details

select name 
  from $$ATTACHDB.sqlite_master
where Upper(type) = 'INDEX'  
order by 1

bottom of page