MySQL #1140 - Mixing of GROUP columns

前端 未结 7 1227
难免孤独
难免孤独 2020-11-29 11:27

Hi wondering if perhaps someone could shed some light on the below error. The sql works fine locally but i get the the below error remotely.

SQL query:

<         


        
7条回答
  •  余生分开走
    2020-11-29 11:48

    stripped it back to basics:

       SELECT COUNT( node.nid ) 
         FROM node node
    LEFT JOIN content_type_update node_data_field_update_date ON node.vid = node_data_field_update_date.vid
        WHERE node.type IN ('update')
     ORDER BY node_data_field_update_date.field_update_date_value DESC
    

提交回复
热议问题