I tired to update the value for the languages EN and DE into the field introduction of table landingpage.
UPDATE landingpage
SET introduction = introduction::jsonb || '{"EN":"#1","DE":"#2"}'
WHERE id = 5;
But I got alway the error:
Your query contains UPDATEs and/or DELETEs without a WHERE clause.
I tried to convert the octothorpe(#), for example:
1.UPDATE landingpage SET introduction = introduction::jsonb || '{"EN":"''#1","DE":"''#2"}' WHERE id = 5;
2.UPDATE landingpage SET introduction = introduction::jsonb || '{"EN":"'#1","DE":"'#2"}' WHERE id = 5;
3.UPDATE landingpage SET introduction = introduction::jsonb || '{"EN":"##1","DE":"##2"}' WHERE id = 5;
But they don't work.
I think the problem with the octothorpe(#). But how could I convert the octothorpe sign for updating the value?