We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31a332d commit 2bd3ff0Copy full SHA for 2bd3ff0
README.md
@@ -33,3 +33,18 @@ SELECT micros_at('next friday at 8:00 pm in America/New_York');
33
```
34
35
</details>
36
+
37
+<details>
38
39
+<summary>Example 3: Future Relative Date with a UTC Offset</summary>
40
41
+Calculates the timestamp for exactly 2 months from now, at midnight, in the `UTC-8` timezone.
42
43
+```sql
44
+SELECT when_is('in 2 months at midnight in UTC-8');
45
+SELECT seconds_at('in 2 months at midnight in UTC-8');
46
+SELECT millis_at('in 2 months at midnight in UTC-8');
47
+SELECT micros_at('in 2 months at midnight in UTC-8');
48
+```
49
50
+</details>
0 commit comments