I have to update columns in a table with data. And in one of column's data has & in it like( 'Salt & Pepper').
So when I run the update statement, it is prompting me to enter the value.
But in my case, it should not ask, it should insert the data 'Salt & Pepper' into the table's column.
UPDATE dishes SET ingredient = 'Salt & Pepper' WHERE dish_id = 5000;
How can I do that?