How can we mathematically prove 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:
Assume department1 has 10 employees with salary "$1". department2 has 25 employees with salary "$2". Average value over 10 Ã $1 + 20 Ã $2 = $50 / 30 employees = $1.66 But if we only count one instance of each distinct department & salary, then: Average value over 1 Ã $1 + 1 Ã $2 = $3 / 2 employees = $1.5 You can try SELECT AVG(DISTINCT salary), but this is yet another way of calculating the average: if there's a department3 which also has salary "$2" it wouldn't count toward the average because it would be subsumed by the same salary value in department2. Each distinct salary value is counted only once, regardless of how many departments it occurs in. Re your comment: I was using a proof by http://en.wikipedia.org/wiki/Counterexample. This is a common way to invalidate a logical statement. I'm not sure we can come up with an easy hint that a nested query needs to stay nested. You just have to follow the logic and see if would be guaranteed to give the same results if it were not nested.
Bill Karwin at Quora Visit the source
Other answers
SQL is basically a user-friendly syntax for http://en.wikipedia.org/wiki/Relational_algebra, which is a mathematically well-defined algebra of sets. If you want to prove anything about a query, that's where you should start.
Justin Rising
1. You define the language U which defines the set of unnested SQL queries. 2. You show for some property P that it is satisified by all queries expressible in U. 3. You show that this query does not satisfy P. Finding P is of course the tricky part.
Jan Hidders
Related Q & A:
- How Can I Get Started As A Freelance Web Developer?Best solution by code.tutsplus.com
- How to output XML from a regular SQL query?Best solution by Stack Overflow
- How can I transfer video from a dvr box to a computer?Best solution by Yahoo! Answers
- How can I print wirelessly from a laptop to a printer without a router?Best solution by answers.yahoo.com
- How can I record directly from a keyboard onto a computer?Best solution by eHow old
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.