I have two machines and I am trying to run the below-mentioned query in both of them.
SELECT
bdm.brand_id AS brandId,
bdm.brand_name AS brandName,
fse.seller_code AS dummySeller,
bdm.feed_source AS feedSource
FROM
`brand_distributor_mapping` bdm
JOIN
`feed_source` fse ON bdm.feed_source = fse.name
GROUP BY bdm.brand_id ,bdm.feed_source;
It's working on one machine and giving Error code 1055 in another.
Mysql version of both machine:
- Not working - mysql Ver 14.14 Distrib 5.6.19, for Linux (x86_64) using EditLine wrapper.
- Working - mysql Ver 14.14 Distrib 5.5.53, for debian-linux-gnu (x86_64) using readline 6.3
brand_name
andseller_code
either need to be in an aggregate function, or you could use a subquery to determine values for them. – Tim Biegeleisen