B
Benny
Hello Experts,
Assume I have two tables: tA and tB
tA:
tA_ID, tB_ID, Description
1 100 A
2 200 B
3 300 C
tB:
tB_ID, Description
100 W
200 X
300 Y
400 Z
Result I want is everything in table tB with the description from its
related record in table tA if applicable. So the result will be like
this:
tB_ID, tA_ID, Description (from tA)
100 1 A
200 2 B
300 3 C
400 NULL NULL
How can I achieve with MS SQL 2000?
Thanks in advanced,
Benny
Assume I have two tables: tA and tB
tA:
tA_ID, tB_ID, Description
1 100 A
2 200 B
3 300 C
tB:
tB_ID, Description
100 W
200 X
300 Y
400 Z
Result I want is everything in table tB with the description from its
related record in table tA if applicable. So the result will be like
this:
tB_ID, tA_ID, Description (from tA)
100 1 A
200 2 B
300 3 C
400 NULL NULL
How can I achieve with MS SQL 2000?
Thanks in advanced,
Benny