0

我正在尝试使用 c# 将数据从我的访问表传输到 mysql 表中,但由于我有大数据,我无法使用此查询一次传输所有数据

select * from record

所以我用这个查询来传输数据

DataTable ds = tempaccesscon.exexutesql("select top 100 * from  record  where time between #7/1/2013# and #7/31/2013#")

但问题是这个查询没有返回 #7/1/2013# 和 #7/31/2013# 之间的所有日期

请帮助我转移所有数据,而不会重复行和丢失任何行

谢谢你

4

1 回答 1

0

也许您的日期字段是 dateTime 类型

尝试这个

DataTable ds = tempaccesscon.exexutesql("select top 100 * from  record  where time between          #7/1/2013 00:00:00# and #7/31/2013 23:59:59#")
于 2013-08-10T06:58:48.123 回答