|
Posted by yicong on 09/20/06 08:51
I want to select one field from a table,but it should on some conditions
which refer to 5 table ,such as A.FILED1=B.FIELD1 AND B.FIELD2=C.FIELD3 AND
....
Should I use case "select sum(a.amount) from a,b,c,... where
a.field1=b.field1 and b.field2=c.field2 and ..." or "select sum(a.amount)
from select b.field1 from select c.field2 from...."?And which case is more
efficiency?
thanks!
我想计算一个表中的某个字段的和,但此记录需在从多个表中查询此记录是否满足特定的条件。那么我是用select ..from ...where ..and ..and..and ..and ..还是用select ..from
select ..from select ..from ......?请问是哪一个效率高?
谢谢!
Navigation:
[Reply to this message]
|