PDA

View Full Version : MS Access Query Help



Jeff
11-18-2006, 02:25 PM
Is anyone familiar with running queries in MS access? I have no idea how to do it and I need to do it for an assignment in school.

Jeff

spikey_richie
11-18-2006, 03:44 PM
I wouldn't say I'm an expert, but I maintain a 200mb service database which has a shed load of queries in.

What you got then?

Beerknurd
11-18-2006, 04:31 PM
I just took a database class in school... I still don't know jack squat... :lol:

Jeff
11-18-2006, 05:37 PM
Use query to<LI type=a>(4 points) Display and print all fields for those items with a selling price greater than $10 and where the number On Hand is at least 10.
(5 points) Display and print the average selling price of products grouped by supplier code.

spikey_richie
11-18-2006, 05:46 PM
Can you outline your entities and their relationships please.

spikey_richie
11-18-2006, 05:58 PM
This looks like a handy reference site:

http://www.brainbell.com/tutorials/ms-office/Access_2003/TOC_Working_With_Queries.html

NeoGen
11-19-2006, 12:04 AM
I used an Access database on a school project once. We had to build an ASP.NET website that made use of that access database....
I never liked Access much, but after that I swore never to use access again! :lol:

spikey_richie
11-19-2006, 06:52 PM
I prefer to use PHP and MySQL - but I'm still learning

JUST
11-25-2006, 02:28 AM
I'm not very sure.

1. select * from sometable where price>10 and On_Hand>=10
2. select avg(price) from sometable group by supplier_code