# MySQL dump 8.16
#
# Host: localhost    Database: sfdgDb
#--------------------------------------------------------
# Server version	3.23.43

#
# Table structure for table 'restaurant'
#

CREATE TABLE restaurant (
  id int(10) unsigned NOT NULL auto_increment,
  name varchar(40) NOT NULL default '',
  PRIMARY KEY  (id)
) TYPE=MyISAM;

#
# Dumping data for table 'restaurant'
#

INSERT INTO restaurant VALUES (1,'American Chopstick');
INSERT INTO restaurant VALUES (2,'Applebee\'s');
INSERT INTO restaurant VALUES (3,'Beijing Restaurant');
INSERT INTO restaurant VALUES (4,'Bombay House (4th Street)');
INSERT INTO restaurant VALUES (5,'ChiChi\'s');
INSERT INTO restaurant VALUES (6,'Chili\'s');
INSERT INTO restaurant VALUES (7,'China Cafe Express');
INSERT INTO restaurant VALUES (8,'Irish Lion');
INSERT INTO restaurant VALUES (9,'Macri\'s');
INSERT INTO restaurant VALUES (10,'Panera');
INSERT INTO restaurant VALUES (11,'Ryan\'s Steakhouse');
INSERT INTO restaurant VALUES (12,'Samira');
INSERT INTO restaurant VALUES (13,'Shanti (near MCPL)');
INSERT INTO restaurant VALUES (14,'Steak & Shake (near Borders)');
INSERT INTO restaurant VALUES (15,'Trojan Horse');

