Modifying Data
The following code examples show how to use data modification statements.
Procedure for Updates
You can use sqlQuery method to execute data modification statements.
INSERT
To insert updates:
sqlQuery("INSERT INTO Leads (Email) VALUES ('John')")
UPDATE
To retrieve updates:
sqlQuery("UPDATE Leads SET Email = 'John' WHERE Email = '[email protected]'")
DELETE
To delete updates:
sqlQuery("DELETE FROM Leads WHERE Id = 'c2ef66a5-a545-413b-9312-79a53caadbc4'")