Error: Invalid expression in the select list (not contained in either an aggregate function or the GROUP BY clause)

前端 未结 3 1032
花落未央
花落未央 2020-12-21 18:02

I am using Firebird SQL. The below mentioned query returns 4 rows as shown in the figure.

    SELECT a.EPS_ID,b.C_NAME,c.AY_YR_NAME,d.S_NAME,e.E_NAME
FROM 
          


        
3条回答
  •  礼貌的吻别
    2020-12-21 18:26

    Try

    SELECT a.EPS_ID,c.AY_YR_NAME,d.S_NAME,e.E_NAME,MAX(b.C_NAME) AS XT ...
    GROUP BY 1,2,3,4
    

提交回复
热议问题