我正在尝试将数据追加到特定行的开头。我已经编写了在特定行末尾追加的查询。
update yourtable
set yourcol = case when yourcol is null then 'a,b,c'
else concat(yourcol, ' a,b,c') end
我如何编写在特定的开头添加值而不是插入表的底部。
答案 0 :(得分:1)
我认为您希望在列数据上添加新数据。
update yourtable
set yourcol = case when yourcol is null then 'a,b,c'
else concat( 'a,b,c', ',', yourcol ) -- add a comma as well
end