my table is like this
|id|start_time|end_time|start_date|end_date |
|01| 10:00Am | 10:PM |2014-08-19|2014-08-30|
i want to find my specific date between two columns start_date and end_date
select start_time,end_time
from table
where 2014-08-24 <= end_date and >= start_date
how can i find my specific date