What is the best way to get the names of all of the tables in a specific database on SQL Server?
相关问题
- sql execution latency when assign to a variable
- What is the best way to cache a table from a (SQL)
- php PDO::FETCH_ASSOC doesnt detect select after ba
- Bulk update SQL Server C#
- SQL to Parse a Key-Value String
相关文章
- Entity Framework 4.3.1 failing to create (/open) a
- How to truncate seconds in TSQL?
- Code for inserting data into SQL Server database u
- Delete Every Alternate Row in SQL
- Linux based PHP install connecting to MsSQL Server
- SQL Azure Reset autoincrement
- How do we alias a Sql Server instance name used in
- Is recursion good in SQL Server?
Here is a list of other object types you can search for as well:
OR
OR
(SQL Server 2000 standard; still supported in SQL Server 2005.)
In SSMS, to get all fully qualified table names in a specific database (E.g., "MyDatabase"):
Results:
SQL Server 2005, 2008, 2012, 2014 or 2016:
To show only tables from a particular database
Or,
PS: For SQL Server 2000: