I am trying to find an equivalent of DECODE function in MySQL. It works like this:
Select Name, DECODE(Age, 13,\'Thirteen\',14,\'Fourteen\',15,\'Fifte
You can use a CASE statement...however why don't you just create a table with an integer for ages between 0 and 150, a varchar for the written out age and then you can just join on that