这个 查询语句错在哪?
先定义了一个DateTime类
DateTime pubdate=new DateTime();
然后从Calendar控件中取出日期值赋给它
this.pubdate=this.Calendar1.SelectedDate;
接下来编写了这个查询语句
"select * from 组件表 where year(上传时间)='"+pubdate.Year.ToString()+"' and month(上传时间)='"+pubdate.Month.ToString()+"' and day(上传时间)='"+pubdate.Day.ToString()+"'"
选定任何数据查询后只返回了各个字段的名字,没有返回任何数据
那么这个查询语句到底错在哪里呢?