I have two tables
Table 1 and Table 2
Now, in Table 1 the data could look like this all on 1 row
Number Result 1 Result 2 Result 3
100 7.1 7.8 6.4
Table 2 has multiple rows
Number Test Percent
100 abc 1.3
100 cde 12.9
100 zzz 24.3
Now, if I join the tables the results will be
Number Result 1 Result 2 Result 3 Test Percent
100 7.1 7.8 6.4 abc 1.3
100 7.1 7.8 6.4 cde 12.9
100 7.1 7.8 6.4 zzz 24.3
How can I get the results to look like this
Number Result 1 Result 2 Result 3 Test Percent
100 7.1 7.8 6.4 abc 1.3
cde 12.9
zzz 24.3
Is this even possible ?
any help would be appreciated
Thanks
Table 1 and Table 2
Now, in Table 1 the data could look like this all on 1 row
Number Result 1 Result 2 Result 3
100 7.1 7.8 6.4
Table 2 has multiple rows
Number Test Percent
100 abc 1.3
100 cde 12.9
100 zzz 24.3
Now, if I join the tables the results will be
Number Result 1 Result 2 Result 3 Test Percent
100 7.1 7.8 6.4 abc 1.3
100 7.1 7.8 6.4 cde 12.9
100 7.1 7.8 6.4 zzz 24.3
How can I get the results to look like this
Number Result 1 Result 2 Result 3 Test Percent
100 7.1 7.8 6.4 abc 1.3
cde 12.9
zzz 24.3
Is this even possible ?
any help would be appreciated
Thanks