ST_Transform gets one of these set of params and none of them gets character as the first param type whereas you are passing character as first param and int as second param!
geometry ST_Transform(geometry g1, integer srid);
geometry ST_Transform(geometry geom, text to_proj);
geometry ST_Transform(geometry geom, text from_proj, text to_proj);
geometry ST_Transform(geometry geom, text from_proj, integer to_srid);
I think this should work :
update ua
set "east/north" = ST_GeomFromText('POINT(' || ua."Easting" ||' '|| ua."Northing" || ')',27700)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…