如何给空值赋值?

sy4722 2008-04-08 09:30:04
select sum(F_User_point) as gjpoint from TB_CDR where Calling_Station_Id='0411990005'
and Called_Station_Id like '00%'
and convert (varchar(10),convert(dateTime, h323_connect_Time),112) like '200803%'
如何在上面的语句里的gjpoint如果为空的话,就给gjpoint赋一个0的值?
...全文
219 10 打赏 收藏 转发到动态 举报
写回复
用AI写文章
10 条回复
切换为时间正序
请发表友善的回复…
发表回复
  • 打赏
  • 举报
回复
[Quote=引用 5 楼 sdhylj 的回复:]
SQL codeselect isnull(sum(F_User_point),0) as gjpoint
from TB_CDR where Calling_Station_Id='0411990005'
and Called_Station_Id like '00%'
and convert (varchar(10),convert(dateTime, h323_connect_Time),112) like '200803%'

--或者

select case when sum(F_User_point) is null then 0 else sum(F_User_point) end as gjpoint
from TB_CDR where Calling_Station_Id='0411990005'
and Called_Stati…
[/Quote]
哈哈!高手真多啊!这么快就解决了.
LZ赶紧结帖,给高手们散分。
青锋-SS 2008-04-08
  • 打赏
  • 举报
回复
[Quote=引用 6 楼 sy4722 的回复:]
解决了 谢谢各位了
[/Quote]咋不结账?
ojuju10 2008-04-08
  • 打赏
  • 举报
回复

用函数isnull(col,0)
conan304 2008-04-08
  • 打赏
  • 举报
回复
解决就结贴。
sy4722 2008-04-08
  • 打赏
  • 举报
回复
解决了 谢谢各位了 
青锋-SS 2008-04-08
  • 打赏
  • 举报
回复
select isnull(sum(F_User_point),0) as gjpoint 
from TB_CDR where Calling_Station_Id='0411990005'
and Called_Station_Id like '00%'
and convert (varchar(10),convert(dateTime, h323_connect_Time),112) like '200803%'

--或者

select case when sum(F_User_point) is null then 0 else sum(F_User_point) end as gjpoint
from TB_CDR where Calling_Station_Id='0411990005'
and Called_Station_Id like '00%'
and convert (varchar(10),convert(dateTime, h323_connect_Time),112) like '200803%'

conan304 2008-04-08
  • 打赏
  • 举报
回复
select 'gjpoint'=isnull(sum(F_User_point),0)
from TB_CDR
where Calling_Station_Id='0411990005' and Called_Station_Id like '00%'
and convert (varchar(10),convert(dateTime, h323_connect_Time),112) like '200803%'


ISNULL
使用指定的替换值替换 NULL。

语法
ISNULL ( check_expression , replacement_value )

参数
check_expression

将被检查是否为 NULL的表达式。check_expression 可以是任何类型的。

replacement_value

在 check_expression 为 NULL时将返回的表达式。replacement_value 必须与 check_expresssion 具有相同的类型。

返回类型
返回与 check_expression 相同的类型。

注释
如果 check_expression 不为 NULL,那么返回该表达式的值;否则返回 replacement_value。

示例
A. 将 ISNULL 与 AVG 一起使用
下面的示例查找所有书的平均价格,用值 $10.00 替换 titles 表的 price 列中的所有 NULL 条目。

USE pubs
GO
SELECT AVG(ISNULL(price, $10.00))
FROM titles
GO

下面是结果集:

--------------------------
14.24

(1 row(s) affected)

B. 使用 ISNULL
下面的示例为 titles 表中的所有书选择书名、类型及价格。如果一个书名的价格是 NULL,那么在结果集中显示的价格为 0.00。

USE pubs
GO
SELECT SUBSTRING(title, 1, 15) AS Title, type AS Type,
ISNULL(price, 0.00) AS Price
FROM titles
GO

下面是结果集:

Title Type Price
--------------- ------------ --------------------------
The Busy Execut business 19.99
Cooking with Co business 11.95
You Can Combat business 2.99
Straight Talk A business 19.99
Silicon Valley mod_cook 19.99
The Gourmet Mic mod_cook 2.99
The Psychology UNDECIDED 0.00
But Is It User popular_comp 22.95
Secrets of Sili popular_comp 20.00
Net Etiquette popular_comp 0.00
Computer Phobic psychology 21.59
Is Anger the En psychology 10.95
Life Without Fe psychology 7.00
Prolonged Data psychology 19.99
Emotional Secur psychology 7.99
Onions, Leeks, trad_cook 20.95
Fifty Years in trad_cook 11.95
Sushi, Anyone? trad_cook 14.99

(18 row(s) affected)

sweetweiwei 2008-04-08
  • 打赏
  • 举报
回复
ISNULL(sum(F_User_point),0) as gjpoint
xiaomeixiang 2008-04-08
  • 打赏
  • 举报
回复
select isnull(sum(F_User_point),0) as gjpoint from TB_CDR where Calling_Station_Id='0411990005'
and Called_Station_Id like '00%'
and convert (varchar(10),convert(dateTime, h323_connect_Time),112) like '200803%'
fcuandy 2008-04-08
  • 打赏
  • 举报
回复
select ISNULL(sum(F_User_point),0) as gjpoint FROM ...

22,206

社区成员

发帖
与我相关
我的任务
社区描述
MS-SQL Server 疑难问题
社区管理员
  • 疑难问题社区
  • 尘觉
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧