The database is structured as below.
-----------------------------------
| product | start_year | end_year |
-----------------------------------
| prod_1 | 2001 | 2005 |
| prod_2 | 2002 | 2010 |
| prod_3 | 2003 | |
| prod_4 | 2004 | 2016 |
| prod_5 | 2005 | |
| prod_6 | 2005 | 2015 |
-----------------------------------
Some fields "end_year" are empty, blank cell indicates the current year. I have a parameter year and I want to receive the records in which the year is between two dates (start_year and end_year).
I could use this query, but unfortunately there was a problem with empty cells:
select * from table where 2003 between start_year and end_year;
You can check if the
start_year
is greater than or equal to thesearchyear
and check ifend_year
is less than or equal tosearchyear
or end_year isNULL