select * from Expenzsection where SectionName='bm' and date between '01/01/2015' and '04/01/2015' order by date
Date Format used in SQL is yyyy-mm-dd so change tbe between clause as
between '2015-01-01' and '2015-01-04'
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.