Rexolio
Technical User
- Aug 29, 2001
- 230
Working on a project for my company and I'm very LIMITED in my knowledge of ASP. Usually I can find a way to get something done, but in this particular project I need to be proficient as possible so the page loads quickly.
I need to be able to show in the web browser via ASP How many Markets each Manager is in charge of, how many NEW, ESTABLISHED or CHARTER Markets each is in charge of, how many clients each Manager is in charge of, how many clients each Market has, how many clients fall under NEW, ESTABLISHED and CHARTER Markets (hope you get the picture.)
Looking for a simple way to do this. Any ideas/suggestions would be greatly appreciated. I have included a sample of my database tables below where this information must be drawn from:
![[bugeyed] [bugeyed] [bugeyed]](/data/assets/smilies/bugeyed.gif)
rexolio@bellsouth.net
"I'm not dumb. I just have a command of thoroughly useless information." - Calvin, of Calvin and Hobbes
I need to be able to show in the web browser via ASP How many Markets each Manager is in charge of, how many NEW, ESTABLISHED or CHARTER Markets each is in charge of, how many clients each Manager is in charge of, how many clients each Market has, how many clients fall under NEW, ESTABLISHED and CHARTER Markets (hope you get the picture.)
Looking for a simple way to do this. Any ideas/suggestions would be greatly appreciated. I have included a sample of my database tables below where this information must be drawn from:
Code:
tblREGIONAL_MANAGERS
********************
ID NAME
-- ---------------
1 John Smith
2 Bob Williams
3 Susan Jones
tblMARKET_TYPES
*******************
ID TYPE
-- --------------
1 New
2 Established
3 Charter
tblMARKETS
****************************
ID MGR MARKET TYPE
-- --- --------- ----
1 2 Atlanta 3
2 1 Nashville 1
3 3 St. Louis 2
4 2 Macon 2
5 1 Memphis 3
6 3 Kansas Cty 2
tblCLIENTS
*******************
ID MKT NAME
-- --- --------
1 1 J. White
2 2 B. Edwards
3 1 T. Ownes
4 3 P. Lopez
5 3 L. Morgan
6 2 E. Dole
![[bugeyed] [bugeyed] [bugeyed]](/data/assets/smilies/bugeyed.gif)
rexolio@bellsouth.net
"I'm not dumb. I just have a command of thoroughly useless information." - Calvin, of Calvin and Hobbes