请教!怎么写这样的SQL语句?(100分)(100分)

  • 主题发起人 主题发起人 zzheng
  • 开始时间 开始时间
Z

zzheng

Unregistered / Unconfirmed
GUEST, unregistred user!
表一
ID Name my
1 A 5
2 B 6
3 c 7
表二
ID str
1 坏
2 好

请教!如何写表一b.my减a.my得到表二坏和表一c.my减a.my得到表二好?怎样写成连贯正确SQL语句?
 
搞定了吧?
呵呵,小猪〉〉最近还好吧
 
select a.str from table2 a,
(selcet my from table1
where name='[red]B[/red]') b,
(selcet my from table1
where name='[red]A[/red]') c
where (b.my-c.my)=a.id

红色处根据你的需要修改条件

 
还成,你们头次做的那个东西怎么样了?
 
表一
ID Name my
1 A 5
2 B 6
3 c 7
表二
ID str
1 坏
2 好

请教!如何只输入BA或CA就得到坏或好,在SQL语句进行中加减?将下列语句怎么连成一句?
select * from 表一 where name in('b','a')或('c','a')和(小猪的SQL与句)
select str from table2 a,
(selcet my as my from table1
where name='B') b,
(selcet my as my from table1
where name='A') c
where (b.my-c.my)=a.id
能行吗?

 
多人接受答案了。
 
后退
顶部