If you're used to MS SQL's Cross Apply, then you may wonder how to accomplish the same thing in MySQL. I found the reverse question and thought the direct question may help anyone who'll ever search how to migrate this functionality from MS SQL to MySQL.
In this example, Cross Apply lets you modify a field and use the result within the very same query. The question is how to do it in MySQL.
SELECT v.Var1, POWER(v.Var1, 2) AS Var2Squared
FROM [Table] t
CROSS APPLY (SELECT t.Column1 + t.Column2 AS Var1) v
CROSS APPLY
particularly useful for joining on another table based on the maximum or minimum value of a field therein. At the moment I'm scratching my head (metaphorically speaking) for the best way to solve this problem in MySQL. – Saintebeuve