Ⅰ 求一条SQL语句,怎么样把从数据库中查出来为空的值赋为“0”,是所有为空的值,假如有很多字段每个字段都
1、select case C_NUMBER when NULL then '0' else C_NUMBER end from T_SCORE 如果这条语句执行不对,那么说明你的C_NUMBER字段的NULL不是真正的NULL,而是字符串“回NULL”,所以需要答这样的SQL: select case C_NUMBER when 'NULL' then '0' when 'null' then '0' else C_NUMBER end from T_SCORE 2、多个字段可以这样写:selectcase C_NUMBER when 'NULL' then '0' when 'null' then '0' else C_NUMBER end,