数据库中所有表的列表
如何使用查询获取 SQL Server 数据库中所有表的列表。我的目的是在网页上动态显示它。
How can I get list of all tables in SQL Server database using query. My intention is to dynamically display this on a webpage.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试:
这应该会给你你想要的。然后,您需要从网页调用它以按所需格式显示。
您可能想查看:
可能会有所帮助你在你正在努力做的事情中。
另外 - 您可能想查看 SQL Server:我应该使用 information_schema 表而不是 sys 表吗? 比较 sys.tables 与 INFORMATION_SCHEMA。
INFORMATION_SCHEMA 是 SQL92 标准,但我个人更喜欢 MS-SQL 世界中的 sys.tables,因为它(至少对我来说)结构良好并且具有所有相关信息,例如 索引信息在 INFORMATION_SCHEMA 中不可用。
Try:
This should give you what you want. You'll then need to call it from your webpage to display in required format.
You may want to see:
Will probably help you in what you are trying to do.
Also - you may want to see SQL Server: should I use information_schema tables over sys tables? for sys.tables vs INFORMATION_SCHEMA.
INFORMATION_SCHEMA is SQL92 standard, but I personally prefer sys.tables in MS-SQL universe as it seems (to me atleast) well structured and have all relevant information, e.g. index information is just not available in INFORMATION_SCHEMA.
更通用的方式:
A more generic way: