Thank you carp but I no but want to concatenate the name and one phone, but all the phone numbers together.
column 1 => the name
column 2 => all the phone numbers concatenated
Stroy
I am looking for a way to concatenate data from different rows.
TableA
----------
A Albert
B Bob
C Celine
TableB
----------
A 555-5555
A 555-6666
B 555-7777
I want
--------
Albert 555-5555, 555-6666
Bob 555-7777
Celine
Is there a query that would do this, a standard function or know user...
I think I got it right...
select t2.idLANG, decode((select t1.idLANG from langExpression t1 where t1.idexp = '1' and t1.idLANG = t2.idlang), null, 'false', 'true')
from langue t2
thanks
I think I got it right...
select t2.idLANG, decode((select t1.idLANG from langExpression t1 where t1.idexp = '1' and t1.idLANG = t2.idlang), null, 'false', 'true')
from langue t2
thanks
I have a solution but I am sure there must be a better way:
select a.idLANG, decode((select b.idLANG from langExpression b, langue c where b.idExp = '2' and c.idLANG = b.idLANG and b.idLANG = a.idlang), null, 'false', 'true') as ok
from langue a
Thanks
Stroy
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...
Help
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.