Sybase 中的索引视图

发布于 2024-09-17 17:04:41 字数 46 浏览 8 评论 0原文

是否可以在 Sybase (> ASE 12.5) 中的视图上创建索引?

Is it possible to create indices on views in Sybase (> ASE 12.5)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

逆夏时光 2024-09-24 17:04:41

您无法在视图上创建索引,因为视图不是物理实体。它只是在调用视图时执行的视图定义(sql 查询)。

您可以在基表上创建索引,在调用视图时可以访问该索引

You can't create index on views becauce view is not a physical entitity. its just a view defination(sql query) execute when view is called.

You can create index on base tables which can be accessed while view is called

骄傲 2024-09-24 17:04:41

我尝试并收到此错误:

create view zzz_xyz as select * from sample_table
go
create index xxxxx on zzz_xyz  (sample_column)
go

I tried and got this error:

create view zzz_xyz as select * from sample_table
go
create index xxxxx on zzz_xyz  (sample_column)
go
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文