| CREATE TABLE "rooms" ( | |
| "roomid" text, | |
| "roomname" text, | |
| "beds" integer, | |
| "bedtype" text, | |
| "maxoccupancy" integer, | |
| "baseprice" integer, | |
| "decor" text | |
| ); | |
| INSERT INTO rooms VALUES ("aob", "recluse and defiance", 1, "king", 2, 150, "modern"); | |
| INSERT INTO rooms VALUES ("cas", "interim but salutary", 1, "king", 2, 150, "traditional"); | |
| INSERT INTO rooms VALUES ("fna", "abscond or bolster", 2, "queen", 4, 175, "traditional"); | |
| INSERT INTO rooms VALUES ("hbb", "mendicant with cryptic", 2, "double", 4, 125, "modern"); | |
| INSERT INTO rooms VALUES ("ibd", "harbinger but bequest", 1, "queen", 2, 100, "modern"); | |
| INSERT INTO rooms VALUES ("ibs", "immutable before decorum", 2, "queen", 4, 150, "rustic"); | |
| INSERT INTO rooms VALUES ("mwc", "thrift and accolade", 1, "double", 2, 75, "modern"); | |
| INSERT INTO rooms VALUES ("rnd", "convoke and sanguine", 2, "king", 4, 175, "traditional"); | |
| INSERT INTO rooms VALUES ("rte", "riddle to exculpate", 2, "queen", 4, 175, "rustic"); | |
| INSERT INTO rooms VALUES ("taa", "frugal not apropos", 2, "king", 4, 250, "traditional"); | |
| CREATE TABLE "reservations" ( | |
| "code" integer, | |
| "room" text, | |
| "checkin" text, | |
| "checkout" text, | |
| "rate" real, | |
| "lastname" text, | |
| "firstname" text, | |
| "adults" integer, | |
| "kids" integer | |
| ); | |
| INSERT INTO reservations VALUES (10105, "hbb", "23-oct-10", "25-oct-10", 100.0, "selbig", "conrad", 1, 0); | |
| INSERT INTO reservations VALUES (10183, "ibd", "19-sep-10", "20-sep-10", 150.0, "gabler", "dollie", 2, 0); | |
| INSERT INTO reservations VALUES (10449, "rnd", "30-sep-10", "01-oct-10", 150.0, "kless", "nelson", 1, 0); | |
| INSERT INTO reservations VALUES (10489, "aob", "02-feb-10", "05-feb-10", 218.75, "caristo", "markita", 2, 1); | |
| INSERT INTO reservations VALUES (10500, "hbb", "11-aug-10", "12-aug-10", 90.0, "yessios", "annis", 1, 0); | |
| INSERT INTO reservations VALUES (10574, "fna", "26-nov-10", "03-dec-10", 287.5, "sweazy", "roy", 2, 1); | |
| INSERT INTO reservations VALUES (10984, "aob", "28-dec-10", "01-jan-11", 201.25, "zullo", "willy", 2, 1); | |
| INSERT INTO reservations VALUES (10990, "cas", "21-sep-10", "27-sep-10", 175.0, "trachsel", "damien", 1, 3); | |
| INSERT INTO reservations VALUES (11631, "fna", "10-apr-10", "12-apr-10", 312.5, "espino", "marcelina", 2, 1); | |
| INSERT INTO reservations VALUES (11645, "ibd", "13-may-10", "19-may-10", 135.0, "swait", "dan", 2, 1); | |
| INSERT INTO reservations VALUES (11703, "ibd", "10-sep-10", "11-sep-10", 172.5, "havis", "sherilyn", 2, 0); | |
| INSERT INTO reservations VALUES (11718, "cas", "18-mar-10", "19-mar-10", 157.5, "gliwski", "dan", 2, 1); | |
| INSERT INTO reservations VALUES (11857, "ibd", "27-oct-10", "29-oct-10", 187.5, "hardina", "lorita", 4, 0); | |
| INSERT INTO reservations VALUES (11996, "ibs", "14-sep-10", "16-sep-10", 187.5, "burbank", "robert", 1, 0); | |
| INSERT INTO reservations VALUES (12085, "ibd", "04-sep-10", "08-sep-10", 135.0, "glasglow", "emmanuel", 2, 0); | |
| INSERT INTO reservations VALUES (12138, "ibs", "28-feb-10", "05-mar-10", 150.0, "shariat", "jarred", 1, 0); | |
| INSERT INTO reservations VALUES (12142, "rte", "13-aug-10", "23-aug-10", 175.0, "junor", "lenny", 3, 1); | |
| INSERT INTO reservations VALUES (12258, "aob", "23-apr-10", "27-apr-10", 175.0, "kannel", "rodger", 1, 0); | |
| INSERT INTO reservations VALUES (12631, "cas", "24-apr-10", "26-apr-10", 175.0, "oneel", "pasquale", 1, 0); | |
| INSERT INTO reservations VALUES (12686, "hbb", "22-jul-10", "25-jul-10", 85.0, "growney", "melvin", 2, 0); | |
| INSERT INTO reservations VALUES (13058, "aob", "17-aug-10", "18-aug-10", 157.5, "abatiell", "cathryn", 1, 2); | |
| INSERT INTO reservations VALUES (13136, "ibd", "16-apr-10", "17-apr-10", 187.5, "feyler", "emilia", 1, 0); | |
| INSERT INTO reservations VALUES (13192, "cas", "08-may-10", "15-may-10", 175.0, "mccorvey", "jesus", 1, 0); | |
| INSERT INTO reservations VALUES (13205, "fna", "14-mar-10", "18-mar-10", 250.0, "vandoren", "major", 1, 0); | |
| INSERT INTO reservations VALUES (13972, "taa", "22-feb-10", "25-feb-10", 67.5, "daya", "corey", 2, 0); | |
| INSERT INTO reservations VALUES (14001, "ibs", "11-may-10", "12-may-10", 187.5, "coston", "lanny", 1, 0); | |
| INSERT INTO reservations VALUES (14149, "ibd", "20-sep-10", "22-sep-10", 150.0, "houlihan", "levi", 2, 1); | |
| INSERT INTO reservations VALUES (14226, "ibd", "11-jan-10", "12-jan-10", 150.0, "schoenhut", "vernice", 2, 1); | |
| INSERT INTO reservations VALUES (14273, "mwc", "28-may-10", "30-may-10", 125.0, "stare", "elijah", 1, 0); | |
| INSERT INTO reservations VALUES (14447, "rte", "14-mar-10", "18-mar-10", 201.25, "maasch", "charissa", 2, 0); | |
| INSERT INTO reservations VALUES (14644, "cas", "23-apr-10", "24-apr-10", 148.75, "volante", "emery", 4, 0); | |
| INSERT INTO reservations VALUES (14678, "ibd", "28-jan-10", "30-jan-10", 150.0, "saterfield", "francisco", 3, 1); | |
| INSERT INTO reservations VALUES (14834, "fna", "07-feb-10", "13-feb-10", 225.0, "wittrock", "debbie", 1, 2); | |
| INSERT INTO reservations VALUES (14845, "rnd", "27-sep-10", "30-sep-10", 150.0, "rotch", "florida", 1, 1); | |
| INSERT INTO reservations VALUES (14896, "rte", "04-jul-10", "06-jul-10", 148.75, "kudron", "catherin", 1, 1); | |
| INSERT INTO reservations VALUES (14940, "aob", "01-jun-10", "12-jun-10", 175.0, "bishoff", "isreal", 2, 0); | |
| INSERT INTO reservations VALUES (15059, "cas", "31-aug-10", "07-sep-10", 157.5, "lerch", "nicky", 3, 1); | |
| INSERT INTO reservations VALUES (15192, "rte", "22-sep-10", "23-sep-10", 175.0, "jeffryes", "danilo", 1, 0); | |
| INSERT INTO reservations VALUES (15428, "rte", "25-sep-10", "27-sep-10", 175.0, "brookshear", "napoleon", 2, 0); | |
| INSERT INTO reservations VALUES (15534, "rnd", "28-aug-10", "01-sep-10", 150.0, "gaud", "reinaldo", 1, 0); | |
| INSERT INTO reservations VALUES (15733, "ibs", "11-feb-10", "13-feb-10", 172.5, "bealle", "rashad", 1, 0); | |
| INSERT INTO reservations VALUES (15870, "aob", "15-feb-10", "19-feb-10", 175.0, "coriaty", "berta", 1, 3); | |
| INSERT INTO reservations VALUES (16061, "fna", "11-sep-10", "14-sep-10", 312.5, "endler", "odis", 2, 1); | |
| INSERT INTO reservations VALUES (16136, "mwc", "09-jul-10", "12-jul-10", 143.75, "ference", "morgan", 1, 0); | |
| INSERT INTO reservations VALUES (16234, "cas", "15-nov-10", "16-nov-10", 157.5, "grabill", "julee", 2, 0); | |
| INSERT INTO reservations VALUES (16693, "taa", "17-oct-10", "18-oct-10", 67.5, "ashcroft", "ronald", 1, 0); | |
| INSERT INTO reservations VALUES (16748, "rnd", "21-feb-10", "23-feb-10", 135.0, "klimko", "donte", 1, 0); | |
| INSERT INTO reservations VALUES (16933, "ibs", "01-apr-10", "03-apr-10", 150.0, "norsworthy", "aubrey", 2, 0); | |
| INSERT INTO reservations VALUES (17222, "ibd", "28-jul-10", "07-aug-10", 150.0, "bohman", "layne", 1, 3); | |
| INSERT INTO reservations VALUES (17265, "aob", "01-jan-10", "06-jan-10", 175.0, "henly", "rupert", 4, 0); | |
| INSERT INTO reservations VALUES (17270, "aob", "20-aug-10", "23-aug-10", 175.0, "rellihan", "courtney", 1, 0); | |
| INSERT INTO reservations VALUES (17338, "fna", "04-jul-10", "05-jul-10", 287.5, "ruby", "quentin", 2, 2); | |
| INSERT INTO reservations VALUES (17344, "aob", "25-may-10", "26-may-10", 218.75, "galow", "rickey", 1, 1); | |
| INSERT INTO reservations VALUES (17405, "ibd", "02-oct-10", "03-oct-10", 127.5, "kester", "kizzy", 3, 1); | |
| INSERT INTO reservations VALUES (17480, "rte", "22-dec-10", "28-dec-10", 157.5, "debardelaben", "nell", 3, 0); | |
| INSERT INTO reservations VALUES (17672, "hbb", "21-dec-10", "22-dec-10", 90.0, "dechellis", "aaron", 1, 0); | |
| INSERT INTO reservations VALUES (17955, "aob", "05-may-10", "09-may-10", 201.25, "panarello", "todd", 2, 0); | |
| INSERT INTO reservations VALUES (18019, "hbb", "03-may-10", "05-may-10", 115.0, "arndell", "jefferey", 1, 1); | |
| INSERT INTO reservations VALUES (18311, "mwc", "27-jul-10", "31-jul-10", 125.0, "luedke", "brynn", 1, 1); | |
| INSERT INTO reservations VALUES (18398, "rte", "23-aug-10", "24-aug-10", 175.0, "paragas", "alvin", 1, 1); | |
| INSERT INTO reservations VALUES (18465, "aob", "30-jun-10", "07-jul-10", 175.0, "kriegh", "amado", 2, 0); | |
| INSERT INTO reservations VALUES (18822, "rnd", "12-jun-10", "14-jun-10", 150.0, "norn", "garland", 2, 0); | |
| INSERT INTO reservations VALUES (18834, "aob", "08-dec-10", "10-dec-10", 148.75, "ducharme", "miguelina", 2, 0); | |
| INSERT INTO reservations VALUES (18900, "ibs", "03-apr-10", "05-apr-10", 172.5, "laury", "emily", 2, 0); | |
| INSERT INTO reservations VALUES (19017, "taa", "18-aug-10", "30-aug-10", 86.25, "eerkes", "cody", 2, 0); | |
| INSERT INTO reservations VALUES (19194, "hbb", "29-oct-10", "05-nov-10", 125.0, "workinger", "clifton", 1, 0); | |
| INSERT INTO reservations VALUES (19394, "ibd", "23-may-10", "25-may-10", 150.0, "harpe", "german", 1, 2); | |
| INSERT INTO reservations VALUES (19494, "fna", "12-jun-10", "19-jun-10", 287.5, "vorwerk", "dorine", 1, 0); | |
| INSERT INTO reservations VALUES (19701, "rte", "14-nov-10", "15-nov-10", 201.25, "hotelling", "regenia", 1, 0); | |
| INSERT INTO reservations VALUES (19812, "cas", "14-aug-10", "15-aug-10", 157.5, "mccarter", "ivan", 3, 1); | |
| INSERT INTO reservations VALUES (20107, "ibd", "14-apr-10", "16-apr-10", 135.0, "arbuckle", "lorena", 2, 1); | |
| INSERT INTO reservations VALUES (20269, "ibd", "12-aug-10", "19-aug-10", 135.0, "billick", "nieves", 1, 0); | |
| INSERT INTO reservations VALUES (20463, "taa", "19-oct-10", "22-oct-10", 75.0, "vanblaricum", "cristie", 1, 1); | |
| INSERT INTO reservations VALUES (20572, "hbb", "28-sep-10", "29-sep-10", 115.0, "sandler", "jenise", 2, 0); | |
| INSERT INTO reservations VALUES (20991, "cas", "19-mar-10", "01-apr-10", 201.25, "plymel", "stephen", 1, 0); | |
| INSERT INTO reservations VALUES (21050, "cas", "11-jul-10", "17-jul-10", 175.0, "chatterjee", "alfred", 3, 0); | |
| INSERT INTO reservations VALUES (21202, "hbb", "21-oct-10", "23-oct-10", 125.0, "casagranda", "brain", 2, 0); | |
| INSERT INTO reservations VALUES (21216, "cas", "03-oct-10", "04-oct-10", 201.25, "vannaman", "erich", 1, 0); | |
| INSERT INTO reservations VALUES (21490, "rte", "23-nov-10", "24-nov-10", 175.0, "pavlock", "marcelo", 2, 2); | |
| INSERT INTO reservations VALUES (21553, "rnd", "01-may-10", "05-may-10", 172.5, "mechling", "kerri", 1, 0); | |
| INSERT INTO reservations VALUES (21625, "ibd", "03-oct-10", "14-oct-10", 187.5, "bose", "francisco", 1, 2); | |
| INSERT INTO reservations VALUES (21848, "mwc", "17-oct-10", "18-oct-10", 112.5, "cloffi", "charolette", 1, 0); | |
| INSERT INTO reservations VALUES (21863, "cas", "07-sep-10", "08-sep-10", 175.0, "argote", "odelia", 1, 0); | |
| INSERT INTO reservations VALUES (21980, "hbb", "05-feb-10", "08-feb-10", 115.0, "siddell", "macy", 1, 1); | |
| INSERT INTO reservations VALUES (22169, "fna", "06-apr-10", "07-apr-10", 287.5, "schul", "hoyt", 1, 0); | |
| INSERT INTO reservations VALUES (22561, "ibs", "15-nov-10", "21-nov-10", 127.5, "vuturo", "devorah", 1, 0); | |
| INSERT INTO reservations VALUES (22615, "fna", "09-aug-10", "10-aug-10", 212.5, "quispe", "margarito", 1, 1); | |
| INSERT INTO reservations VALUES (22954, "rte", "27-jun-10", "04-jul-10", 157.5, "allaire", "ramona", 1, 1); | |
| INSERT INTO reservations VALUES (22981, "ibs", "21-jul-10", "23-jul-10", 172.5, "knerien", "grant", 1, 0); | |
| INSERT INTO reservations VALUES (23302, "fna", "21-aug-10", "22-aug-10", 287.5, "constable", "rashad", 1, 2); | |
| INSERT INTO reservations VALUES (23740, "rte", "07-mar-10", "12-mar-10", 218.75, "nowley", "romeo", 2, 0); | |
| INSERT INTO reservations VALUES (23850, "rnd", "11-apr-10", "17-apr-10", 150.0, "pennella", "lakia", 2, 0); | |
| INSERT INTO reservations VALUES (24300, "aob", "09-aug-10", "15-aug-10", 201.25, "candon", "pierre", 4, 0); | |
| INSERT INTO reservations VALUES (24326, "ibd", "19-aug-10", "21-aug-10", 135.0, "culmer", "lloyd", 1, 3); | |
| INSERT INTO reservations VALUES (24408, "hbb", "18-jan-10", "19-jan-10", 100.0, "radin", "rusty", 1, 0); | |
| INSERT INTO reservations VALUES (24412, "rte", "23-jan-10", "30-jan-10", 175.0, "penez", "amiee", 2, 0); | |
| INSERT INTO reservations VALUES (24420, "taa", "03-mar-10", "12-mar-10", 75.0, "schlesser", "floyd", 1, 1); | |
| INSERT INTO reservations VALUES (24667, "rnd", "08-dec-10", "09-dec-10", 187.5, "bauguess", "eryn", 1, 0); | |
| INSERT INTO reservations VALUES (24980, "cas", "07-jan-10", "08-jan-10", 201.25, "grondahl", "elvina", 1, 0); | |
| INSERT INTO reservations VALUES (24986, "ibd", "30-aug-10", "01-sep-10", 150.0, "heath", "pasquale", 4, 0); | |
| COMMIT; | |