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'