I have 3 columns with values ranging from 0.1 to 0.9. I want to create a calculated field in sql which would give an output 'Y' if any of the 3 columns has a value greater than 0.8, if not the output should be 'N'. Please see below example - Any help would be appreciated, thanks !
Table example

Many DBMS provides GREATEST() function to find a max value from given columns, so using it,
Note : you're mentioning only greater than 0.8 except equal to 0.8, so the below result looks different from yours.