Sorting e-mail addresses

  • Thread starter Thread starter Anna Sargent
  • Start date Start date
A

Anna Sargent

I have a large list of e-mail addresses.

How can I sort and retrieve only those with @aol.com

thank you,
ams
 
Select emailfield
from your table
where emailfield like "*" & "@aol.com"
order by emailfield
 
I have a large list of e-mail addresses.

How can I sort and retrieve only those with @aol.com

"Sorting" and "retrieving" are two different issues: to Sort means to
take the records and put them into an alphabetic or numeric sequence.

To search for addresses from AOL, use a Query based on your table. As
a criterion on the EMail field use

LIKE "*@aol.com"

The * is a wildcard meaning "any string of characters".

To sort the addresses alphabetically, just put Ascending on the Sort
row of the query grid.
 

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