Ampersand SQL equivalent
When doing a pass through query SQL characters must be used. So, is there an equivalent to an ampersand? The following query works in within Access databases, but if you put the same query in an SQL database the ampersand character is not recognized.
SELECT OrderID & BundleName As OrderBundle
FROM dbo.OrderBundle
WHERE LineNumber <1000
GROUP BY OrderID, BundleName
ORDER BY OrderID, BundleName
Thanks for any help you can give me.
Coby.
|