Another way to list all tables in a database is to query them from the sqlite_schema table. SELECT name FROM sqlite_schema WHERE type ='table' AND name ...
確定! 回上一頁