Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テーブルから列の最大値を選択しています。ただし、問題が1つあります。テーブルに行がない場合、nullが返されます。
結果がnullの場合に特定の値を返す関数を使用したいと思います。たとえば、OracleにはNVL、列がnullの場合に特定の値を与える関数があります。MySQLに同等の機能はありますか?
NVL
合体を使用する:
select coalesce(column_name, 'NULL VALUE') from the_table