mysql, ifnull vs coalesce, which is faster?

My view is that you should benchmark for your usage.

I doubt there will be much difference.
Bear in mind that while a single benchmark might suggest that one is slightly better, variation in the data over time might change that result.

Also note that COALESCE has been part of standard SQL since 1992 – I’m not sure IFNULL is in any standard yet.

There’s a nice article by Adam Machanic about benchmarking an equivalent scenario – Performance: ISNULL vs. COALESCE (in SQL Server). Note some of the provisos on getting a valid test.

Leave a Comment