Hi, I need help to select data from 2 linked tables.
The two tables have the following format:
Table 1
ID Name Status
01 Adam 1
02 Bob 1
03 Coby 1
...
Table 2
ID Skill Level
01 Code A
01 Word 2
01 Excel 1
01 Access 1
02 Code A
02 Excel 2
03 Code B
03 Word 1
03 Excel 2
...
They are linked by common field "ID".
I want select fields ID, Name, Code Level based on the condition with Skill is "Excel" and "Excel" level is "2" and Status is "1".
The result should be:
ID Name Level of Code
-----------------------
02 Bob A
03 Coby B
How can I achieve this?
Thanks
The two tables have the following format:
Table 1
ID Name Status
01 Adam 1
02 Bob 1
03 Coby 1
...
Table 2
ID Skill Level
01 Code A
01 Word 2
01 Excel 1
01 Access 1
02 Code A
02 Excel 2
03 Code B
03 Word 1
03 Excel 2
...
They are linked by common field "ID".
I want select fields ID, Name, Code Level based on the condition with Skill is "Excel" and "Excel" level is "2" and Status is "1".
The result should be:
ID Name Level of Code
-----------------------
02 Bob A
03 Coby B
How can I achieve this?
Thanks