本文介绍了如何在两个表之间编写连接查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好我有这样的数据



表1包含以下数据

 sno name 
1 a
2 b
3 c
4 d
5 e





表2有以下数据

 sno name 
1 b
2 a
3 c
4 d
6 f



现在如何编写一个查询,如果两个表中的名称相等,则必须得到table2的sno,否则得到table1的sno,并且连接查询应该返回所有行在表1和表2中

解决方案



Hi I have data like this

Table 1 has following data

sno name
1    a
2    b
3    c
4    d
5    e



Table 2 has following data

sno name
1   b
2   a
3   c
4   d
6   f


now how can i write a query that if name in both the tables are equal the it has to get sno of table2 else get sno of table1 and along with this the join query should return all the rows in both Table 1 and Table2

解决方案




这篇关于如何在两个表之间编写连接查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 19:00