Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

simple access 2000 query help 1

Status
Not open for further replies.

phlash

MIS
May 19, 2003
3
0
0
US
I am very new to databases and have a question if anyone would be willing to help. I have a simple access database (first, last, address, zip, and christmas list) I need to setup a query to pull everyone who has a check mark on christmas list in alpha order. Can anyone point me in the right direction please?
Thanks in advance.
 
Go to new query and SQL view

Select first, last, address, zip
from table
where [christmas list] = true
order by last, first.

This brings in the fields against the select line
from the table called "table" (you will need to change this)
where the christmas list field is set to true, and sort those results by lastname and firstname within lastname.

John
 
Thank You John! You saved me alot research for something so simple =)
 
Don't worry. When I was learning SQL I was looking at wizard generated code and tying this to what was in the SQL view and wondered what the heck it meant, then suddenly it clicked and thought "Why did nobody actually say that to me it would have saved lots of time."

John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top