Your mdb is at
http://www.hammerdata.com/Google/Textbook.mdb
There are ten queries with names beginning with GA.
I was working quickly to beat your deadline and some of the later
questions weren't entirely clear, but I think I interpreted them
correctly. Again, I was working very quickly, so a proof on your part
would be in order.
- Hammer |
Request for Answer Clarification by
alwaysrelaxed-ga
on
07 Nov 2004 19:06 PST
Great! I put an earlier deadline to make sure it happens so still
really had another 2 hrs. :-)
I try to just open from the link but it says it cant but allows me
to save it. I save it and it says its located outside my intranet or
untrusted site. It says copy to my machine or an accesible network
location. Im sure the answer is perfect, just how do i get it!!
thanks for any help.
|
Clarification of Answer by
hammer-ga
on
07 Nov 2004 19:09 PST
Try right-clicking on the link and selecting Save Link Target As...
If that doesn't work, drop your security settings enough to allow you
to get the file. Meanwhile, I'll post the 10 SQL statements so you can
make the queries yourself, if need be.
|
Clarification of Answer by
hammer-ga
on
07 Nov 2004 19:15 PST
Here's the SQL for each of the ten queries.
- Hammer
1.
SELECT CLASS.ClassNumb, CLASS.Enrollment
FROM CLASS
WHERE (((CLASS.Enrollment)<25))
ORDER BY CLASS.ClassNumb;
2.
SELECT CLASS.ClassNumb
FROM CLASS
WHERE (((CLASS.Enrollment)<25 Or (CLASS.Enrollment)>100))
ORDER BY CLASS.ClassNumb;
3.
SELECT CLASS.ClassNumb
FROM CLASS
WHERE (((CLASS.Enrollment)>25 And (CLASS.Enrollment)<100))
ORDER BY CLASS.ClassNumb;
4.
SELECT CLASS.ClassNumb
FROM CLASS
WHERE (((Left([ClassNumb],3))='MIS'));
5.
SELECT CLASS.ClassNumb
FROM CLASS
WHERE (((Mid([ClassNumb],4,1))="4"));
6.
SELECT CLASS.ClassNumb, CLASS.Enrollment
FROM CLASS
WHERE (((CLASS.ClassNumb)=[Enter Class Number]));
7.
SELECT BOOK.Title, BOOK.BookNumb
FROM BOOK
WHERE (((Exists (Select BookNumb from STUDENT where
student.booknumb=book.booknumb))=False))
ORDER BY BOOK.Title;
8.
SELECT CLASS.ClassNumb, Count(INTERSECTION.BookNumb) AS CountOfBookNumb
FROM CLASS LEFT JOIN INTERSECTION ON CLASS.ClassNumb = INTERSECTION.ClassNumb
GROUP BY CLASS.ClassNumb
ORDER BY CLASS.ClassNumb;
9.
SELECT [FirstName]+" "+[LastName] AS Name, Sum(STUDENT.CopiesToSell)
AS SumOfCopiesToSell
FROM STUDENT
GROUP BY [FirstName]+" "+[LastName]
ORDER BY [FirstName]+" "+[LastName];
10.
SELECT TOP 1 BOOK.Price, BOOK.Title, BOOK.Author
FROM BOOK
ORDER BY BOOK.Price DESC;
|
Clarification of Answer by
hammer-ga
on
07 Nov 2004 19:17 PST
AlwaysRelaxed,
I'm going offline for the night. Hopefully, the materials I've
provided will allow you complete your project.
- Hammer
|
Request for Answer Clarification by
alwaysrelaxed-ga
on
07 Nov 2004 19:18 PST
argh, set internet security to low, restricted to low... everything
lowered. Not working same message. No other way? Some how to just
download it then i can resave it? I have a junkmail anyone can have
email address of prftman@aol.com it can be sent to. anything!! haha
|
Clarification of Answer by
hammer-ga
on
08 Nov 2004 04:31 PST
AlwaysRelaxed,
I'm sorry your network is not letting you have files from outside. We
are not permitted to email you directly, however, the SQL I posted
should have allowed you to put the queries in the mdb yourself.
- Hammer
|