发布网友 发布时间:2022-04-23 22:21
共3个回答
热心网友 时间:2023-06-30 22:42
DateTime.Now.ToString("MM")会返回系统当前时间的两位数月份,不足两位前面添0;
查询数据则用SQL:select * from [dbo].[你的数据库名].[你的表名] where 月份的字段名=前面返回的月份值。
热心网友 时间:2023-06-30 22:42
DateTime now=DateTime.Now;
得到当前月
now.Month
热心网友 时间:2023-06-30 22:42
select * from table where convert(varchar(20),数据库日期字段,120) like '"+DateTime.Now.ToShortDateString().Substring(0,7)+"%'"