那么当在 group by 上使用多个列时,mysql 是如何工作的:
select
a.nome,
b.tb2_id,
count(c.tb2_id) as saida
from tb1 a
left join tb2 b on a.tb1_id = b.tb1_id
left join tb3 c on b.tb2_id = c.tb2_id
group by a.tb1_id, b.tb2_id
order by a.tb1_id desc
mysql如何知道它将使用哪一列对结果集进行分组?
我认为它会按顺序执行,但我将 group by 更改为 'b.tb2_id,a.tb1_id' 但它没有做任何更改,结果相同。