Count number of tables in a SQL Server database
http://dev.mysql.com/doc/refman/5.0/en/information-schema.html
1 |
select * from information_schema.tables WHERE table_type = 'base table' |
http://dev.mysql.com/doc/refman/5.0/en/information-schema.html
1 |
select * from information_schema.tables WHERE table_type = 'base table' |