How to make a field NULL using MySQL GUI Tools? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T23:53:51Z http://stackoverflow.com/feeds/question/289362 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/289362/how-to-make-a-field-null-using-mysql-gui-tools 0 How to make a field NULL using MySQL GUI Tools? nickf 2008-11-14T06:25:04Z 2008-11-14T07:10:44Z <p>I'm using the MySQL Query Browser (part of the <a href="http://dev.mysql.com/downloads/gui-tools/" rel="nofollow">MySQL GUI Tools</a>) 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 <code>''</code>. Typing "NULL" makes it try to update to <code>'NULL'</code> (a string).</p> <p>I know I could just write a query to do it, but that defeats the entire purpose of the tool, no?</p> http://stackoverflow.com/questions/289362/how-to-make-a-field-null-using-mysql-gui-tools/289367#289367 -1 Answer by Phil Jenkins for How to make a field NULL using MySQL GUI Tools? Phil Jenkins 2008-11-14T06:28:37Z 2008-11-14T06:28:37Z <p>I'd try Ctrl-0 (zero), because that works in some tools.</p> http://stackoverflow.com/questions/289362/how-to-make-a-field-null-using-mysql-gui-tools/289377#289377 2 Answer by Jonas Kongslund for How to make a field NULL using MySQL GUI Tools? Jonas Kongslund 2008-11-14T06:37:01Z 2008-11-14T06:37:01Z <p>Right click on the cell and select 'Clear field content'</p> http://stackoverflow.com/questions/289362/how-to-make-a-field-null-using-mysql-gui-tools/289414#289414 0 Answer by Klathzazt for How to make a field NULL using MySQL GUI Tools? Klathzazt 2008-11-14T07:10:44Z 2008-11-14T07:10:44Z <p>Removing the contents:</p> <p>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.</p>