SQL 数据库 关于数量为空取零的区别
SQL SERVER: isnull(temp6,0)
Oracle: nvl(temp6,0)
mysql / sqlite: ifnull(temp6,0)