MySQL 是否有相当于 SQL Server“索引视图”的功能?
MySQL 是否具有与 SQL Server 相同的“索引视图”功能?
我特别寻找的是一种让 MySQL 创建“视图”的方法,该方法将比简单地执行下划线视图的查询/sql 更快地返回结果。
Does MySQL have an equalavent to SQL Servers "indexed view" functionality?
Is a view faster than a simple query?
What I'm specifically looking for is a way for MySQL to create a "view" that will return results faster than simply performing the underline view's query/sql.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
索引视图是 SQL Server 术语,表示物化视图,MySQL 不支持。
您可以:
An Indexed View is SQL Server terminology for a materialized view, which MySQL does not support.
You can either: