Which database system are you using?

Assuming SQL Server (I think that's the message it shows!), you could try this:
Code:
userReadID = Cast(userReadID as VarChar(Length(userReadID)))+ '12,'
..note that this will only work if the length of the field is within the limits of the VarChar data type.