mysql select column_mysql select后边的column不在group by里会怎样

mysql 5.7 的manual:

http://dev.mysql.com/doc/refman/5.7/en/counting-rows.html

4.3.4.8 Counting Rows

If

ONLY_FULL_GROUP_BY

is not enabled, the query is processed by treating all rows as a single group, but the value selected for each named column is indeterminate. The server is free to select the value from any row:

mysql>

+--------+----------+

| owner | COUNT(*) |

+--------+----------+

| Benny | 2 |

| Diane | 2 |

| Gwen | 3 |

| Harold | 2 |

+--------+----------+SELECT owner, COUNT(*) FROM pet GROUP BY owner;

mysql>

Query OK, 0 rows affected (0.00 sec)

mysql>

+--------+----------+

| owner | COUNT(*) |

+--------+----------+

| Harold | 8 |

+--------+----------+

1 row in set (0.00 sec)SET sql_mode = '';SELECT owner, COUNT(*) FROM pet; 但是我们的mysql 供应商提供的中间件不支持这个写法,表分片后owner会返回null....

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值