在SQL SERVER中:
select * from table where mydate>dateadd(Day,-7,getdate()); //最近一周
select * from table where mydate bwteen '2011-1-1' and '2011-2-3' //查询两个日期之间
要实现上面的效果,好像MySql就会报错,本人初学mysql,诚望大侠指点!!!

解决方案 »

  1.   

    select * from table where mydate>
    DATE_ADD(curdate(),INTERVAL -7 day)
    select * from table where mydate bwteen '2011-1-1' and '2011-2-3' //查询两个日期之间
      

  2.   

    select * from table where mydate>dateadd(Day,-7,getdate()); //最近一周MYSQL中语法如下。
    select * from table where mydate>curdate()-interval 7 day;
      

  3.   

    select * from table where mydate bwteen '2011-1-1' and '2011-2-3' //查询两个日期之间
    上面这个语句在SQL SERVER中也是错误的,改为如下。
    select * from table where mydate bewteen '2011-1-1' and '2011-2-3'
      

  4.   

    MySQL官方文档 http://dev.mysql.com/doc/refman/5.1/zh/index.html
      

  5.   

    select * from table where mydate between '2011-1-1' and '2011-2-3'
      

  6.   

     (不要高估你的汉语表达能力或者我的汉语理解能力)
       建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。
       参考一下这个贴子的提问方式http://topic.csdn.net/u/20091130/20/8343ee6a-417c-4c2d-9415-fa46604a00cf.html
       
       1. 你的 create table xxx .. 语句
       2. 你的 insert into xxx ... 语句
       3. 结果是什么样,(并给以简单的算法描述)
       4. 你用的数据库名称和版本(经常有人在MS SQL server版问 MySQL)
       
       这样想帮你的人可以直接搭建和你相同的环境,并在给出方案前进行测试,避免文字描述理解上的误差。   
      

  7.   

    在SQL SERVER里这种写法没错,在mysql里绝对报错,不过我已经解决问题了!