Knowledge Base

Snippets

12

Deleting guest account from Customer table:

SQL Query

DELETE Customer
FROM Customer
LEFT OUTER JOIN [Order] ON Customer.Id = [Order].CustomerId
WHERE ([Order].Id IS NULL) AND (Customer.Email IS NULL)

delete guest account - nopCommerce

Post Rating

Comments

There are currently no comments, be the first to post one!

Post Comment

Only registered users may post comments.