How to make a field NULL using MySQL GUI Tools? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T23:53:51Zhttp://stackoverflow.com/feeds/question/289362http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/289362/how-to-make-a-field-null-using-mysql-gui-tools0How to make a field NULL using MySQL GUI Tools?nickf2008-11-14T06:25:04Z2008-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-1Answer by Phil Jenkins for How to make a field NULL using MySQL GUI Tools?Phil Jenkins2008-11-14T06:28:37Z2008-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#2893772Answer by Jonas Kongslund for How to make a field NULL using MySQL GUI Tools?Jonas Kongslund2008-11-14T06:37:01Z2008-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#2894140Answer by Klathzazt for How to make a field NULL using MySQL GUI Tools?Klathzazt2008-11-14T07:10:44Z2008-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>