S
signals
Unregistered / Unconfirmed
GUEST, unregistred user!
你在191200中的问题回答对于paradox是适用的,但对于sql server呢?
//-----------------------------------------------------------
以下是你的回答:
////////////////////////////////////////////////////////////////
下面的命令在 dbf 中通过:
select
cast( ('0' ||cast(fie1 as varchar(20))) as numeric) - cast( ('0' ||cast(fie2
as varchar(20))) as numeric)
from table1
原理:
|| 是字符串连接操作符
假如有非空值,比如123.45,转化为字符串 '0123.45' 再转回数字 还是 123.45
假如有空值, '0'||NULL 是字串 '0' 而不是 null ,再转回数字就是 0 了
//-----------------------------------------------------------
以下是你的回答:
////////////////////////////////////////////////////////////////
下面的命令在 dbf 中通过:
select
cast( ('0' ||cast(fie1 as varchar(20))) as numeric) - cast( ('0' ||cast(fie2
as varchar(20))) as numeric)
from table1
原理:
|| 是字符串连接操作符
假如有非空值,比如123.45,转化为字符串 '0123.45' 再转回数字 还是 123.45
假如有空值, '0'||NULL 是字串 '0' 而不是 null ,再转回数字就是 0 了