MySQL trying to select the same column twice, but it only returns the value once (no join)
What I am trying to do is to get the same column result twice with a single query. SELECT appellation FROM persona WHERE character_id IN (853,12,853) ORDER BY FIELD(character_id,853,12,853) This returns the result: character_id | appellation --------------------------- 853 | John…