删除配置单元表中的空白值
table如下所示
col1 col2 col3 col4
post1 - - G06
post1 - F05 -
post1 H65 - -
post2 J60 - -
post2 - K40 -
post2 - - M43
输出应该如下所示。
col1 col2 col3 col4
post1 H65 F05 G06
post2 J60 K40 M43
1条答案
按热度按时间afdcj2ne1#
使用
min()
或者max()
聚合: