sql server 2008 -处理dbml中的数据类型错误



我得到一个未知的返回类型错误,当我添加一个存储过程到我的dbml。下面是我的Sp,我无法找出错误。我检查了太多与之相关的问题,解决方案是不使用临时表。是的,我不使用临时表,但使用表变量的一些博客建议,但后来我也得到错误。请帮助。

ALTER PROCEDURE dbo.Reports
    (
      @startDate datetime,
      @endDate datetime,
      @pageType int,
      @assignedClincian int
    )
AS
BEGIN
 Declare @SqlQuery varchar(max)    
 Declare @strCondition varchar(max)
 Declare @tempTable Table
 (
     First_Name varchar(150),
     Last_Name varchar(150),
     ID int,
     PageType_Id int,
     Rf_Date datetime,
     DOB datetime,
     InsuranceCompany varchar(250),
     AssignedClincian varchar(250)
 )

 set @SqlQuery =  'select * from tblusers'

        If @startDate IS NOT NULL AND @endDate is Not null
        Begin    
           set @strCondition = ' FO.Rf_Date  >= convert(datetime, ''' + Convert(varchar,@startDate,112) + ''') and  FO.Rf_Date<= convert(datetime, ''' + Convert(varchar,@endDate,112) + ''')'
        End  
        Else if @startDate IS NOT NULL 
        Begin
           set @strCondition = ' FO.Rf_Date  >=' + @startDate 
        End
        Else if @EndDate IS NOT NULL 
       Begin
          set @strCondition = ' FO.Rf_Date  <=' + @EndDate 
        End

      if @pageType > 0
      Begin
      set @strCondition = (case when @strCondition='' then ''  else @strCondition +  ' and ' end)  + ' FO.PageType_Id='+ Convert(varchar,@pageType)
      End
    if @assignedClincian > 0
      Begin
          set @strCondition = (case when @strCondition='' then ''  else @strCondition +  ' and ' end) +'  p1.AST_Clinician_Assginments_To=' + Convert(varchar,@assignedClincian)
      End

     set @SqlQuery=(case when @strCondition='' then @SqlQuery  else  @SqlQuery + ' where ' + @strCondition end) + ' order by Fo.ID'
         insert into @tempTable  EXEC (@SqlQuery)    
          select * from @tempTable 
END
RETURN

所以,在巨大的混乱之后,我得出了一个解决方案,在第二个elseif条件下,我没有像第一个if条件那样正确地转换日期:

 Else if @startDate IS NOT NULL 
        Begin
           set @strCondition = ' FO.Rf_Date  >=' + @startDate 
        End

相关内容

  • 没有找到相关文章

最新更新