cfcProgrammer
Programmer
Hi,
I have been playing around with this for a little while now... can someone help me try to figure out if this is even possible and if it is... the correct syntax...
I need to do a sum of a field that is defined as varchar... the field does hold a number so I am converting to numeric... however the field also can hold null.. this is causing me issues... is it even possible to do this??
The error I am getting is
[highlight][COLOR=white blue]
Server: Msg 8114, Level 16, State 5, Line 1
Error converting data type varchar to numeric.
[/color] [/highlight]
Thanks so much any help would be greatly appreciated.
cfcProgrammer
I have been playing around with this for a little while now... can someone help me try to figure out if this is even possible and if it is... the correct syntax...
I need to do a sum of a field that is defined as varchar... the field does hold a number so I am converting to numeric... however the field also can hold null.. this is causing me issues... is it even possible to do this??
The error I am getting is
[highlight][COLOR=white blue]
Server: Msg 8114, Level 16, State 5, Line 1
Error converting data type varchar to numeric.
[/color] [/highlight]
Code:
select sum(convert(numeric(5),(isnull(call,0))))
from edt e join mission m on e.mseq=m.mseq join flt f on e.mseq=f.mseq
where (e.tcc = 'VFG')
and convert(datetime,(convert(varchar(2),f.mn) + '/' + convert(varchar(2), f.dy) + '/' + convert(varchar(4),f.yr)))
between '01-apr-2001' and '31-mar-2008'
and left(m.mid,4)like 'BKS%'
and (vtype <> 'AFFS' and vtype <> 'SPRT')
Thanks so much any help would be greatly appreciated.
cfcProgrammer