--赋值当前时间
declare @endtime nvarchar(100)
declare @begintime nvarchar(100)
declare @year nvarchar(4)
declare @ln nvarchar(1000)
declare @str nvarchar(1000)select  @endtime=convert(varchar(20),getdate(),20)
       ,@begintime=convert(varchar(20),dateadd(dd,-120,getdate()),20)
       ,@year=convert(varchar(4),year(getdate()),4)
--统计LN表中特定时间的记录总数
set @str='SELECT count(*)
  FROM openrowset(''SQLOLEDB'',''172.19.18.133'';''sa'';''sa'',Meso_'+@year+'.dbo.LN_'+@year+' ) 
where DATEPART(minute,cast(观测时间 as datetime))=0 and '+@begintime+'<观测时间 and 观测时间 <'+@endtime+''
exec(@str)
print @str
----------------------------
消息 102,级别 15,状态 1,第 3 行
'09' 附近有语法错误。
SELECT count(*)
  FROM openrowset('SQLOLEDB','172.19.18.133';'sa';'sa',Meso_2009.dbo.LN_2009 ) 
where DATEPART(minute,cast(观测时间 as datetime))=0 and 2008-09-25 09:34:04<观测时间 and 观测时间 <2009-01-23 09:34:04
-------------------------
“观测时间”的格式是smalldatetime 
eg:2009-1-23 9:30:00
如果我把and '+@begintime+'<观测时间 and 观测时间 <'+@endtime+'删除后,则可以正常运行,我想问题应该出现在这个,可我琢磨了好久都没弄明白是怎么回事。

解决方案 »

  1.   

    @endtime @begintime  类型 更换以下 看看
      

  2.   


    declare @endtime nvarchar(100) 
    declare @begintime nvarchar(100) 
    declare @year nvarchar(4) 
    declare @ln nvarchar(1000) 
    declare @str nvarchar(1000) select @year=convert(varchar(4),year(getdate()),4) 
    set @str='SELECT count(*) 
      FROM openrowset(''SQLOLEDB'',''172.19.18.133'';''sa'';''sa'',Meso_'+@year+'.dbo.LN_'+@year+' ) 
    where DATEPART(minute,cast(观测时间 as datetime))=0 and getdate() <cast(观测时间 as datatime) and cast(观测时间 as datetime) < dateadd(dd,-120,getdate())' 
    exec(@str) 
    print @str
      

  3.   

    --TRY
    declare @endtime nvarchar(100) 
    declare @begintime nvarchar(100) 
    declare @year nvarchar(4) 
    declare @ln nvarchar(1000) 
    declare @str nvarchar(1000) select  @endtime=convert(varchar(20),getdate(),20) 
          ,@begintime=convert(varchar(20),dateadd(dd,-120,getdate()),20) 
          ,@year=convert(varchar(4),year(getdate()),4) 
    --统计LN表中特定时间的记录总数 
    set @str='SELECT count(*) 
      FROM openrowset(''SQLOLEDB'',''172.19.18.133'';''sa'';''sa'',Meso_'+@year+'.dbo.LN_'+@year+' ) 
    where DATEPART(minute,cast(观测时间 as datetime))=0 and '''+@begintime+''' <观测时间 and 观测时间 <'''+@endtime+'''' 
    exec(@str) 
    print @str 
      

  4.   

    set @str='SELECT count(*) 
    FROM openrowset(''SQLOLEDB'',''172.19.18.133'';''sa'';''sa'',Meso_'+@year+'.dbo.LN_'+@year+' ) 
    where DATEPART(minute,cast(观测时间 as datetime))=0 and '''+@begintime+''' < 观测时间 and 观测时间 < '''+@endtime+'''' 
    exec(@str) 
    print @str --动态sql语句基本语法
     
    1 :普通SQL语句可以用Exec执行 eg: Select * from tableName 
    Exec('select * from tableName') 
    Exec sp_executesql N'select * from tableName' -- 请注意字符串前一定要加N 2:字段名,表名,数据库名之类作为变量时,必须用动态SQL eg: 
    declare @fname varchar(20) 
    set @fname = 'FiledName' 
    Select @fname from tableName -- 错误,不会提示错误,但结果为固定值FiledName,并非所要。 
    Exec('select ' + @fname + ' from tableName') -- 请注意 加号前后的 单引号的边上加空格 当然将字符串改成变量的形式也可 
    declare @fname varchar(20) 
    set @fname = 'FiledName' --设置字段名 declare @s varchar(1000) 
    set @s = 'select ' + @fname + ' from tableName' 
    Exec(@s) -- 成功 
    exec sp_executesql @s -- 此句会报错 declare @s Nvarchar(1000) -- 注意此处改为nvarchar(1000) 
    set @s = 'select ' + @fname + ' from tableName' 
    Exec(@s) -- 成功 
    exec sp_executesql @s -- 此句正确 3. 输出参数 
    declare @num int, 
    @sqls nvarchar(4000) 
    set @sqls='select count(*) from tableName' 
    exec(@sqls) 
    --如何将exec执行结果放入变量中? declare @num int, 
    @sqls nvarchar(4000) 
    set @sqls='select @a=count(*) from tableName ' 
    exec sp_executesql @sqls,N'@a int output',@num output 
    select @num