select a.A, concat(a.B1, b.B2) as res
from test as as a
inner join test b
using A
where a.B1 < b.B2;
it doesn't work.and note: Expected USING or ON