假设我有这个:
id | col1 | col2 | col3 | col4 | col5 | name
1 | xxx | xxx | xxx | | xxx | John
2 | | | | xxx | xxx | Peter
3 | xxx | xxx | xxx | | | Sam
我怎么会得到这样的结果:
id | filledData | name
1 | 4 | John
2 | 2 | Peter
3 | 3 | Sam
基本上,我想使用设置的列来确定数据的“填充程度”如何,然后对其进行排序,以便我可以尝试先用最少的数据填充这些列?