How to generate query output in html format?
No Answer is Posted For this Question
Be the First to Post Answer
Tab A A B ------ 1 A 2 B 3 C Tab B A B ----- 4 D 5 E 6 F Generate the value into B table from A table. Only table A has the value. Write the SQL query to get B table value.
Explain the concept of the DUAL table.
When do you get a .pll extension in oracle?
Can we connect to ORACLE db using Windows Authentication?
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'));
How many categories of data types in oracle?
How to write a query with a full outer join in oracle?
How do I call oracle stored procedures that take no parameters?
What is a package in oracle?
what is the difference between no rows returned and null returned?
which clause we are not used in where clause?
Explain oracle left join with an example?