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

Can we save images in a database and if yes, how?

0 Answers  


Explain can a view based on another view?

1 Answers  


How to export data with a field delimiter?

0 Answers  


You have found corruption in a tablespace that contains static tables that are part of a database that is in NOARCHIVE log mode. How would you restore the tablespace without losing new data in the other tablespaces?

0 Answers  


How to select some columns from a table in oracle?

0 Answers  






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.

6 Answers   Polaris,


how may join possible between (requisition with purchase order)

0 Answers  


What is a Data File ?

1 Answers  


Explain index?

0 Answers  


Why oracle is used?

0 Answers  


How to create a single index for multiple columns?

0 Answers  


1:-How to write to update command in a procedure in oracle which update two different table at a time 2:-How to write the select command in a procedure in oracle which give multiple records

1 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • 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)