aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test/resources/golden/udf_date_add-1-efb60fcbd6d78ad35257fb1ec39ace2
blob: 3c91e138d7bd58b07ec943044c137d055398052b (plain) (blame)
1
2
3
4
5
date_add(start_date, num_days) - Returns the date that is num_days after start_date.
start_date is a string in the format 'yyyy-MM-dd HH:mm:ss' or 'yyyy-MM-dd'. num_days is a number. The time part of start_date is ignored.
Example:
   > SELECT date_add('2009-30-07', 1) FROM src LIMIT 1;
  '2009-31-07'