Let me start of by saying that as I don't know how to search for this problem, this question might also be a duplicate.
Here is the situation:
I have the following two tables:
Language:
- LanguageID
- Name
and
Product:
- ProductID
- LanguageID
- Name
The table Language contains 4 records for four languages : English, French, Italian, Spanish.
The table 'Product' contains 1 record - for a product with a Name "TEST" in English.
I would like to do a select on those two tables that will return for every record in the Language table the same product record from the Product table.
So,
LanguageID, Name , ProductID, ProductName
1 English 1 Test
2 Italian 1 Test
and so on.
Any ideas? Thanks for any help!
