I have a table with a column defined as TIMESTAMP(6). I need to do a mass conversion of all time values in this column from EST to GMT. How do I go about this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
How you apply this to your data depends in part on how much data you are talking about. It may be easer to use a MERGE INTO SQL statement into an empty table and then rename the tables. If it is for display purposes only you can just use a view to accomplish the conversion. Do you need to take into account Daylight Savings Time? The conversion might be a little trickier then. |
|||
|
|