I did once, but I remember more how to proceed.
I do not know how to formulate the condition.
DELETE FROM [Entities]WHERE <Search Conditions,,>;GO
If you just want to delete customers you could use the query
DELETE FROM [Entities]
WHERE [EntityTypeId] = 1 (standard setup Customers where set to 1)
1 answers
If you just want to delete customers you could use the query
DELETE FROM [Entities]
WHERE [EntityTypeId] = 1 (standard setup Customers where set to 1)