我需要在查询之间使用从日期到日期的条件从数据库中检索数据,
我的问题是,
select * from Master where Date between '01-08-2013' and '30-08-2013'
但它从表中检索所有数据......
我只需要那个日期的数据..
我尝试了另一个像,
select * from PatientMaster where EntryDate >= '01-08-2013' and EntryDate<= '30-08-2013'
它怎么可能..
我的查询有什么问题...
对不起,我的英语很差...
先感谢您...