What are good hints that a nested SQL query cannot be unnested?
-
For example, the following nested SQL query cannot be unnested: SELECT AVG(salary) FROM ( SELECT DISTINCT department, salary FROM emp )
-
Answer:
Why couldn't it be unnested? You're getting a distinct list of department and salary, but then you're averaging. The distinction implied by the department is not in any way referred to outside the sub-query. But, I get what you're saying. In general, if you're doing operations to aggregate or order the data in a way that's distinctive from the rest of the query, then you probably will need to write it in a sub-query.
Grant Fritchey at Quora Visit the source
Other answers
I could come up with thousands of examples... Here is just one I pulled out of my github repo that I use to seed a generic date dimension full of 20 years of data. I usually snowflake data dimensions in BI for drill down capabilities. You can imagine something similar to this for Week, Month, QTR, Year etc.... This of course is an Oracle specific implementation but I have similar ones for other mature db that can do recursive SQL. i.e. Postgres / SQLServer (though the SQLServer optimizer is not as fast with recursive SQL with larger data sets) etc. This example is interesting to me because it does not require a table and demonstrates an easy way to generate data with very little code. SELECT ROWNUM+999 DAY_DT_PK ,DAY_DT ,TO_CHAR(DAY_DT,'MM/DD/YYYY') DAY_CHAR_MMDDYYYY ,TO_CHAR(DAY_DT,'DDD') DAY_CHAR_DDD ,TO_CHAR(DAY_DT,'DD') DAY_CHAR_DD ,TO_CHAR(DAY_DT,'D') DAY_CHAR_D ,TO_CHAR(DAY_DT,'Day') DAY_CHAR_DAY ,TO_CHAR(DAY_DT,'DY') DAY_CHAR_DY FROM( SELECT (TRUNC(SYSDATE,'YEAR')+8000)-LEVEL DAY_DT FROM DUAL CONNECT BY LEVEL <= 10000 ORDER BY DAY_DT )A WHERE DAY_DT >= TO_DATE('20100101','YYYYMMDD') AND DAY_DT <= TO_DATE('20300101','YYYYMMDD')
Andrew Hansen
Related Q & A:
- How to output XML from a regular SQL query?Best solution by Stack Overflow
- What are good names for a catering company?Best solution by ChaCha
- What are good magazines for a wall collage?Best solution by Yahoo! Answers
- What are good camps for a 13-year-old?Best solution by mysummercamps.com
- What are good ideas for a party?Best solution by redbookmag.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.