how can i CONCAT 2 columns & () ?
SELECT CONCAT(A,B) AS C From myTAble
but I want to get A (B)
dog (red)
thank youare they both strings?
if so SELECT COALESCE(A,'') + '(' + COALESCE(B,'') + ')'|||yes string(100)
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment