求SQL语句,SQL高手请进!(100分)(100分)

  • 主题发起人 主题发起人 aazheng
  • 开始时间 开始时间
A

aazheng

Unregistered / Unconfirmed
GUEST, unregistred user!
表一
ID Name my
1 A 5
2 B 6
表二
ID str
5 坏
6 好
表一:my=表二:ID
select * from 表一 where name in('a','b')得到表一
在select t2.str from 表二 as t2, 表一 as t1 where t1.my=t2.id and t1.my=5 and 6
请教!如何把上头两条SQL语句合成一条完整可用语句?即:输入‘AB’得到‘好坏’。
 
试试这样,看行不行:
select b.str from 表一 a,表二 b where a.my=b.id and a.name in ('a','b')
 
select str from 表一 where id in (select my from 表二 where name in ('a', 'b'))
 
caidaoli的应该可以了
 
对不起!我底薄怕人家不懂我写的,贴多了。诚谢大家!
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
1K
DelphiTeacher的专栏
D
后退
顶部