Jan 9, 2004 #1 jvande MIS Jun 6, 2001 115 US Lets say I have a table with the following information Date1 Date2 Date3 1/1/04 1/5/04 1/1/04 1/4/04 1/8/04 1/8/04 1/5/04 1/10/04 I want a query that will only return the unique dates of all these fields. So the result would be 1/1/04 1/4/04 1/5/04 1/8/04
Lets say I have a table with the following information Date1 Date2 Date3 1/1/04 1/5/04 1/1/04 1/4/04 1/8/04 1/8/04 1/5/04 1/10/04 I want a query that will only return the unique dates of all these fields. So the result would be 1/1/04 1/4/04 1/5/04 1/8/04
Jan 9, 2004 1 #2 swampBoogie Programmer Jan 6, 2003 1,660 SE Code: select date1 from t union select date2 from t union select date3 from t Upvote 0 Downvote