How do I update a table to subtract 5 hours from the “start_date” timestamp ?
Thank you E
How do I update a table to subtract 5 hours from the “start_date” timestamp ?
Thank you E
UPDATE daTable SET start_date = start_date - INTERVAL 5 HOUR
Thank you! I knew there had to be a simple way to do this. E