我有一个表包含生物信息和20+列不同类型的电话号码都有不同的列名(相同的电子邮件和地址)我试图清理表中选择的前3个非空值从列为每一行。
现在我有
Id FN LN Gender phone1 phone2 phone3 cellphone cell1 cell2 cell3 cell4 business1 etc
234 John Smith F 123-4566 Null 763-2899 243-8299 Null 289-2389 Null Null Null etc
394 Jane Smith F Null 232-3553 345-2453 Null Null Null Null Null 453-5656 etc
556 Dash Doe M 121-3233 234-5466 234-2556 356-3564 232-6766 453-3453 676-2354 435-4543 etc
我要得到输出
Id FN LN Gender phone1 phone2 phone3
234 John Smith F 123-456 763-2899 243-8299
394 Jane Smith F 232-3553 345-2453 453-5656
556 Dash Doe M 121-3233 234-5466 234-2556
我不知道这是否可行。
2条答案
按热度按时间dwbf0jvd1#
使用
cross apply
和条件聚合:这是一把小提琴。
zpgglvta2#
你可以一步一步地解决它,从