i have a table which has a column "cup" inside table "coffee"
update coffee set cup=cup||'test_add'
this doesnt raise an error but it doesnt add the string 'test_add' to the column! also, the value in column cup is currently nothing. it took me forever that you can't use this syntax adding text when the column has no value to it. this doesn't make sense to me cause the column is defined as a TEXT column, and it has no value, so it seems equivalent to me to
a=""
a+="test_add"
and this syntax works. on the other hand if it is
a=None
a+="test_add"
it throws an error. so it seems to me the code i put at the very top should either add the text or throw an error!!!