MySQL Forums
Forum List  »  Newbie

Re: MySQL GROUP BY does nog make a difference upper- and power cases?
Posted by: Peter Brawley
Date: April 26, 2017 12:57PM

On case sensitivity, you might wish to read https://dev.mysql.com/doc/refman/5.7/en/case-sensitivity.html

select x, y, z
...
group by x

is disallowed if the sql_mode setting includes 'only_full_group_by', otherwise
returns arbitrary values for y and z.

Options: ReplyQuote


Subject
Written By
Posted
Re: MySQL GROUP BY does nog make a difference upper- and power cases?
April 26, 2017 12:57PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.