标签: java sql postgresql
我想读取两个sql cols并将它们组合在一起,用空格分隔。结果应写入新专栏。
我如何获得空间?
insert into mytable (theRow) select one, two from mytable
答案 0 :(得分:1)
从mytable中选择concat(一个,'',两个)