Valor máximo do mysql de 3 colunas diferentes

Existe alguma maneira de encontrar o valor máximo de 3 colunas diferentes? Eu estou tentando encontrar registros com qualquer valor de 3 colunas maior do que o valor especificado e tentando evitar fazer algo parecido com isso na consulta:

column1 > 69 or column2 > 69 or column3 > 69

A estrutura da tabela é assim:

id | column1 | column2 | column3
1  |   5     |    4    |    3
2  |  70     |    1    |    65
3  |  66     |    3    |    90

E selecione assim:

select id from tablex where column1 > 69 or column2 > 69 or column3 > 69

-- but with better query, a bit prettier like this (it doesn't work of course)

select id from tablex where MAX(column1, column2, column3) > 69

questionAnswers(2)

yourAnswerToTheQuestion