JSP中的SQL2008 String Sql=""语句查询两张表相同的和有备注的 。。
table1serialipmacmeasure1111192.168.10.1011-11-11-11-11-11true2222192.168.10.2022-22-...
table1
serial ip mac measure
1111 192.168.10.10 11-11-11-11-11-11 true
2222 192.168.10.20 22-22-22-22-22-22 false
3333 192.168.10.30 33-33-33-33-33-33 false
table2
serial ip mac
1111 192.168.10.10 11-11-11-11-11-11
2222 192.168.10.20 55-55-55-55-55-55
目的:第一个String sql=" ?"
想得到table 1 中不包括table2的值,即 3333 192.168.10.30 false
第二个String Sql=" ?"
想得到table1中包括的mesure=“false”且tabel1.serial=table2.serial的各列值;
跟在后面加入table2对应的tabel2.serial=table1.serial其他各列值
即 2222 192.168.10.20 22-22-22-22-22-22 (measure不用显示)
2222 192.168.10.20 55-55-55-55-55-55 展开
serial ip mac measure
1111 192.168.10.10 11-11-11-11-11-11 true
2222 192.168.10.20 22-22-22-22-22-22 false
3333 192.168.10.30 33-33-33-33-33-33 false
table2
serial ip mac
1111 192.168.10.10 11-11-11-11-11-11
2222 192.168.10.20 55-55-55-55-55-55
目的:第一个String sql=" ?"
想得到table 1 中不包括table2的值,即 3333 192.168.10.30 false
第二个String Sql=" ?"
想得到table1中包括的mesure=“false”且tabel1.serial=table2.serial的各列值;
跟在后面加入table2对应的tabel2.serial=table1.serial其他各列值
即 2222 192.168.10.20 22-22-22-22-22-22 (measure不用显示)
2222 192.168.10.20 55-55-55-55-55-55 展开
1个回答
展开全部
第一个String sql=" select * from table1 a where not exists ( select 1 from table2 b where a.serial = b.serial ) "
第二个String sql=" select a.serial,a.ip,a.mac from table1 a,table2 b
where a.serial = b.serial and mesure='false' union all select a.serial,a.ip,b.mac from table1 a,table2 b
where a.serial = b.serial and mesure='false' "
第二个String sql=" select a.serial,a.ip,a.mac from table1 a,table2 b
where a.serial = b.serial and mesure='false' union all select a.serial,a.ip,b.mac from table1 a,table2 b
where a.serial = b.serial and mesure='false' "
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询