我在MS SQL中有如下语法: -
select DATEADD(WK, datediff(WK, **1**,'**2018-04-4**'), **1**);
这里我的approch是我通过startdate即(' 2018-04-4' )和工作日,即 1 基于此公式它是根据工作日给我当前的日期
2018-04-03 00:00:00.000
if i am passing **6** result is 2018-04-01 00:00:00.000
if i am passing **0** result is 2018-04-02 00:00:00.000
if i am passing **1** result is 2018-04-03 00:00:00.000
if i am passing **2** result is 2018-04-04 00:00:00.000
if i am passing **3** result is 2018-04-05 00:00:00.000
if i am passing **4** result is 2018-04-06 00:00:00.000
if i am passing **5** result is 2018-04-07 00:00:00.000
现在我的困难是我需要在MySQL中迁移它,并且它不能在那里工作。
请建议任何获得上述结果的解决方案。