I have a table named calcu
id  date       name     s1       s2      s3     s4       min_value
1   2/10/2017  dicky    7        4       8      9       [4]
2   2/10/2017  acton    12      15       17     19      [15]
3   2/10/2017  adney    28      13       19     10      [13]
If I total all fields in a single date then the result will be
    2/10/2017           47      32      44      38
Here minimum value is 32. It means minimum value column is s2. That's why I input s2 field value in min_value field in table calcu respectively.
I need how will I complete min_value field through SQL query?
I am using MYSQL database.
Plz show SQL query and query result.