Mysql
 sql >> Database >  >> RDS >> Mysql

Posso riutilizzare un'espressione in una query MySQL come variabile per un altro campo?

inserisci il primo calcolo in una tabella derivata:

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