For example, in such a dialect,
SELECT x FROM t ORDER BY x + y
would be illegal, but SELECT x, x + y AS z FROM t ORDER BY z
would be legal. MySQL, DB2 and Ingres are examples of such dialects.
@return Whether this Dialect can include expressions in the ORDER BYclause only by adding an expression to the SELECT clause and using its alias
|
|