|
|
Webmaster posted on January 12, 2025 05:01
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
There are currently no comments, be the first to post one!