I have a query that gets all employee duties for a start date and end date against a database. Basically the table would be like
- Emp
- Duty
- StartDate
- EndDate
Should I give indexing for dates? what kind etc? to make things easier on db level (orm level for me it would be an attribute to set).There will be huge data depending on number of employees off course (expected) , better safe than sorry?
Please advice.