Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这样做
select name from sqlite_master where type='table'
但我需要显示除 sqlite_sequence 之外的所有表。
下面的 SQL 有什么问题?
select name from sqlite_master where type = 'table' and name <> 'sqlite_sequence'