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)');
可是好像执行不了,为什么?是不是不支持这种操作?那该如何实现?
信息他的人口大于他所在的洲的平均人口
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)');
可是好像执行不了,为什么?是不是不支持这种操作?那该如何实现?