In MySQL there is function called CONVERT_TZ(dt,from_tz,to_tz)
which converts one timezone to another timezone -Reference-.
I had used CONVERT(datetime,SWITCHOFFSET(CONVERT(datetimeoffset,getdate()),'+05:30'))
this function is taking "+00:00" timezone offset which I don't wanted.
Is there any function in the SQL or any other way to convert timezone in SQL Server?