About 4,860,000 results
Open links in new tab
  1. datetime - Python Timezone conversion - Stack Overflow

    Jun 12, 2012 · 20 Time conversion To convert a time in one timezone to another timezone in Python, you could use datetime.astimezone (): so, below code is to convert the local time to other time zone. …

  2. How do you convert a datetime/timestamp from one timezone to …

    Aug 13, 2015 · Specifically, given the timezone of my server (system time perspective) and a timezone input, how do I calculate the system time as if it were in that new timezone (regardless of daylight …

  3. java - Timezone conversion - Stack Overflow

    Jul 4, 2011 · To convert any time to the specific timezone (for example: UTC -> local timezone and vise versa) with any time pattern you can use java.time library. This method will take time patterns …

  4. sql server - Convert datetime value from one timezone to UTC …

    Sep 27, 2016 · 40 Timezone and timezone offset are two different things. A timezone can have different offsets if daylight savings time is used. Timezone support was added to SQL Server in the latest …

  5. Convert Date/Time for given Timezone - java - Stack Overflow

    Oct 6, 2011 · I want to convert this GMT time stamp to GMT+13: 2011-10-06 03:35:05 I have tried about 100 different combinations of DateFormat, TimeZone, Date, GregorianCalendar etc. to try to do this …

  6. BigQuery converting to a different timezone - Stack Overflow

    Sep 19, 2012 · I don't see the timezone conversion function here: Does anyone know how I can do this in bigquery? i.e. how do i group by after converting the timestamp to a different timezone?

  7. Converting Between Timezones in Postgres - Stack Overflow

    Jan 3, 2018 · You're right, that wasn't very helpful on re-reading your question (my apologies for that). There is a thorough answer at timezones but it didn't seem to address the implicit string -> timestamp …

  8. Convert date to another timezone in JavaScript - Stack Overflow

    Apr 10, 2012 · I am looking for a function to convert date in one timezone to another. It need two parameters, date (in format "2012/04/10 10:10:30 +0000") timezone string ("Asia/Jakarta") The …

  9. timezone - Converting a column containing UTC values to EST values in ...

    Mar 23, 2022 · SELECT LOAD_DATE_UTC, CAST(LOAD_DATE_UTC AS TIMESTAMP_LTZ(9)) AS LOAD_DATE_EST FROM TABLE_A The above approach seem to be returning the same value as …

  10. Timezone conversion in a Google Sheets with DST (Daylight savings)

    I know this looks simple. In a Google spreadsheet, I have a column where I enter time in one timezone (GMT) And another column should automatically get time in another time zone (Pacific Time) GMT ...