(second post, i didnt see it make it back)

This query works fine but I need to select about 10-15 more columns from the
Master (m) table. The only way I can seem to get that to work is if I also
group on all the columns but this totally kills the query speed and Im not
sure I am even getting correct results in that case.

Basically this selects 2 columns from the Master table and SUM's the
QtyShipped from the Detail table for each record in the master.  How can I
select more columns from Master without grouping?


SELECT m.po,m.statcomm,sum(d.qtyshipped) AS TotalQty
FROM pos m,posd d
WHERE m.shipdate  BETWEEN '02/25/2001' AND '02/25/2001'
AND
m.po = d.po
GROUP BY m.po,m.statcomm
ORDER BY m.po


Thanks,Adrian


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to