Jan 28, 2004 #1 yoshi1000 MIS Joined Jan 28, 2004 Messages 3 Location GB hope someone could tell me how to complete this command in SQL... SELECT * FROM table WHERE entryDate {is equal or greater than current date}
hope someone could tell me how to complete this command in SQL... SELECT * FROM table WHERE entryDate {is equal or greater than current date}
Jan 28, 2004 #2 swampBoogie Programmer Joined Jan 6, 2003 Messages 1,660 Location SE Code: SELECT * FROM table WHERE entryDate >= current_date Upvote 0 Downvote