Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Newbie at select statements
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Newbie at select statements
Miscellaneous
Thread ID:
00436920
Message ID:
00436920
Views:
68
I can't figure out why these two select statements give me different results. The only difference is the where clause.

select sum(scordln.orl_qty-scordln.orl_qtyinvoiced) as nqty ;
from scordln left outer join scorder ;
on scordln.orl_order = scorder.ord_order ;
where between(scorder.ord_acct,1,201) ;
into cursor cqty

select sum(scordln.orl_qty-scordln.orl_qtyinvoiced) as nqty ;
from scordln left outer join scorder ;
on scordln.orl_order = scorder.ord_order ;
where scorder.ord_acct < 201 ;
into cursor cqty

Thanks

Pat Murphy
Next
Reply
Map
View

Click here to load this message in the networking platform