i want to combine two column in drop-down list and need result from sql.i have already try with putting space between two value but not get proper alignment.
i need result like below.
TRAVEL | Travel Rate
PAINT | PAINT
MOTEL | Motel Rate
Labor1 | Mobilization Labor
i try with following query.
SELECT ItemID + SPACE(12 - len(ItemID)) + '|' + Description
FROM InventoryMaster
but get this result
TRAVEL |Travel Rate
PAINT |PAINT
MOTEL |Motel Rate
Thanks in advance.