Advika
Community Manager
Community Manager

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;