blob: 106e015dfa70d3b84d473c9aacc2f6ce824ade80 [file] [log] [blame] [view]
---
{
"title": "MICROSECONDS_ADD",
"language": "en"
}
---
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
## microseconds_add
### description
#### Syntax
`DATETIMEV2 microseconds_add(DATETIMEV2 basetime, INT delta)`
- basetime: Base time whose type is DATETIMEV2
- delta: Microseconds to add to basetime
- Return type of this function is DATETIMEV2
### example
```
mysql> select now(3), microseconds_add(now(3), 100000);
+-------------------------+----------------------------------+
| now(3) | microseconds_add(now(3), 100000) |
+-------------------------+----------------------------------+
| 2023-02-21 11:35:56.556 | 2023-02-21 11:35:56.656 |
+-------------------------+----------------------------------+
```
`now(3)` returns current time as type DATETIMEV2 with precision 3d`microseconds_add(now(3), 100000)` means 100000 microseconds after current time
### keywords
microseconds_add