How does the GROUP BY clause manage the NULL values?

后端 未结 1 777
隐瞒了意图╮
隐瞒了意图╮ 2021-02-11 17:33

How does the GROUP BY clause manage the NULL values? Does it correspond to the general treatment of these values?

相关标签:
1条回答
  • 2021-02-11 17:52

    Null values of a column are grouped as a separate group.

    See SQL Fiddle demonstrating Group By and aggregate functions on nullable column

    0 讨论(0)
提交回复
热议问题