【如何查看Sqlite数据库中有多少张表[顶者有分]

时间:2023-01-20 03:21:41
SqlServer中这样统计:

select name from sysobjects where xtype='U'
要知道总数的话就简单了:
select count(*) from sysobjects where xtype='U'

Oracle中这样查询:
Select * From user_tables;

========================以上两个都无法使用。。================

5 个解决方案

#1


select count(*) from sqlite_master  where type='table'

#2


select count(*) from sysobjects where xtype='U' 
/*
----------- 
15

(所影响的行数为 1 行)
*/

#3


select name
from sqlite_master
where type='table';

#4


太好了,太感谢了,不知道在哪儿能下到关于SQLITE的帮助手册哦!

#5


求SQLite使用手册啊

#1


select count(*) from sqlite_master  where type='table'

#2


select count(*) from sysobjects where xtype='U' 
/*
----------- 
15

(所影响的行数为 1 行)
*/

#3


select name
from sqlite_master
where type='table';

#4


太好了,太感谢了,不知道在哪儿能下到关于SQLITE的帮助手册哦!

#5


求SQLite使用手册啊