SQL:``在选择列表中,'olumn'tbl.column'是无效的,因为它既
我想知道为什么会出现以下错误:
Column 'tbl.column' is invalid in the select list because it is not contained
in either an aggregate function or the GROUP BY clause.
sql语句如下:
SELECT tbl.column, MAX(tblOther.columnOtherId) AS otherID FROM (tbl INNER
JOIN tblOther ON tbl.columnId = tblOther.column ...