SQL 计算字段
我正在创建一个这样的视图:
CREATE VIEW all AS
SELECT m.id, m.title, m.description, m.date, m.views, r.rating, r.id
FROM riv_montage m, riv_ratings r
但我想在每行上创建一个计算字段,其功能如下:
r.rating/COUNT(r.id)
有什么方法可以做到这一点吗?
I'm creating a view as such:
CREATE VIEW all AS
SELECT m.id, m.title, m.description, m.date, m.views, r.rating, r.id
FROM riv_montage m, riv_ratings r
But I'd like to create a calculated field on each row that does something like:
r.rating/COUNT(r.id)
Is there any way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我明白了,谢谢。
就性能而言,它很糟糕,但它完成了工作。
I figured it out, thanks.
Performance wise it is awful, but it gets the job done.
无法评价它的性能:
Can't say anything about it's performance: