HOW can append two different datatype coulmn in singal column?
Hello,
You are looking for the cast and convert commands. For example:
SELECT TextID AS ID FROM W1 UNION SELECT CAST(NumericID As VARCHAR(20)) AS ID FROM W2 Or, if you like CONVERT(): CONVERT(VARCHAR(20), NumericID)