สงสัยว่า 2 คำสั่งนี้ควรจะมีผลลัพธ์เท่ากันหรือเปล่าครับ
select count(distinct v.vn),
sum(o.qty*o.unitprice),sum(o.qty*o.cost)
from vn_stat v
left outer join opitemrece o on o.vn=v.vn
where v.vstdate between "2013-09-30" and "2013-09-30"
select count(distinct v.vn),
sum(v.income)from vn_stat v
where v.vstdate between "2013-09-30" and "2013-09-30"