0
使用蜂巢,我試圖從一個表串聯列和使用查詢CONCAT_WS不是INSERT語句在工作蜂巢
insert into table temp_error
select * from (Select 'temp_test','abcd','abcd','abcd',
from_unixtime(unix_timestamp()),concat_ws('|',sno,name,age)
from temp_test_string)c;
我得到所需要的輸出,直到我用Select *
另一個表中插入。但只要我嘗試將它插入到表中,它不會給出串聯的輸出,而只給出sno的值而不是整個串聯的輸出。
您能否提供「desc temp_error;」,「desc temp_test_string;」 –
也可以是你在給「select *」和「insert into table」時得到的單行 –
也許''|''是'temp_error'表中的分隔符? –