This should really be allowed - I do not understand why it is not.
SELECT *
FROM (
SELECT *
FROM MyTable
)
|
This should really be allowed - I do not understand why it is not.
|
|||||
|
|
In SQL Server it is allowed, but the inner select has to be given a name, such as:
When a name is not supplied it will throw an incorrect syntax error near ')' message. |
|||
|
|
|
If you add a table alias it should work:
|
|||
|
|
|
You are missing an 'alias' on the sub-query (I added an alias 'X' )
|
||||
|
|
|
There are at least two ways to accomplish this, but what you might be looking for is a Common Table Expression (CTE), introduced in SQL Server 2005. From the above link:
Alternately, you can create a View, which is a permanent table-shaped representation of a query that you can access by name:
|
|||||||
|