Hi
I'm creating orders reports and I wondered if there's SQL syntax that can do what I need. In the past I've exported the tables and used Excel to shift and match, but if there's a way to use SQL to match the data I need it would be preferable. In orders_total the data has multiple rows for each order number, and I need a report that has all of the info on one row.
Orders_total has the info like this:
orders_id##########_title####################text
444####################_Sub-Total:____$37.98
444####################_Flat Rate:##########$5.00
444####################_Total:##########___$42.98
I use the data like this:
orders_id##########_Sub-Total##########Flat Rate##########___Total
444####################_$37.98##########__$5.00####################_$42.98
I've tried a few orders handling mods and none of them provide all the info I need, so I've been building them by hand for a while now. I'd like to SQL this part of the report generation and free up some time.
Thanks in advance!
--Pat



