Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2025 10:05 AM
Hello @nielsehlers!
As a workaround, you can use the from_utc_timestamp() function to convert UTC timestamps to your desired time zone before visualising:
SELECT from_utc_timestamp(column_name, 'Asia/Kolkata’) AS alias_name
FROM table_name;