
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
Update all the zero values with a custom value in MySQL with a function similar to ISNULL()
For this, you can use custom IF() and set a value whenever 0 appears.
Let us first create a table −
mysql> create table DemoTable749 (Value int); Query OK, 0 rows affected (1.02 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable749 values(10); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable749 values(0); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable749 values(769); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable749 values(0); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable749 values(78); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable749 values(0); Query OK, 1 row affected (0.17 sec)
Display all records from the table using select statement −
mysql> select *from DemoTable749 ;
This will produce the following output -
+-------+ | Value | +-------+ | 10 | | 0 | | 769 | | 0 | | 78 | | 0 | +-------+ 6 rows in set (0.00 sec)
Following is the query to check for zero value −
mysql> select *,if(Value=0,100000,Value) from DemoTable749;
This will produce the following output -
+-------+--------------------------+ | Value | if(Value=0,100000,Value) | +-------+--------------------------+ | 10 | 10 | | 0 | 100000 | | 769 | 769 | | 0 | 100000 | | 78 | 78 | | 0 | 100000 | +-------+--------------------------+ 6 rows in set (0.00 sec)
- Related Articles
- Update all the fields in a table with null or non-null values with MySQL
- How to update a column with the same values (not all) using UPDATE, SET and LIMIT in MySQL?
- How to write a valid MySQL query and update with a custom variable?
- MySQL query to update all the values in a column with numeric incremental values like John1, John2, John3, etc.
- How to perform update in MySQL to disallow incrementing all the values above a specific value?
- Update all the values of a field with a specific string in MongoDB?
- Update multiple values in a table with MySQL IF Statement
- Add an autoincrement column with a custom start value in MySQL
- Update with multiple values in MySQL WHERE clause
- How to update MySQL column with random value?
- MySQL ORDER BY with custom field value
- How to update a MySQL column by subtracting a value with some conditions?
- MySQL queries to update date records with NULL values
- MySQL UPDATE column names and set None values with N/A?
- Implement a custom function similar to Array.prototype.includes() method using JavaScript

Advertisements