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


One Table having two rows with one colomn having values
Like"Male" and "Female". how to upadte these values
Like "Female" and "Male" in single update statement.

Answers were Sorted based on User's Feedback



One Table having two rows with one colomn having values Like"Male" and "Female"..

Answer / murali mohan

Try this,


update testsamp1 set c=decode
(c,'MALE','FEMALE','FEMALE','MALE');


Regards,
Murali

Is This Answer Correct ?    8 Yes 1 No

One Table having two rows with one colomn having values Like"Male" and "Female"..

Answer / selvaraj anna university coe

UPDATE Eptbl SET Sex=DECODE
(Sex,'Male','Female','Female','Male');

Is This Answer Correct ?    8 Yes 1 No

One Table having two rows with one colomn having values Like"Male" and "Female"..

Answer / brahma prakash

Murali your answer is not running on postgres database

Is This Answer Correct ?    2 Yes 0 No

One Table having two rows with one colomn having values Like"Male" and "Female"..

Answer / manikanta

'DECODE' is not a recognized built-in function name in sql
server

Is This Answer Correct ?    2 Yes 0 No

One Table having two rows with one colomn having values Like"Male" and "Female"..

Answer / hitendra yadav

--Try this

UPDATE Eptbl
SET Sex= CASE WHEN SEX='Male'
THEN 'Female'
ELSE 'Male'
END;

Is This Answer Correct ?    1 Yes 0 No

One Table having two rows with one colomn having values Like"Male" and "Female"..

Answer / apsar

update tbl_name set (a,b) = (select b,a from tbl_name where a='Male');

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle General Interview Questions

How would you design a database for an e-commerce website?

1 Answers  


What is an UTL_FILE.What are different procedures and functions associated with it?

1 Answers  


Can we create more than one index on particular column?

1 Answers  


 How to use an oracle sequence generator in a mapping?

0 Answers   Informatica,


How to delete multiple rows from a table in oracle?

0 Answers  


Can a formula column be obtained through a select statement ?

0 Answers   Oracle,


2. Display the post code and the total number of purchase orders placed with creditors in that post code.

0 Answers   Wipro,


Explain oracle’s system global area (sga).

0 Answers  


How much memory your 10g xe server is using?

0 Answers  


An automatic job running via DBMS_JOB has failedKnowing only that its failed, how do you approach troubleshooting this issue?

0 Answers  


What is an oracle user account?

0 Answers  


How to specify default values in insert statement using oracle?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1803)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)