My previous question was marked as duplicate but I can't find the answer I'm looking for in there likely because my case is more complex.
If necessary I'll make a SqlFiddle but for now the question is that I am doing something like this:
Select if(A.Value>10,concat(A.Field1,B.FIeld),concat(A.Field1,C.Field1))
from A
Inner Join B on A.Field3=B.Field3
Inner Join C on A.Field3=C.Field3
Trying to use any of the options from the dupe question I point to fails as it means I'm doing another join to this select which, at least for me is impossible and my ultimate update goal here is:
Update A set Display=(Select if(A.Value>10,concat(A.Field1,B.FIeld),concat(A.Field1,C.Field1))
from A
Inner Join B on A.Field3=B.Field3
Inner Join C on A.Field3=C.Field3)