Hi, I hope someone can help me.
I need to solve a problem with a view that get me the correct result based in the following scenario.
I have two tables: Language
and ReportDescription
Language
Id Tag Description
---- ---- ----------------
1 en English
2 de German
3 fr French
4 it Italian
ReportDescription
LanguageId ReportId Description
---------- ----------- -------------------
1 1 Committee of (Eng)
2 1 Committee of (German)
3 1 Committee of (French)
4 1 Committee of (Ita)
1 2 Appointment of (Eng)
The result I'd like to have it would be:
LanguageId ReportId Description
---------- ----------- -------------------
1 1 Committee of (Eng)
2 1 Committee of (German)
3 1 Committee of (French)
4 1 Committee of (Ita)
1 2 Appointment of (Eng)
2 2 Appointment of (Eng)
3 2 Appointment of (Eng)
4 2 Appointment of (Eng)
Any help will be very appreciated.