Note: the code for deleting customer carts is in Zen Cart code for when a customer is deleted ...
PHP Code:
        $db->Execute("delete from " TABLE_CUSTOMERS_BASKET "
                      where customers_id = '" 
. (int)$customers_id "'");

        
$db->Execute("delete from " TABLE_CUSTOMERS_BASKET_ATTRIBUTES "
                      where customers_id = '" 
. (int)$customers_id "'");