Hi friends. I am supposed to display the Project_Name of all rows in the Project Table which do not form part of the Completed_Project table. It should return Feasibility Study RE (i.e. Project_ID = 4) and Website Development RE (i.e. Project_ID = 5). Please please help.
Table: Project
Project_ID=== Project_Name
1=========Business Plan
2 ======== Software Design
3 ======== Schedule program
4======== Feasibility Study RE
5 ======== Website Development RE
Table: Completed Project
Project_ID (FK) === Outcome
1 ============Success
2 ============ Success
3 ============Success
Querying problem. Please help.
|
Go4Expert Member
|
|
| 24Oct2009,20:53 | #1 |
|
Last edited by Assi9; 24Oct2009 at 21:11.. |
|
Invasive contributor
|
![]() |
| 24Oct2009,23:21 | #2 |
|
What do you want as output? this?
Code:
Project ID Project Name Outcome 1 Business Plan Success 2 Software Design Success 3 Schedule Program Success 4 Feasibility Study RE 5 Website Development RE and here is the query: Code: sql
Last edited by nimesh; 24Oct2009 at 23:22.. Reason: modified code block
Assi9
like this
|
|
Go4Expert Member
|
|
| 24Oct2009,23:31 | #3 |
|
Hi again, Nimesh. Thanks a million for the reply.
The output that I want is this: Code:
Project_ID Project_Name 4 Feasibility Study RE 5 Website Development RE |

