标签: sql-server
SELECT title, MAX(productioncost) FROM movie WHERE productioncost < (SELECT MAX(productioncost) FROM movie);
我收到错误
选择列表中的“ movie.title”列无效,因为它既不包含在聚合函数中也不在GROUP BY子句中。
我期望应该是第二高的生产成本