Har du prøvet at aliasere din tabel2-tabel og forbinde den to gange med Table_One som nedenfor?
SELECT
t1.PrimaryKey,
c1.ColumnA AS Column1,
c2.ColumnA AS Column2
FROM Table_One t1
JOIN Table_two c1 ON t1.Column1 = c1.ID
JOIN Table_two c2 ON t1.Column2 = c2.ID;