For example, if I have a table structure like this:
Table 1
ID Name Value
001 Rajesh 90,100,210,400
002 Suresh 100,400,300,66
003 Mahesh 200,500
004 Virat 400,578,57
How can I delete 400 from Suresh?
DELETE Value ="400" FROM table1
WHERE Name = 'Suresh'
This doesn't work.