I am looking to find the day of the week and time of the day in which a shopping center carpark is least occupied. I need to find the minimum value of multiple columns. So far I have been able to find the minimum value of each time column, but cannot find the minimum off all the times as a group.
Below is a small example of my table, the actual table is much larger. The percentages represent how occupied the shopping center carpark is at the respected time.
Example table: shopping_centre_carpark_occupancy;
Name | Day       | 4pm | 5pm | 6pm | 7pm 
     |           |     |     |     |
x    | Monday    |74%  | 55% | 25% | 15% 
y    | Tuesday   |87%  | 67% | 72% | 10%
z    | Wednesday |74%  | 80% | 85% | 76%
*The table structure cannot be changed
I need to find out what day of the week and time the carpark is least occupied. How can I find the minimum occupancy?
Thank you
 
     
    