请帮我看看这个查询语言怎么回事?(50分)

  • 主题发起人 主题发起人 chonsee
  • 开始时间 开始时间
C

chonsee

Unregistered / Unconfirmed
GUEST, unregistred user!
在delphi中有一个自带的country.db表,下的语句是我想要找出一个国家的
信息他的人口大于他所在的洲的平均人口
query1.SQL.Add('select * from country.db coun1 where population>');
query1.SQL.Add('(select avg(population) from country.db coun2 where coun2.continent=coun1.continent)');
可是好像执行不了,为什么?是不是不支持这种操作?那该如何实现?
 
我自己已经搞定了
我把分数给谁呢?
 
可不可以用变量保存
declare @xx integer
select @xx=ISNULL(avg(population),0) from country.db coun2 where coun2.continent=coun1.continent
select * from country.db coun1 where population>@xx

我在sqlserver连的时候用过,你试试看
 
不支持,应分两回事次执行SQL
 
一条SQL语句?
 
多人接受答案了。
 

Similar threads

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