Bug #23156 | WITH clause for SELECT statement | ||
---|---|---|---|
Submitted: | 10 Oct 2006 21:49 | Modified: | 7 Nov 2009 9:20 |
Reporter: | Lee Stigile | Email Updates: | |
Status: | Duplicate | Impact on me: | |
Category: | MySQL Server: DML | Severity: | S4 (Feature request) |
Version: | 5.1 | OS: | Windows (Windows) |
Assigned to: | CPU Architecture: | Any | |
Tags: | temporary views |
[10 Oct 2006 21:49]
Lee Stigile
[11 Oct 2006 13:18]
Valeriy Kravchuk
Thank you for a reasonable feature request. Not sure that "Temporary view" is a right name, but your example explains what is needed. Same feature exists in Oracle also.
[17 Dec 2007 9:18]
Paul Lautman
Isn't this already covered by CREATE TEMPORARY TABLE
[3 Mar 2008 0:27]
Mat Lavoie
perhaps the example that was given was not the best to illustrate the benefit of the WITH clause. You can use it to perform recursive queries. look for "Creating a recursive common table expression" at this link http://searchsqlserver.techtarget.com/tip/0,289483,sid87_gci1299502,00.html I am running into the problem that it is very difficult to query a directed acyclic graph without this feature. For example getting the children of a node.
[13 May 2009 18:54]
Andrew Barnes
WITH clauses effectively create inline views, but the general idea is to define clauses that will be used two or more times. However there is no harm in defining a WITH clause that will only be used once - it can be easier to read if you are familiar with the format. Oracle has supported with WITH clause (AKA subquery factoring) since 9i R2: http://www.oracle-developer.net/display.php?id=212 MS SQL Server has supported the WITH clause (AKA Common Table Expressions) since v2005: http://msdn.microsoft.com/en-us/library/ms190766(SQL.90).aspx
[7 Nov 2009 9:20]
Valeriy Kravchuk
This is a duplicate of Bug #16244 actually.