kupe
Technical User
- Sep 23, 2002
- 376
These won't persuade mysql.
UPDATE table SET label = 'margarine' WHERE label = ' ';
UPDATE table SET label = 'margarine' WHERE label IS NULL;
UPDATE table SET label = 'margarine' WHERE LENGTH(label) <=1;
Be grateful to know what will.
UPDATE table SET label = 'margarine' WHERE label = ' ';
UPDATE table SET label = 'margarine' WHERE label IS NULL;
UPDATE table SET label = 'margarine' WHERE LENGTH(label) <=1;
Be grateful to know what will.