sqlite3 能查某database有table
sqlite3 能查某database有table
怎下sql法呢
thx
[解决办法]
可以的。
select count(*) as count_table from sqlite_master where type='table';
则 count_table列就存储了几张table了
发布时间: 2012-03-01 10:25:46 作者: rapoo
sqlite3 能查某database有table
sqlite3 能查某database有table
怎下sql法呢
thx
[解决办法]
可以的。
select count(*) as count_table from sqlite_master where type='table';
则 count_table列就存储了几张table了