If your POX_NAME is of varchar type and UNIT & QTY of int types then convert the 2 columns to varchar first....
SELECT POX_NAME + SPACE(1) + CAST(POX_UNIT AS VARCHAR) + SPACE(1) + CAST(POX_QTY AS VARCHAR)
**ASCII stupid question, get a stupid ANSI !!!**