Jun 19, 2002 #1 startup Technical User May 22, 2002 42 US Hello, I have a table with values like the following in one of the columns: AA AA BB CC CC CC EE How would I create a SELECT statement which would grab a unique instance of each field? The resulting output I want would be: AA BB CC EE Thanks, Rico
Hello, I have a table with values like the following in one of the columns: AA AA BB CC CC CC EE How would I create a SELECT statement which would grab a unique instance of each field? The resulting output I want would be: AA BB CC EE Thanks, Rico
Jun 19, 2002 #2 allanon Programmer Jun 7, 2000 449 CA SELECT DISTINCT table1.field1 FROM table1 Upvote 0 Downvote
Jun 19, 2002 Thread starter #3 startup Technical User May 22, 2002 42 US Thanks, just what I needed. Upvote 0 Downvote