SELECT * FROM table_name WHERE date_field >= NOW();
ALTER TABLE yourTable ADD CONSTRAINT yourDateTimeColumn CHECK (yourDateTimeColumn < GetDate() );
alter table foo add constraint check_dates check (from_date < to_date);