Jan 28, 2004 #1 yoshi1000 MIS Jan 28, 2004 3 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 Jan 6, 2003 1,660 SE Code: SELECT * FROM table WHERE entryDate >= current_date Upvote 0 Downvote