The query below returns the total number of tables in the current database.
Query
select count(*) as [tables]
from sys.tables
Columns
- tables - number of tables in a database
Rows
The query returns just one row.
Sample results
Those results show that there are 16 tables in the AdventureWorksLT database.