DeleteData

This function deletes rows in a Data Extension that exactly match the specified column name and value pairs. It returns the number of rows deleted by the operation.

Arguments

DeleteData(1,2,3,[4a,4b]...)

Ordinal Type Required Description
1 String True Data Extension from which to delete rows
2 String True Name of the column that identifies the row to delete
3 String True Value that identifies the row to delete
4a String False Additional column name that identifies the row to delete (see note)
4b String False Additional value that identifies the row to delete (see note)

NOTE: Additional pairs of columns and values can be appended as arguments.

NOTE: This function only works in a landing page, microsite page or CloudPage, or an SMS message in MobileConnect. Use DeleteDE if you need to delete rows from a Data Extension in an email.

Example 1

The following illustrates the use of this function with the minimum number of arguments.

Data Extension: LoyaltyMembers

Name Data Type Length Primary Key Nullable Default Value
EmailAddress EmailAddress 254 N N
SubscriberKey Text 254 Y N
FirstName Text 50 N Y
LastName Text 50 N Y
Created Date N Y Current Date

The LoyaltyMembers Data Extension includes these rows:

EmailAddress SubscriberKey FirstName LastName Created
doug@limedash.com 8473 Doug Smith 2017-10-21 12:01
suzy@limedash.com 5497 Suzy Jackson 2017-10-20 11:01
dale@limedash.com 7114 Dale Cameron 2017-10-19 10:01

Here is an example utilizing the preceding context:

%%[

var @deleteCount, @lookupValue

set @lookupValue = AttributeValue("emailaddr") /* value from attribute or DE column in send context */
set @lookupValue = "suzy@limedash.com" /* or a literal value */

set @deleteCount = DeleteData("LoyaltyMembers","EmailAddress", @lookupValue)

]%%
deleteCount: %%=v(@deleteCount)=%%

Output

deleteCount: 1

After the operation, the LoyaltyMembers Data Extension includes these rows:

EmailAddress SubscriberKey FirstName LastName Created
doug@limedash.com 8473 Doug Smith 2017-10-21 12:01
dale@limedash.com 7114 Dale Cameron 2017-10-19 10:01

Example 2


Not a subscriber? Subscribe now.