Sep 27, 2001 #1 atashan MIS Joined Sep 27, 2001 Messages 1 Location US How do you ask for a condition to display records whose date (column date in some table) is greater than today's date or a certain date? Any hints would be great, I am new to SQL Server queries, can anyone help? Thanks!
How do you ask for a condition to display records whose date (column date in some table) is greater than today's date or a certain date? Any hints would be great, I am new to SQL Server queries, can anyone help? Thanks!
Sep 27, 2001 #2 RajD Technical User Joined Aug 23, 2001 Messages 53 Location US select * from database..tablename where date_col > '01/01/01' or where date_col > getdate() RajD Upvote 0 Downvote