नोट
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप साइन इन करने या निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
Applies to:
Databricks SQL
Databricks Runtime
Returns the first date which is later than expr and named as in dayOfWeek.
Syntax
next_day(expr, dayOfWeek)
Arguments
expr: A DATE expression.dayOfWeek: A STRING expression identifying a day of the week.
Returns
A DATE.
dayOfWeek must be one of the following (case insensitive):
'SU','SUN','SUNDAY''MO','MON','MONDAY''TU','TUE','TUESDAY''WE','WED','WEDNESDAY''TH','THU','THURSDAY''FR','FRI','FRIDAY''SA','SAT','SATURDAY'
If dayOfWeek is not a recognized day name, Azure Databricks raises INVALID_PARAMETER_VALUE.
Note
In Databricks Runtime, if spark.sql.ansi.enabled is false, the function returns NULL instead of an error for a malformed dayOfWeek.
Common error conditions
Examples
> SELECT next_day('2015-01-14', 'TU');
2015-01-20
> SELECT next_day('2024-01-01', 'INVALID');
Error: INVALID_PARAMETER_VALUE