On the manage orders screen there is a delete button where you can delete the order, which essentially deletes the customer because a customer is never created in the cart without a corosponding order, but if you want to clear out your entire customer table, you can do one of the following SQL statments:
delete * from Smith_Customer
or
truncate table Smith_Customer
Thanks,
Christian