Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我的数据库服务器中有多少表,它们是什么。
您可以通过执行以下 SQL 命令从某个数据库请求表:
USE <database-name>; SHOW TABLES;
希望有帮助。
您可以按以下方式触发查询
SELECT * from information_schema.tables;
-- 在 MS-SQL Server 中,从数据库中检索所有 TableName。
选择 * 从 sys.tables;