How can I combine three tables in a View or a Procedure?
From: Emilio <enavarro_at_attglobal.net>
Date: 30 Dec 2003 15:43:28 -0800
Message-ID: <7551aabf.0312301543.4ae1891f_at_posting.google.com>
Date: 30 Dec 2003 15:43:28 -0800
Message-ID: <7551aabf.0312301543.4ae1891f_at_posting.google.com>
The TEST_QA table contains the following:
TEST_QA_ID | PROC_TEST_ID | TEST_QA_QUESTION | TEST_QA_CORRECT
-----------+--------------+------------------+-----------------
3| 1|First Question | 5
4| 2|Second Question | 1
5| 1|Third Question | 2
6| 3|Fourth Question | 1
7| 3|Fifth Question | 5
8| 3|Sixth Question | 2
9| 3|Seventh Question | 3
The EMPLOYEE_TEST table contains the following:
EMPLOYEE_ID | EMPLOYEE_TEST_ID
------------+------------------
3| 7
The EMPLOYEE_TEST_ANSWER table contains the following:
EMPLOYEE_TEST_ID | TEST_QA_ID | TEST_QA_CORRECT
-----------------+------------+-----------------
7| 9| 5
7| 8| 2
7| 6| 1
EMPLOYEE_ID | EMPLOYEE_TEST_ID | TOTAL_ANSWERS | CORRECT | WRONG
------------+------------------+---------------+---------+-------
3| 7| 2| 2| 1
Thank you in advance...
Emilio Received on Wed Dec 31 2003 - 00:43:28 CET
