subject sounds crazy but...
I have a table of rates that I want to validate WHEN the rate is good for. Example:
rate_table
rate_id
rate
valid_from
valid_to
bookings
booker
date
this is simple so far - select booker,date,amount from rate_table,bookings where date between valid_from and valid_to etc.....
However, the client wants open ended "valid_to" ... its valid until they say it changes. My first solution is if they DON'T define a valid_to then set it at a REALLY BIG date ... like Dec 31, 2030 ...
If I do this, am I setting myself up for a big Jan 1, 2031 problem??? (obviously) ... what do i do instead?
sm