我正在尝试使用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#
之间的所有日期请帮我转移所有数据而不重复行并遗漏任何行
谢谢
答案 0 :(得分: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#")