Skip to content

Commit

Permalink
fixed order
Browse files Browse the repository at this point in the history
  • Loading branch information
mirnawong1 committed Jan 15, 2024
1 parent 4621394 commit c61a39b
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -338,33 +338,33 @@ Refer to the documentation for your adapter for specific timestamp information.
```

<Tabs>
<TabItem value="postgres" label="Sample output (PostgreSQL)">
<TabItem value="bq" label="Sample output (BigQuery)">

```sql
now()
current_timestamp()
```
</TabItem>

<TabItem value="snowflake" label="Sample output (Snowflake)">
<TabItem value="postgres" label="Sample output (PostgreSQL)">

```sql
convert_timezone('UTC', current_timestamp())
now()
```
</TabItem>

<TabItem value="bq" label="Sample output (BigQuery)">
<TabItem value="redshift" label="Sample output (Redshift)">

```sql
current_timestamp()
getdate()
```

</TabItem>

<TabItem value="redshift" label="Sample output (Redshift)">
<TabItem value="snowflake" label="Sample output (Snowflake)">

```sql
getdate()
convert_timezone('UTC', current_timestamp())
```

</TabItem>
</Tabs>

Expand Down

0 comments on commit c61a39b

Please sign in to comment.