我必须将 Cognos Impromptu 7 查询转换为 TSQL。部分查询包括以下内容:
nconvert((SUBSTRING((ascii(t1.TargetDate)) from 1 for 4)))
/*
where:
t1 is a table alias
TargetDate is a BIGINT contains the value 200501
*/
有人可以解释函数/表达式“ascii”的目的吗?
(仅供参考:SQL Server ASCII 函数产生 ascii(200501) ==> ascii(2) ==> 50 )
奖励:如果有人可以将我指向包含 ascii 定义的在线资源,那将不胜感激。我的搜索没有结果。