5

我有两个日期:

10-11-2010 and 17-11-2010

现在我想用这两者之间的日期选择所有行。

我怎样才能做到这一点?

4

3 回答 3

10

between在 where 子句中使用非常简单,阅读更多

select * from mytable where date between '10-11-2010' and '17-11-2010'
于 2010-11-17T09:51:57.273 回答
2

听起来像一个 SQL 问题。试试中间条件。

于 2010-11-17T09:52:52.933 回答
1

$datefrom=date('Ymd'); $dateto=date('Ymd');

$sql = 'select * from mytable where depositdate between $datefrom and $dateto';

于 2018-01-25T12:36:57.967 回答