Replace null with 0 in MySQL ... Yes, by using COALESCE . SELECT COALESCE(null_column, 0) AS null_column FROM whatever;. COALESCE goes through the list of values ...
確定! 回上一頁