DataTable.Select()的问题,查询时间段
涛锅 2014-06-05 12:58:36 我在数据库里是这样
Select * from table
where Time > '2014-6-2 0:00:00'
and Time < '2014-6-2 1:00:00'
这样查询出来的大概有七千多行
在程序里面,我先select * from table放入一个DataTable中,
然后DataTable.Select( "Time > '2014-6-2 0:00:00' and Time < '2014-6-2 1:00:00' ")为何只有六百多行呢