如何找到一个月的第二个星期一
How to find second Monday of month
我需要找到一个月的第二个星期一,例如2021年9月,第二个星期一是13号
我如何在 Snowflake SQL.
中执行此操作
在单独的
上找到答案
select
extract(dow from current_date) = 1
and extract(day from current_date) between 8 and 14;
我需要找到一个月的第二个星期一,例如2021年9月,第二个星期一是13号 我如何在 Snowflake SQL.
中执行此操作在单独的
select
extract(dow from current_date) = 1
and extract(day from current_date) between 8 and 14;