I want to insert UTC Date into my SQL Server table date type, my query is failing and here is my that fails
Insert into Vendor(Vendor_id,Vendor_Name,LIC_START_DATE)
VALUES('12345','XYZ','2020-01-01Z');
LIC_START_DATE
is date type.
Could you please help on this.