SELECT * FROM (
SELECT [Tracking Number], "Address Correction" as [Service Name], [Address Correction] as Charge FROM Invoice UNION ALL
SELECT [Tracking Number], "Extended Area" as [Service Name], [Extended Area] as Charge FROM Invoice UNION ALL
SELECT [Tracking Number], "Extra Handling" as [Service Name], [Extra Handling] as Charge FROM Invoice) AS T1
WHERE Charge <> 0
ORDER BY [Tracking Number],[Service Name]
|