Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


"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

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

1 Answers   Cognizant,


Diff b/w v2r5 and v2r6 ?

3 Answers   TCS,


What is the use of fallback?

0 Answers  


Find 2 highest sal from each dept who have completed 5 year in org

0 Answers   Wipro,


Explain the types of join supports by teradata?

0 Answers  


How to handle nulls in Teradata??? How many columns can be there in a table??? How to find average sal with out using avg function????

3 Answers   Mphasis,


Can any one please provide me practical example of How to do the performance tuning in Query??

5 Answers   Amdocs,


Why is the case expression used in teradata?

0 Answers  


what is object level locking ? where do appear this type of locking ?

0 Answers  


Hello Frndz, I have a table named product as shown below: product_id product_name 1 AAA 1 BBB 1 CCC 2 PPP 2 QQQ 2 RRR Now my output should be: product_id product_name_1 product_name_2 product_name_3 1 AAA BBB CCC 2 PPP QQQ RRR

4 Answers   Cap Gemini,


where we can use the delimiter in mload? pls let me know

2 Answers   Wipro,


What are the steps involved in the process flow of the sql statement through channel attached system?

0 Answers  


Categories