首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 计算机考试 > 等级考试 > 复习指导 >

三级数据库——CHAR/VARCHAR要定义长度默认长度为1

2008-12-02 
CHAR/VARCHAR默认长度为1

    语句
  select 'K'+substring(cast([收费起点桩号]as char),0,charindex('.', cast([收费起点桩号]as char)))+'+'+substring(cast([收费起点桩号]as char),charindex('.', cast([收费起点桩号]as char))+1,4) as 收费起点桩号
  from tb_fs_公路收费站分布情况表
  返回的结果是正确的,假如[收费起点桩号]是200.020 ,则结果为K200+020,如果[收费起点桩号]是310.520,则结果为
  K310+520。
  但是我把合成字符串的提取为函数再调用(select CovertToStakeNO([收费起点桩号]) from tb_fs_公路收费站分布情况表 )后,结果却非预期值:如果[收费起点桩号]是200.020,则返回2,如果[收费起点桩号]是310.520,则返回3。函数体如下:
  -- Description: 将real型的桩号转换为桩号形式
  alter function CovertToStakeNO
  (
  @StakeNOColumnName real
  )
  RETURNS nchar
  AS
  BEGIN
  declare @tostring nchar (10);
  declare @indexofpoint int;
  set @tostring = (select cast(@StakeNOColumnName as char) );
  set @indexofpoint=charindex('.',@tostring );
  return @tostring --('K'+substring(@tostring,0,@indexofpoint)+'+'+substring(@tostring ,@indexofpoint+1,4))
  END
  GO
  最终改为:
  alter function CovertToStakeNO
  (
  @StakeNOColumnName decimal(8,3)
  )
  RETURNS nchar(20)
  AS
  BEGIN
  declare @tostring nchar (20);
  declare @indexofpoint int;
  set @tostring = (select cast(@StakeNOColumnName as char) );
  set @indexofpoint=charindex('.',@tostring );
  return @tostring --('K'+substring(@tostring,0,@indexofpoint)+'+'+substring(@tostring ,@indexofpoint+1,4))
  END
  GO
  出错原因:
  1)使用CHAR/VARCHAR要定义长度,不然默认长度为1,也就是为什么得到1个字符的原因
  2)[收费起点桩号]数据类型错了,不是real ,而是decimal(8,3)

 

3COME考试频道为您精心整理,希望对您有所帮助,更多信息在http://www.reader8.com/exam/

热点排行