Heim >Datenbank >MySQL-Tutorial >SqlServer/MySql查询某个数据库中表的数量_MySQL

SqlServer/MySql查询某个数据库中表的数量_MySQL

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-01 13:31:031272Durchsuche

bitsCN.com

SqlServer/MySql查询某个数据库中表的数量

 

MySql的统计方法

 

SELECT count( * ) FROM information_schema.tables WHERE TABLE_SCHEMA = '库名'

 

SqlServer的统计方法

 

select count(*) as TableCount from sysobjects where type='u' and status>=0


bitsCN.com
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn