Ditinct query

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

Hi,
I have just one Access table with a lot of e-mails (more than 3000) sorted
in one column. There are some duplicated and I'd like to sort query with
unique e-mail (in new querie). As I can see command Distinct maybe can help
me, but I'm not so familiar with Access... Please help me.

Thnx!
 
Dan said:
Hi,
I have just one Access table with a lot of e-mails (more than 3000) sorted
in one column. There are some duplicated and I'd like to sort query with
unique e-mail (in new querie). As I can see command Distinct maybe can
help me, but I'm not so familiar with Access... Please help me.

Thnx!


Wrong subject: DISTINCT.
 
This is quite east Your SQL statement would look something like the
following:

SELECT DISTINCT * FROM [your table name];
Hope this helps
 
Japie Botha said:
This is quite east Your SQL statement would look something like the
following:

SELECT DISTINCT * FROM [your table name];
Hope this helps

Hm, it doesn't work.

Table with one column and data in rows:
(e-mail address removed)
(e-mail address removed)
(e-mail address removed)
(e-mail address removed)

I'd like to create query and as result:
(e-mail address removed)
(e-mail address removed)

Could you help again? Many thanks!
 
select distinct * from atable rarely helps

select distinct oneormorefields from atable
does

pieter

Dan said:
Japie Botha said:
This is quite east Your SQL statement would look something like the
following:

SELECT DISTINCT * FROM [your table name];
Hope this helps

Hm, it doesn't work.

Table with one column and data in rows:
(e-mail address removed)
(e-mail address removed)
(e-mail address removed)
(e-mail address removed)

I'd like to create query and as result:
(e-mail address removed)
(e-mail address removed)

Could you help again? Many thanks!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top