WAMP Server가 설치된 Windows PC에서 MySQL 5.7.13을 사용하는 오전
여기 내 문제는이 쿼리를 실행하는 동안입니다.
SELECT *
FROM `tbl_customer_pod_uploads`
WHERE `load_id` = '78' AND
`status` = 'Active'
GROUP BY `proof_type`
항상 이와 같은 오류가 발생합니다.
SELECT 목록의 식 # 1이 GROUP BY 절에없고 GROUP BY 절의 열에 기능적으로 종속되지 않는 집계되지 않은 열 'returntr_prod.tbl_customer_pod_uploads.id'를 포함합니다. 이것은 sql_mode = only_full_group_by와 호환되지 않습니다.
최선의 해결책을 말씀해 주시겠습니까?
결과가 필요합니다.
+----+---------+---------+---------+----------+-----------+------------+---------------+--------------+------------+--------+---------------------+---------------------+
| id | user_id | load_id | bill_id | latitude | langitude | proof_type | document_type | file_name | is_private | status | createdon | updatedon |
+----+---------+---------+---------+----------+-----------+------------+---------------+--------------+------------+--------+---------------------+---------------------+
| 1 | 1 | 78 | 1 | 21.1212 | 21.5454 | 1 | 1 | id_Card.docx | 0 | Active | 2017-01-27 11:30:11 | 2017-01-27 11:30:14 |
+----+---------+---------+---------+----------+-----------+------------+---------------+--------------+------------+--------+---------------------+---------------------+
SELECT *
.