SQL alias for SELECT statement
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”): SELECT.. FROM ( SELECT … FROM … ) my_select WHERE … In advanced “enterprise” RDBMS-es (like oracle, SQL Server, postgresql) you can use common table expressions … Read more