I have a mysql record with the columns start_date and end_date. Now I have a date (as example 2017-08-03) and i want to ask if this date is between the start_date and end_date in my mysql table.
Instead of naively asking “is this possible”, next time please just type your question title into Google ... And please go read How to Ask - among other things, it explains to you what minimal effort you are expected to make before asking here.
objectsWHERE (date BETWEEN start_date_field AND end_date_field)