我想做下一个查询:
SELECT table_name, column_name, data_type, is_nullable, ... FROM information_schema.columns
在sqlite数据库上.
我检查了
PRAGMA table_info(table_name);
但不适合我的需要,只需检查一个表的字段.
我检查了
select * from sqlite_master where type = 'table';
但这只是获取表名和创建查询.
有没有办法将这些"加入"方法?或任何其他建议或想法?TX