In the "search and replace" tool in the field "what to replace" I enter "NULL", but the system does not find such strings. How to replace such strings with the value I need?
1 answer
phpMyAdmin looks for the string 'NULL' which is not equal to the value of 'NULL', so you will have to use a SQL query
update table_name set column_name = 'value' where column_name is null; - And through the "search and replace" can not in any way? Just in pphpmyadmin, for some reason, the layout went, I can’t use the console - Novice
- @ Newbie, maybe I didn’t look good, but I didn’t find how to do it differently. - Maxim Timakov
- @ Newbie can be, but in the drop-down list, choose not =, but 'IS NULL'. - cheops
|