SQL Isn't my Forte, Some help from you experts would be amazing :)
Dataset:
Name of Product | Part Number | Size 1 | Size 2 | Size 3
------------------|----------------|-----------|---------|----------
Item1 | 12345 | 4 | 4 | 6
Item2 | 54321 | 4 | 5 | 4
Item3 | 54123 | 6 | 2 | 2
I need to return the highest value in the 3 sizes and aggregate them into a single column.
Item1 | 6
Item2 | 5
Item3 | 6
Googling has only lead me to the MAX() function, but it just returns the highest value in the dataset which is not what im after.