Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
简单的问题
我有一张看起来像这样的桌子
我想做的是做一个选择,这样我就可以得到一个结果
这是一个枢轴问题吗?寻找建议以查看如何为此形成“选择”查询?
如果要合并前三列中具有相同值的行,请使用聚合:
select columna, columnb,columnc, max(columnd) columnd, max(columne) columne from mytable group by columna, columnb, columnc
聚合函数 - 例如max()- 忽略null值,因此max(columnd)在null具有相同(columna, columnb,columnc).
max()
null
max(columnd)
(columna, columnb,columnc)