对两个表进行排序(全连接)
我正在连接如下表:
select * from tableA a full join tableB b on a.id = b.id
但输出应该是:
- 没有空字段的行
- tableB 中带有空字段的行
- tableA 中带有空字段的行
类似:
a.id a.name b.id b.name
5 Peter 5 Jones
2 Steven 2 Pareker
6 Paul null null
4 Ivan null null
null null 1 Smith
null null 3 Parker
i'm joining tables like:
select * from tableA a full join tableB b on a.id = b.id
But the output should be:
- row without null fields
- row with null fields in tableB
- row with null fields in tableA
Like:
a.id a.name b.id b.name
5 Peter 5 Jones
2 Steven 2 Pareker
6 Paul null null
4 Ivan null null
null null 1 Smith
null null 3 Parker
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)