I have a table as follow:
staff_id | schedule
-------- | --------
1001 | 2020-01-02, 2020-01-09, 2020-01-16
1002 | 2020-01-05, 2020-01-12, 2020-01-19
I am expecting this table to look like following. What should be the query?
staff_id | schedule
-------- | --------
1001 | 2020-01-02
1001 | 2020-01-09
1001 | 2020-01-16
1002 | 2020-01-05
1002 | 2020-01-12
1002 | 2020-01-19