Mysql
 sql >> Base de données >  >> RDS >> Mysql

Puis-je réutiliser une expression dans une requête MySQL comme variable pour un autre champ ?

poussez le premier calcul dans une table dérivée :

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