Forum Navigation
You need to log in to create posts and topics.

Query Help - How to concatenate multiple fields in a query

Here is a query that shows a great example of multiple concatenate statements used to combine information, add a space inbetween each attribute, that can then be used to an Item Description. You can take this example and use if for just about anything.

SELECT ($[OITM.U_Schedule] || ' ' || $[OITM.U_OD] || ' ' || $[OITM.U_Mattype] || ' ' || $[OITM.U_Size] || ' ' ||$[OITM.U_Grade]) as "Name"
FROM DUMMY
;

Enjoy!