theremin
Mar 19, 2004
I did all the ones I could, but had trouble coming up with like the last 6 of the SQL statements required. So, I put what the database looks like, and the problems I couldn't figure out into Word....
iwz
Mar 19, 2004
Ok, well for #2 on that page.. you basically want to join the REP and CUSTOMER tables on the REP_NUM column, and also CUSTOMER.CREDIT_LIMIT = '$10,000.00'. Then just add in the DISTINCT keyword ...
in case I wasn't clear enough:
SELECT col1, col2 FROM table1, table2 WHERE table1.col3 = table2.col9
is an inner join.