Hi Frnds this que is recently asked at IBM
there are two rows like aa6588fhfhf,gru282vbvv.
Question is howcan we retrive the first number from two
rows.
Can any one help

thanks in advance

Answers were Sorted based on User's Feedback



Hi Frnds this que is recently asked at IBM there are two rows like aa6588fhfhf,gru282vbvv. Questi..

Answer / tdguy

I hope substr function can be used but somewhat lengthy.
But UDF would make task easy.

SEL SIX
FROM
(
SEL
CASE
WHEN SUBSTR(COLUMN,1,1) IN
('1','2','3','4','5','6','7','8','9','0')
THEN '1' ELSE '' END AS ONE,
CASE
WHEN SUBSTR(COLUMN,2,1) IN
('1','2','3','4','5','6','7','8','9','0')
THEN '2' ELSE '' END AS TWO,
CASE
WHEN SUBSTR(COLUMN,3,1) IN
('1','2','3','4','5','6','7','8','9','0')
THEN '3' ELSE '' END AS THREE,
CASE
WHEN SUBSTR(COLUMN,4,1) IN
('1','2','3','4','5','6','7','8','9','0')
THEN '4' ELSE '' END AS FOUR,
SUBSTR(TRIM(ONE||TWO||THREE||FOUR),1,1) AS FIVE,
SUBSTR(COLUMN,FIVE,1) AS SIX
FROM TABLE
) A

Is This Answer Correct ?    4 Yes 0 No

Hi Frnds this que is recently asked at IBM there are two rows like aa6588fhfhf,gru282vbvv. Questi..

Answer / rkraju

Hi,gautam nice 2 see ur answer can u show me that output in
one sql.,
thanks in advance

Is This Answer Correct ?    1 Yes 0 No

Hi Frnds this que is recently asked at IBM there are two rows like aa6588fhfhf,gru282vbvv. Questi..

Answer / pavan

sel (case
when position('1' in name)>0 then substring(name from position('1' in name) for 1)
when position('2' in name)>0 then substring(name from position('2' in name) for 1)
when position('3' in name)>0 then substring(name from position('3' in name) for 1)
when position('4' in name)>0 then substring(name from position('4' in name) for 1)
when position('5' in name)>0 then substring(name from position('5' in name) for 1)
when position('6' in name)>0 then substring(name from position('6' in name) for 1)
when position('7' in name)>0 then substring(name from position('7' in name) for 1)
when position('8' in name)>0 then substring(name from position('8' in name) for 1)
when position('9' in name)>0 then substring(name from position('9' in name) for 1)
when position('0' in name)>0 then substring(name from position('0' in name) for 1)
else substring(name from 0 for 1)
end),name from ttemp.t2sel (case
when position('1' in name)>0 then substring(name from position('1' in name) for 1)
when position('2' in name)>0 then substring(name from position('2' in name) for 1)
when position('3' in name)>0 then substring(name from position('3' in name) for 1)
when position('4' in name)>0 then substring(name from position('4' in name) for 1)
when position('5' in name)>0 then substring(name from position('5' in name) for 1)
when position('6' in name)>0 then substring(name from position('6' in name) for 1)
when position('7' in name)>0 then substring(name from position('7' in name) for 1)
when position('8' in name)>0 then substring(name from position('8' in name) for 1)
when position('9' in name)>0 then substring(name from position('9' in name) for 1)
when position('0' in name)>0 then substring(name from position('0' in name) for 1)
else substring(name from 0 for 1)
end),name from ttemp.t2;

Is This Answer Correct ?    1 Yes 0 No

Hi Frnds this que is recently asked at IBM there are two rows like aa6588fhfhf,gru282vbvv. Questi..

Answer / santosh

sel regexp_substr('aa6588fhfhf','[[:digit:]]+')
Ans:6588

Is This Answer Correct ?    0 Yes 0 No

Hi Frnds this que is recently asked at IBM there are two rows like aa6588fhfhf,gru282vbvv. Questi..

Answer / ashutosh gautam

Use DIGITS("aa6588fhfhf") in transform it will return only
digit as 6588.

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Teradata Interview Questions

Is it necessary to add? Quit statement after a bteq query when I am calling it in a unix environment?

0 Answers  


What are the design features involved in teradata?

0 Answers  


If Fast Load Script fails and only the error tables are made available to you, then how will you restart?

0 Answers  


What are the various indexes in teradata? How to use them? Why are they preferred?

0 Answers  


Difference between inner join and outer join?

0 Answers  






What are differences between teradata and ansi session modes in teradata?

0 Answers  


Different phases of multiload?

0 Answers  


teradata support to automatically increase the character length or not?

1 Answers  


Give some points about Teradata Viewpoint ?

3 Answers   Teradata,


How to cast date "2015-03-03-012204-000000" to timestamp

1 Answers   Cognizant,


What is TPD?

0 Answers  


Why AMP & PE are called Vprocs?

4 Answers  


Categories