here i am getting this error for this query
"select holiday_date from blockchainrmgdb.holiday_calender_master where holiday_date between "+ TodaysDate.ToString + “and” + convertdatetime.ToString
Try this it might work.
select holiday_date from blockchainrmgdb.holiday_calender_master where
holiday_date between '"+value1+"' and '"+value2"'
or
select holiday_date from blockchainrmgdb.holiday_calender_master where
and holiday_date >= '"+value1+"' and holiday_date <= '"+value2+"'
Regards,
Mahesh
2 Likes
yea… Its working…
Thank You
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.