SELECT name as 'Customer Name' from Customer,Card WHERE Card.cid=Customer.id and Customer.city='beijing' group By cid HAVING sum(bal)=(SELECT SUM(bal) as max1 from Card,Customer WHERE Card.cid=Customer.id and Customer.city='beijing' GROUP BY cid ORDER BY max1 desc limit 1) ORDER BY name;