where datediff(day,毕业时间+'-1','2000-8-1')>0

解决方案 »

  1.   

    where convert(char(7),毕业时间,120)<='2000-08'
      

  2.   

    where [year] + right('0'+[month],2)<='200008'
      

  3.   

    where convert(char(7),毕业时间,120)<='2000-08'
    运行出错.提示convert()函数没定义
    我用的是access数据库
      

  4.   

    where year(毕业时间)*12+month(毕业时间) < 2000*12+8
      

  5.   

    '到SQL版问ACCESS数据库问题也得说清楚嘛where format(毕业时间,"yyyy-mm")<='2000-08'