In this programming tutorial you will learn the query to get the total no of tables in ms sql server database. Its quite easy. Lets have a look over the query mentioned below.
-- This query will give you the total no of user created tablesSelect Count(*) As TableCountFrom Information_Schema.TablesWhere Table_Type = 'BASE TABLE'
0 comments:
Post a Comment