null-test Questions
3
Solved
These two MySQL functions do the same thing:
IFNULL(column_name, 'test') = 'test'
or
NULLIF(column_name, 'test') IS NULL
Which one is more efficient?
1
© 2022 - 2024 — McMap. All rights reserved.