How To Update Mysql Database Table Field Where Is Null
- Forums
- PHP
- How To Update Mysql Database Table Field Where Is Null
i will teach you how to update mysql database table field where is null [1226], Last Updated: Sat May 18, 2024
wallpaperama
Sun Dec 21, 2008
8 Comments
5817 Visits
today i was breaking my head because i wanted to update a table which had a field where the default value was NULL
so in case you are in the same situation as i am today, this is how you would send a query to update a field where the value is NULL
$Query= "UPDATE table_name SET FieldName =1229883373 WHERE FieldName IS NULL"
hope this helps