I have the following columns:
- date_start | date_end
- 2013-01-14 | 2013-01-16
- 2013-01-16 | 2013-03-18
- 2013-01-22 | 2013-03-21
- 2013-02-02 | 2013-02-10
- 2013-03-25 | 2013-03-28
i need to create a sql statment that I can filter these record with
date_start: 2013-01-17 date_end:2013-03-22
and the found results to be:
- date_start | date_end
- 2013-01-16 | 2013-03-18
- 2013-01-22 | 2013-03-21
- 2013-02-02 | 2013-02-10
does anyone know how to do this?
thank you