PostgreSQL 视图:在另一个计算字段中引用一个计算字段
我有同样的问题 #1895500,但使用的是 PostgreSQL,而不是 MySQL。
如何定义具有计算字段的视图,例如:
(mytable.col1 * 2) AS times_two
... 并创建基于第一个字段的另一个计算字段:
(times_two * 2) AS times_four
...?
I have the same question as #1895500, but with PostgreSQL not MySQL.
How can I define a view that has a calculated field, for example:
(mytable.col1 * 2) AS times_two
... and create another calculated field that's based on the first one:
(times_two * 2) AS times_four
...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据公式的重量,您可以使用子查询:
或重写计算:
Depending on how heavy the formla is, you could use a subquery:
Or rewrite the computation: