I have a table with name "vehicles" and column "status" with BLOB type,
inside in column I have this values:
{"status": "available", "condition": "new"}
Can some help understand how I can replace values into that column to this one
{"status": "available", "condition": "new", "color": 'red'}
sometimes I need to insert new values and sometimes remove some values, can somebody please help me write the query to that?
Thank you