
Announcements
When I tried to add an date to my SQL table from Power Automate, there is a 4 hours difference between my input and my output.
I don't understand why. I wanna save the time from the Coordinated Universal Time.
Here is how I created my Insert row:
Here is the result after I run the flow:
Here is how I created my SQL table:
CREATE TABLE last_email_sent (
id int IDENTITY(1,1) PRIMARY KEY,
date_sent_utc DATETIME2 NOT NULL
);