sqlite判断表中是否已经存在某个字段

select * from sqlite_master

查询结果:
sqlite判断表中是否已经存在某个字段_第1张图片
该表中name即为表名,sql为创建该表的sql语句,可用sql中是否包含该字段来判断:

select count(*) from sqlite_master where name='Formular' and sql like '%ntype%'

Formular为表名,ntype为字段名

你可能感兴趣的:(数据库,sqlite,sql,数据库)