well, use an advanced query.
DELETE FROM {CUSTOMERS} WHERE {CUSTOMERS}.[CUST_ZIP] LIKE '12'
if you want 12 be a variable, ad an input-parameters like Zip, and depending how you want to solve it, expand-inline or not..
with a like you probably do want expand inline, otherwise a simple one is the way
DELETE FROM {CUSTOMERS} WHERE {CUSTOMERS}.[CUST_ZIP] LIKE '12'
if you want 12 be a variable, ad an input-parameters like Zip, and depending how you want to solve it, expand-inline or not..
with a like you probably do want expand inline, otherwise a simple one is the way