3 tables...
Languages
IdLang
Description
Expresssion
IdExp
Date
…
LangExpression
IdExp
IdLand
Description
I need a list of all languages with an indicator (true/false or count…)to know if the expression exist for that language for a specific expression
Language
Fr French
En English
Sp Spanish
Expression
1 10/10/10
2 10/10/10
3 10/10/10
LangExpression
1 Fr jour
1 En day
1 Sp dias
2 Fr nuit
2 En night
3 Fr rue
3 En street
I need for expression 2
FR true
EN true
SP false
If I go with joins, the “WHERE idExp = 2“ removes the SP entry from the resultset.
I use Oracle 8i.
Please help
Thanks
Languages
IdLang
Description
Expresssion
IdExp
Date
…
LangExpression
IdExp
IdLand
Description
I need a list of all languages with an indicator (true/false or count…)to know if the expression exist for that language for a specific expression
Language
Fr French
En English
Sp Spanish
Expression
1 10/10/10
2 10/10/10
3 10/10/10
LangExpression
1 Fr jour
1 En day
1 Sp dias
2 Fr nuit
2 En night
3 Fr rue
3 En street
I need for expression 2
FR true
EN true
SP false
If I go with joins, the “WHERE idExp = 2“ removes the SP entry from the resultset.
I use Oracle 8i.
Please help
Thanks