How to write a left outer join with the where clause in oracle?
No Answer is Posted For this Question
Be the First to Post Answer
what is IDE,DMV in sql server?
How does oracle handle read consistency?
how to genarate random numbers in oracle for particular row?
what is shell?
What is the maximum limit on the number of columns in a table?
How to use subqueries with the in operator using oracle?
What happens internally when the user types userID/password@string in SQL PLUS Thanks-Bhaskar
What is a package ? What are the advantages of package ?
What is mean by Program Global Area (PGA) ?
how to hide the stored procedure inside a package
Explain the importance of .pll extension in oracle?
src name sex a,male b,female c,male d,female Required output : male female a,b c,d tried pivot but was not successfull select * from src pivot (max(name) for sex in ('MALE','FEMALE'));