0
0452
Unregistered / Unconfirmed
GUEST, unregistred user!
比如A表:
ti stuNo
1 111
2 222
3 333
B表:
id stuNo stuName stuAddress
1 111 aa aaa
2 111 bb aaa
3 111 cc bbb
4 222 dd ddd
5 333 ee eee
6 111 aa ccc
我想得到的纪录是A表中ti=1 stuNo=111 B表中 stuNo=111 stuAddress=aaa 的任意一条纪录
即: ti stuNo stuName stuAddress
1 111 aa aaa
或 ti stuNo stuName stuAddress
1 111 bb aaa
SQL语句该如何写?
ti stuNo
1 111
2 222
3 333
B表:
id stuNo stuName stuAddress
1 111 aa aaa
2 111 bb aaa
3 111 cc bbb
4 222 dd ddd
5 333 ee eee
6 111 aa ccc
我想得到的纪录是A表中ti=1 stuNo=111 B表中 stuNo=111 stuAddress=aaa 的任意一条纪录
即: ti stuNo stuName stuAddress
1 111 aa aaa
或 ti stuNo stuName stuAddress
1 111 bb aaa
SQL语句该如何写?