I have dates table below
DatesLookup table
| Monday | Friday |
| 2021-01-11 | 2021-01-22 |
| 2021-01-25 | 2021-02-05 |
| 2021-02-08 | 2021-02-19 |
| 2021-02-22 | 2021-03-05 |
and another table which contains "TimestampDates" column
I want to add another column where the "TimestampDates" column belongs to in a monday to friday range.
Output will be
| TimestampDates | Monday | Friday |
| 2021-02-03 | 2021-01-25 | 2021-02-05 |
| 2021-02-09 | 2021-02-08 | 2021-02-19 |