I have a simple sql:
select select t.x, '%' || t.x || '%' as c from t
The result is:
x c
a 0
b 0
That is, the catenatation results in 0, I don't know why
I have a simple sql:
select select t.x, '%' || t.x || '%' as c from t
The result is:
x c
a 0
b 0
That is, the catenatation results in 0, I don't know why