简体   繁体   中英

How do you send NULL as a variable from PHP to SQL?

I want to send a value of "NULL" to a column in mySQL.

   $ParentEventID = "NULL";

   mysql_query("UPDATE events SET 
     ParentEventID = '$ParentEventID'");

The column keeps defaulting to "0". I have the column set to accept NULL and I can edit the cell with the NULL check box.

I need to not set the default to NULL because it may effect code in other places.

You are on the right track making "NULL" a string. If you need to set it NULL , then remove the qoutes around $ParentEventID .

mysql_query("UPDATE events SET ParentEventID = $ParentEventID");

However, before doing so make sure that the value of $ParentEventID === NULL .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM