CREATE TABLE "company" ( "company_id" integer, "rank" integer, "company" text, "headquarters" text, "main_industry" text, "sales_billion" real, "profits_billion" real, "assets_billion" real, "market_value" real ); INSERT INTO company VALUES (1, 1, "exxonmobil", "usa", "oil and gas", 433.5, 41.1, 331.1, 407.4); INSERT INTO company VALUES (2, 3, "general electric", "usa", "conglomerate", 147.3, 14.2, 717.2, 213.7); INSERT INTO company VALUES (3, 4, "royal dutch shell", "netherlands", "oil and gas", 470.2, 30.9, 340.5, 227.6); INSERT INTO company VALUES (4, 5, "industrial and commercial bank of china", "china", "banking", 82.6, 25.1, 2039.1, 237.4); INSERT INTO company VALUES (5, 6, "hsbc", "uk", "banking", 102.0, 16.2, 2550.0, 164.3); INSERT INTO company VALUES (6, 7, "petrochina", "china", "oil and gas", 310.1, 20.6, 304.7, 294.7); INSERT INTO company VALUES (7, 8, "berkshire hathaway", "usa", "conglomerate", 143.7, 10.3, 392.6, 202.2); INSERT INTO company VALUES (8, 9, "wells fargo", "usa", "banking", 87.6, 15.9, 1313.9, 178.7); INSERT INTO company VALUES (9, 10, "petrobras", "brazil", "oil and gas", 145.9, 20.1, 319.4, 180.0); INSERT INTO company VALUES (10, 11, "bp", "uk", "oil and gas", 375.5, 25.7, 292.5, 147.4); CREATE TABLE "gas_station" ( "station_id" integer, "open_year" integer, "location" text, "manager_name" text, "vice_manager_name" text, "representative_name" text ); INSERT INTO gas_station VALUES (1, 1998, "herne hill", "brianwingrave", "russell denman", "clive burr"); INSERT INTO gas_station VALUES (2, 1999, "channel hill", "simonmarloe", "russell brown", "rob jefferies"); INSERT INTO gas_station VALUES (3, 2000, "reading north", "simon cope derek marloe", "james colin", "dave edwards roger"); INSERT INTO gas_station VALUES (4, 2002, "herne st", "colin denman", "martin garnham", "ray hughes"); INSERT INTO gas_station VALUES (5, 2003, "reading", "colin denman", "martin freeman", "andrew russell"); INSERT INTO gas_station VALUES (6, 2004, "herne ave", "tom whit", "simon gaywood", "tony gibb"); INSERT INTO gas_station VALUES (7, 2005, "hennry hill", "bryan taylor", "james holland-leader", "simon gaywood"); INSERT INTO gas_station VALUES (8, 2006, "jane ave", "bryandenman", "james holland-leader", "simon gaywood"); INSERT INTO gas_station VALUES (9, 2007, "maindy hill", "tony bristow", "jamemarloe", "courtney rowe"); INSERT INTO gas_station VALUES (10, 2008, "maindy ave", "luke rowe", "tonybristow", "chris pyatt"); INSERT INTO gas_station VALUES (11, 2009, "newport rd", "jon rowe", "steve parsons", "tim read"); CREATE TABLE "station_company" ( "station_id" integer, "company_id" integer, "rank_of_the_year" integer ); INSERT INTO station_company VALUES (1, 3, 1); INSERT INTO station_company VALUES (4, 1, 2); INSERT INTO station_company VALUES (6, 6, 3); INSERT INTO station_company VALUES (7, 9, 4); INSERT INTO station_company VALUES (10, 10, 9); INSERT INTO station_company VALUES (11, 1, 13); COMMIT;