sql server 2008 - SQL how to get 3 dates records ? -


i got demand have select 3 dates db, datetime field of table records not in sequence. how write sql 3 dates' records greater today?

thanks

i think need. use getdate() current date.

select top 3 datecolumn mytable datecolumn > getdate() 

Comments