Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by stroy

  1. stroy

    concatenate different rows into one field

    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
  2. stroy

    concatenate different rows into one field

    oracle 8
  3. stroy

    concatenate different rows into one field

    I can't do this in my code because my query will be sorted on another field.
  4. stroy

    concatenate different rows into one field

    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...
  5. stroy

    outer join with restrictive clause

    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
  6. stroy

    join with restrictive clause

    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
  7. stroy

    join with restrictive clause

    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
  8. stroy

    join with restrictive clause

    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...
  9. stroy

    outer join with restrictive clause

    Me again, I am not sure I undersatnd where I put my condition "idExp = 2"... Thanks
  10. stroy

    outer join with restrictive clause

    Thanks Terry, I will work on this! I am using oracle 8i so if you also have oracle knowledge...It would really help me.
  11. stroy

    outer join with restrictive clause

    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...

Part and Inventory Search

Back
Top