"pravalli nagireddy" record is there in address column but i
want display only 'nagireddy' from the main string what is
query for that pls tell me

Answers were Sorted based on User's Feedback



"pravalli nagireddy" record is there in address column but i want display only 'nag..

Answer / yuvaevergreen

sel substr(address,index(address,' ')+1) from db.emp;
will give you the string after the first space in the string.

Is This Answer Correct ?    12 Yes 0 No

"pravalli nagireddy" record is there in address column but i want display only 'nag..

Answer / babu

Hi All,


SELECT SUBSTR('PRAVALLI NAGIREDDY',POSITION('' IN 'PRAVALLI
NAGIREDDY')+1) FROM TABLE_NAME

THIS IS THE CORRECT ANSWER.

IN TERADATA THE FUNCTION INSTR IS NOT WORK.

Is This Answer Correct ?    6 Yes 0 No

"pravalli nagireddy" record is there in address column but i want display only 'nag..

Answer / chandu

select substr("pravalli nagireddy",10,9) from <table_name>

Is This Answer Correct ?    11 Yes 6 No

"pravalli nagireddy" record is there in address column but i want display only 'nag..

Answer / tdguy

Use substr function to handle character manipulations.

Is This Answer Correct ?    2 Yes 0 No

"pravalli nagireddy" record is there in address column but i want display only 'nag..

Answer / kiran kumar

Sel address,index(address,' ') as r,substr(address,r+1) from tablename;

Is This Answer Correct ?    2 Yes 0 No

"pravalli nagireddy" record is there in address column but i want display only 'nag..

Answer / nani

select substr(address,position('n'in address))as first_name
from t1;

Is This Answer Correct ?    1 Yes 0 No

"pravalli nagireddy" record is there in address column but i want display only 'nag..

Answer / ankal

sel substr('pravalli nagireddy', index('pravalli nagireddy','n'));

Is This Answer Correct ?    2 Yes 3 No

"pravalli nagireddy" record is there in address column but i want display only 'nag..

Answer / nani

SELECT ARRDESS COLUMN FROM TABLE NAME WHERE ADDRESSCOLUMN='%
NAGIREDDY'

Is This Answer Correct ?    0 Yes 5 No

"pravalli nagireddy" record is there in address column but i want display only 'nag..

Answer / gvk

select substr("pravalli nagireddy",instr("pravalli
nagireddy",' '),10)from <tablename>

Is This Answer Correct ?    1 Yes 7 No

Post New Answer

More Teradata Interview Questions

Explain teradata utilities?

0 Answers  


What are the functions of a teradata dba?

0 Answers  


I have a table with emp id, emp name, dept id and sal where dept id is NUSI. SEL * FROM EMP WHERE DEPTID = 100. Can any one explain how it will fetch the record.

4 Answers  


What is the difference between global temporary tables and volatile temporary tables?

0 Answers  


What is the purpose of indexes?

0 Answers  






If the table does not have duplicates then which utility you can suggest to load the data ?

3 Answers  


Explain the parallel data extension in teradata?

0 Answers  


What is spool space and when running a job if it reaches the maximum spool space how you solve the problem?

0 Answers  


How can we build data marts from FSLDM. is there any standard approach for this?Is FSLDM supports place ?

2 Answers  


What are the design features involved in teradata?

0 Answers  


During the Display time, how is the sequence generated by Teradata?

0 Answers  


What happens when a node suffers a downfall?

0 Answers  


Categories