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.
SQL では、NULL 値を取得しないようにするために、「合体」関数を使用して次のように置き換えることができます。
SELECT COALESCE(some_column, 0) FROM some_table;
しかし、Sequel を使用して同じことを行う方法が見つかりません。