Skip to content
Advertisement

SQL alias for SELECT statement

I would like to do something like

Is it possible to somehow do the “AS my_select” part (i.e. assign an alias to a SELECT statement)?

(Note: This is a theoretical question. I realize that I can do it without assign an alias to a SELECT statement, but I would like to know whether I can do it with that.)

Advertisement

Answer

Not sure exactly what you try to denote with that syntax, but in almost all RDBMS-es you can use a subquery in the FROM clause (sometimes called an “inline-view”):

In advanced “enterprise” RDBMS-es (like oracle, SQL Server, postgresql) you can use common table expressions which allows you to refer to a query by name and reuse it even multiple times:

(example from http://msdn.microsoft.com/en-us/library/ms190766(v=sql.105).aspx)

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement