Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

leetcode关于mysql中having报错

这是leetcode中刷到的题,但是论坛里问了一遍,这个问题一直没能解决,所以想请教一下为什么这里用having是错的。题目如下:
image.png
我的答案是这样的:

select p.product_id, round(sum(price*units)/sum(units),2) as average_price
from Prices p 
left join UnitsSold as u 
on p.product_id=u.product_id 
group by p.product_id
having u.purchase_date>=p.start_date and u.purchase_date<=p.end_date

报错信息:

Unknown column 'purchase_date' in 'having clause'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

因为你的select中没有purchase_date


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...