@BrMe:- I think you are running a different query then the one which I posted. What is the query which you are trying and which is taking time? Also the above query is quick enough, I dont think that you can achieve this any more faster than this.
0
You can use something like below
SELECT NUMBER_COL1,
NUMBER_COL2,
CAST(NUMBER_COL1 AS VARCHAR(10)) + CAST(NUMBER_COL1 AS VARCHAR(10)) JOINED_NUM
FROM TABLE;
concat.SELECT CONCAT(12345,2)