当前位置:  开发笔记 > 数据库 > 正文

sqlite上的information_schema.columns

如何解决《sqlite上的information_schema.columns》经验,为你挑选了0个好方法。

我想做下一个查询:

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

推荐阅读
135369一生真爱_890
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有