Upsert a lead
Updates or inserts a Lead record. This example demonstrates using the UPSERT INTO statement for Leads, updating based on unique fields like Email.
UPSERT INTO Leads(Last_Name, Email) VALUES('Patel','zpatel@abc.com') WITH(Output=1)
Updates or inserts a Lead record. This example demonstrates using the UPSERT INTO statement for Leads, updating based on unique fields like Email.
UPSERT INTO Leads(Last_Name, Email) VALUES('Patel','zpatel@abc.com') WITH(Output=1)