Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Posso reutilizar uma expressão em uma consulta MySQL como variável para outro campo?


empurre o primeiro cálculo para uma tabela derivada:
select variable1
     , complex_function(variable1, other_column) as variable2
     , yet_another column
  from (select complex_operation as variable1
             , other_column
             , yet_another_column
          from whatever) dt