# MySQL dump 7.1 # # Host: localhost Database: bank #-------------------------------------------------------- # Server version 3.22.32-shareware-debug # # Table structure for table 'hometown' # DROP TABLE IF EXISTS hometown; CREATE TABLE hometown ( username char(30), password char(30), balance float(10,2) ); # # Dumping data for table 'hometown' # LOCK TABLES hometown WRITE; INSERT INTO hometown VALUES ('john','pass',600.00),('bill','rosebud',9900.00),('joe','april',13.00); UNLOCK TABLES;