Computer Science, asked by Akanshasingh9573, 11 months ago

How do I update NULL values in a field in MySQL?

Answers

Answered by sharvaridhawad
0
To select rows in a MySQL table according to columns with NULL value, use IS NULL. Example: $sql = "SELECT * FROM `table_name` WHERE `column` IS NULL"; If you want to Not return the rows with a specific NULL field, use IS NOT NULL.
Similar questions