parscon
07-08-2015, 11:49 PM
Hello , I have Table with this column
Table1 has columns (ID, Name, TEXTTYPE , LANGID) and sample data:
(1, John, RB, 11),
(2, Peter, PM, 12),
(3, Mary, RB, 11)
(4, Kristina, RB, 11)
Table2 has columns (TEXTTYPE , LANGID , Description, TRANSLATE) and sample data:
(RB , 11, Apple, FR),
(PM, 12, Apricot, GB),
(RB , 14, Aubergine, TR),
(PM, 12, Orange, FR),
(RB, 11, Banana, GB)
I need The below result only Show FR value in TRANSLATE column:
(1, John, RB, 11 , Apple),
(2, Peter, PM, 12, Orange),
(3, Mary, RB, 11, Apple),
(4, Kristina, RB, 11, Apple)
I need this query for Oracle.
Table1 has columns (ID, Name, TEXTTYPE , LANGID) and sample data:
(1, John, RB, 11),
(2, Peter, PM, 12),
(3, Mary, RB, 11)
(4, Kristina, RB, 11)
Table2 has columns (TEXTTYPE , LANGID , Description, TRANSLATE) and sample data:
(RB , 11, Apple, FR),
(PM, 12, Apricot, GB),
(RB , 14, Aubergine, TR),
(PM, 12, Orange, FR),
(RB, 11, Banana, GB)
I need The below result only Show FR value in TRANSLATE column:
(1, John, RB, 11 , Apple),
(2, Peter, PM, 12, Orange),
(3, Mary, RB, 11, Apple),
(4, Kristina, RB, 11, Apple)
I need this query for Oracle.