I would like to get a n explanation of the behaviors of the following queries
SELECT '4' + 2
result : 6
Select '4' + '2'
result : 42
So how exactly sql handles the first query as an arithmetic operation and the second query as a string concatenation
I would like to get a n explanation of the behaviors of the following queries
SELECT '4' + 2
result : 6
Select '4' + '2'
result : 42
So how exactly sql handles the first query as an arithmetic operation and the second query as a string concatenation