-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix the document of TO_DATE, TO_DAYS, year_floor, WEEKS_ADD, WEEKS_DIFF, WEEKS_SUB function #2197
Open
DongLiang-0
wants to merge
13
commits into
apache:master
Choose a base branch
from
DongLiang-0:function-doc
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,572
−631
Open
Changes from 10 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
da56cc1
TO_DATE
DongLiang-0 01a9448
TO_DAYS
DongLiang-0 2a237e7
year_floor
DongLiang-0 a3ad28d
WEEKS_ADD
DongLiang-0 c8211a0
WEEKS_DIFF
DongLiang-0 646455e
WEEKS_SUB
DongLiang-0 a9231e3
fix_to_date
DongLiang-0 ecc1042
fix_WEEKS_DIFF
DongLiang-0 eae380b
fix_WEEKS_SUB
DongLiang-0 188b8ff
fix_year_floor
DongLiang-0 bb0a4e5
fix WEEKS_SUB
DongLiang-0 3e4fd40
fix TO_DAYS
DongLiang-0 084ac46
fix WEEKS_ADD
DongLiang-0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,27 +24,45 @@ specific language governing permissions and limitations | |
under the License. | ||
--> | ||
|
||
## weeks_sub | ||
### description | ||
#### Syntax | ||
|
||
`DATETIME WEEKS_SUB(DATETIME date, INT weeks)` | ||
## Description | ||
Subtracts a specified number of weeks from a specified date or time value (i.e., subtracts weeks * 7 days). | ||
|
||
Subtracts a specified number of weeks from a datetime or date | ||
## Syntax | ||
```sql | ||
WEEKS_SUB(<date_value>, <week_period>) | ||
``` | ||
|
||
The parameter date can be DATETIME or DATE, and the return type is consistent with that of the parameter date. | ||
## Required parameters | ||
## 必选参数 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 多余的中文标题 |
||
| Parameter | Description | | ||
|-----------------|-----------------------------------------------------------------------------------------------------| | ||
| `date_value` | `DATE` or `DATETIME` type input value. | | ||
| `week_period` | Integer, representing the number of weeks to subtract (positive to decrease, negative to increase). | | ||
|
||
### example | ||
|
||
``` | ||
mysql> select weeks_sub("2020-02-02 02:02:02", 1); | ||
+-------------------------------------+ | ||
| weeks_sub('2020-02-02 02:02:02', 1) | | ||
+-------------------------------------+ | ||
| 2020-01-26 02:02:02 | | ||
+-------------------------------------+ | ||
``` | ||
## Example | ||
|
||
### keywords | ||
1. Subtract one week from the datetime `2020-02-02 02:02:02` | ||
```sql | ||
select weeks_sub("2020-02-02 02:02:02", 1); | ||
``` | ||
```text | ||
+-------------------------------------+ | ||
| weeks_sub('2020-02-02 02:02:02', 1) | | ||
+-------------------------------------+ | ||
| 2020-01-26 02:02:02 | | ||
+-------------------------------------+ | ||
``` | ||
|
||
WEEKS_SUB | ||
2. Subtract one week from the date `2020-02-02` | ||
```sql | ||
select weeks_sub("2020-02-02", 1); | ||
``` | ||
```text | ||
+--------------------------------------------+ | ||
| weeks_sub(cast('2020-02-02' as DATEV2), 1) | | ||
+--------------------------------------------+ | ||
| 2020-01-26 | | ||
+--------------------------------------------+ | ||
``` |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
缺少函数描述