This SO post details some benefits in performance regarding Derived vs. Temporary tables.
Other than performance, what situations exist for which a Derived table would not be appropriate.
One answer per post with an example would be helpful.
|
This SO post details some benefits in performance regarding Derived vs. Temporary tables. Other than performance, what situations exist for which a Derived table would not be appropriate. One answer per post with an example would be helpful. |
||||
|
|
I would prefer to do a self-join on a temporary table than a derived table.
Versus using a derived table, where you have to write the whole query twice:
But another solution is to use common table expressions which are slightly different from derived tables:
Provided you use a brand of database that supports this syntax (Microsoft, Oracle, IBM, PostgreSQL). |
|||
|
|
|
Scope might be one. I think temp tables can be made accessible to other transactions / processes, etc. Derived tables are limited to the block in which they are declared. |
|||
|
|
|
If you have to access the data in the temporary table in multiple queries it might be less costly to avoid generating the temp data repeatedly:
|
|||
|
|