Following are the timezone values :
SELECT * FROM sys.time_zone_info
In Javascript, how to populate and match the timezone at DB for calculation? I also have multiple timezones, also need to work in all browsers
Daylight saving also needs to be considered.
I need a dropdown at client side for timezone and that timezone should work with SQL server timezone info, so I can use the following query,
SELECT CONVERT(datetime,'20160101 00:00') AT TIME ZONE 'Cen. Australia Standard Time';
How can I auto select drop down base on browser timezone ?