actually, i think i mistook your question, you have those two fields in the table:
select * from yourtable
where getdate() between yourtable.startdate1 and yourtable. enddate1
or
where yourtable.startdate1 < getdate()
and yourtable. enddate1> getdate()
the getdate() function will return the current server time...