I am using SQL Server
The data that I have is:
table1:
R_Time ID Q1
2012-02-26 14 8
2012-02-27 14 7
2012-02-27 15 8
2012-02-27 16 9
2012-02-27 11 10
2012-02-28 11 6
2012-02-28 14 10
2012-02-28 15 9
and
table2:
ID Supervisor
11 2
14 2
15 3
16 3
What i am trying to due is only show R_Time and Q1 Entries from table1 where table2 Supervisor is 3
I know I will somehow have to do a join but im not quite sure how to.
Thanks.
Description
You can use a inner join to get this done.
Sample
More Information