vote up 0 vote down star

I'm using the MySQL Query Browser (part of the MySQL GUI Tools) and need to change a field to NULL, but I can't figure out how to do it - if I delete the value it tries to update it to ''. Typing "NULL" makes it try to update to 'NULL' (a string).

I know I could just write a query to do it, but that defeats the entire purpose of the tool, no?

flag

68% accept rate

3 Answers

vote up 2 vote down check

Right click on the cell and select 'Clear field content'

link|flag
that's it! cheers. – nickf Nov 14 '08 at 7:43
vote up 0 vote down

Removing the contents:

This works for some tools (sorry to hear it doesn't for yours). This may not appear as null but will when you perform a query.

link|flag
in MySQL at least, an empty string is different to NULL. Selecting and deleting the column contents sets it to be an empty string (which doesn't work at all if your column is numerical) – nickf Nov 14 '08 at 7:44
vote up -1 vote down

I'd try Ctrl-0 (zero), because that works in some tools.

link|flag
thanks for the tip, but that didn't work. – nickf Nov 14 '08 at 6:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.