I want to write a select statement to find dates with 2002 only. If I use the entire date format for a single date like 1/1/2002 (see the code below), it works but I want to find all 2002 dates not just one.
sql = "SELECT * FROM tblNewsStories Where archived='Yes' AND Date = '1/1/2002' ORDER BY date DESC"
sql = "SELECT * FROM tblNewsStories Where archived='Yes' AND Date = '1/1/2002' ORDER BY date DESC"