Spaces:
Runtime error
Runtime error
File size: 8,928 Bytes
f6f97d8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 |
Generate SQL given the question and table to answer the question correctly. CREATE TABLE Fabrice Santoro( row_id int, name text, 2001 text, 2002 text, 2003 text, 2004 text, 2005 text, 2006 text, 2007 text, 2008 text, 2009 text, 2010 text, career\nsr text, wins int) /* 3 example rows: SELECT * FROM w LIMIT 3; row_id name 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 career\nsr wins 0 australian open 2r 1r 3r 2r 1r qf 3r 2r 3r 1r 0 / 18 22 1 french open 4r 2r 2r 3r 1r 1r 1r 2r 1r a 0 / 20 17 2 wimbledon 3r 2r 2r 2r 2r 2r 2r 1r 2r a 0 / 14 11 */ Q: did he win more at the australian open or indian wells? SQL: SELECT name FROM w WHERE name IN ('australian open', 'indian wells') ORDER BY wins DESC LIMIT 1 CREATE TABLE 2007 New Orleans Saints season( row_id int, week int, date text, opponent text, time text, game site text, tv text, result text, record text) /* 3 example rows: SELECT * FROM w LIMIT 3; row_id week date opponent time game site tv result record 0 1 2007-9-6 indianapolis colts t20:30 edt rca dome nbc l 0–1 1 2 2007-9-16 tampa bay buccaneers t13:0 edt raymond james stadium fox l 0–2 2 3 2007-9-24 tennessee titans t20:30 edt louisiana superdome espn l 0–3 */ Q: what number of games were lost at home? SQL: SELECT COUNT(*) FROM w WHERE result = 'l' AND `game site` = 'louisiana superdome' CREATE TABLE 2007 New Orleans Saints season( row_id int, week int, date text, opponent text, time text, game site text, tv text, result/score text, record text) /* 3 example rows: SELECT * FROM w LIMIT 3; row_id week date opponent time game site tv result/score record 0 1 2007-9-6 indianapolis colts t20:30 edt away nbc loss 0–1 1 2 2007-9-16 tampa bay buccaneers t13:0 edt home fox win 1-1 2 3 2007-9-24 tennessee titans t20:30 edt away espn loss 1-2 */ Q: what number of games were lost at home? SQL: SELECT COUNT(*) FROM w WHERE `result/score` = 'loss' AND `game site` = 'home' CREATE TABLE Electricity in Sri Lanka( row_id int, filledcolumnname text, 2005 int, 2006 int, 2007 int, 2008 int, 2009 int, 2010 int, 2011 int, 2012 int) /* 3 example rows: SELECT * FROM w LIMIT 3; row_id filledcolumnname 2005 2006 2007 2008 2009 2010 2011 2012 0 hydro power 1293 1316 1326 1357 1379 1382 1401 1584 1 thermal 1155 1155 1155 1285 1290 1390 1690 1638 2 other renewables 3 3 3 3 15 45 50 90 */ Q: did the hydro power increase or decrease from 2010 to 2012? SQL: SELECT CASE WHEN (SELECT `2010` FROM w WHERE filledcolumnname = 'hydro power') < (SELECT `2012` FROM w WHERE filledcolumnname = 'hydro power') THEN 'increase' ELSE 'decrease' END CREATE TABLE Portugal in the Eurovision Song Contest 1979( row_id int, draw int, artist text, song text, points int, place text) /* 3 example rows: SELECT * FROM w LIMIT 3; row_id draw artist song points place 0 1 gonzaga coutinho "tema para um homem só" 102 5th 1 2 pedro osório s.a.r.l. "uma canção comercial" 123 3rd 2 3 concha "qualquer dia, quem diria" 78 6th */ Q: who was the last draw? SQL: SELECT `artist` FROM w ORDER by `draw` desc LIMIT 1 CREATE TABLE GER Class N31( row_id int, year int, order text, quantity int, ger nos. text) /* 3 example rows: SELECT * FROM w LIMIT 3; row_id year order quantity ger nos. 0 1893 n31 1 999 1 1893 h33 10 979 2 1894 l33 10 989 */ Q: which had more ger numbers, 1898 or 1893? SQL: SELECT `year` FROM w WHERE `year` IN ( '1898' , '1893' ) GROUP by `year` ORDER by SUM (`ger nos.`) desc LIMIT 1 CREATE TABLE List of spans( row_id int, tramway text, country text, city text, height of pylons text, span width,\nleaning straight line text, span width,\nhorizontal measurement text, height of cable over ground text, year of inauguration text, notes text) /* 3 example rows: SELECT * FROM w LIMIT 3; row_id tramway country city height of pylons span width,\nleaning straight line span width,\nhorizontal measurement height of cable over ground year of inauguration notes 0 peak 2 peak gondola canada whistler 65m 3024 m 3019 m 436 m 2008 3s aerial tramway constructed by doppelmayr 1 hut of regensburg material transport aerial railway austria falbeson ? ? ? 430 m ? none 2 vanoise express france vanoise none 1850 m 1800 m 380 m 2003 none */ Q: was the sandia peak tramway innagurate before or after the 3s aerial tramway? SQL: SELECT ( SELECT `year of inauguration` FROM w WHERE `tramway` = 'sandia peak tramway' ) < ( SELECT `year of inauguration` FROM w WHERE `tramway` = '3s aerial tramway' ) CREATE TABLE World Artistic Gymnastics Championships – Women's floor( id int, year int, location text, gold text, silver text, bronze text) /* 3 example rows: SELECT * FROM w LIMIT 3; id year location gold silver bronze 0 1950 basel helena rakoczy tereza kočiš stefania reindlova 1 1954 rome tamara manina eva bosáková maria gorokovskaya 2 1958 moscow eva bosáková larisa latynina keiko tanaka */ Q: where were the championships held before the 1962 prague championships? SQL: SELECT `location` FROM w WHERE `year` < 1962 ORDER by `year` desc LIMIT 1 CREATE TABLE WSL World Heavyweight Championship( id int, wrestler: text, times: text, date: text, location: text, notes: text) /* 3 example rows: SELECT * FROM w LIMIT 3; id wrestler: times: date: location: notes: 0 jonnie stewart 1 1996-6-6 rochester, minnesota defeated larry gligorovich to win the awa superstars of wrestling world heavyweight championship. 1 king kong bundy 1 1999-3-31 oshkosh, wisconsin later stripped of the title by owner dale gagne. 2 the patriot; (danny dominion) 1 2000-7-29 pine bluff, arkansas defeated dale gagne in an impromptu match to win the title. */ Q: when did steve corino win his first wsl title? SQL: SELECT `date:` FROM w WHERE `wrestler:` = 'steve corino' ORDER by `date:` LIMIT 1 CREATE TABLE Płock Governorate( row_id int, language text, number int, percentage (%) text, males int, females int) /* 3 example rows: SELECT * FROM w LIMIT 3; row_id language number percentage (%) males females 0 polish 447685 80.86 216794 230891 1 yiddish 51215 9.25 24538 26677 2 german 35931 6.49 17409 18522 */ Q: how many male and female german speakers are there? SQL: SELECT `males` + `females` FROM w WHERE `language` = 'german' CREATE TABLE Shikoku Pilgrimage( row_id int, no. int, temple text, honzon (main image) text, city/town/village text, prefecture text) /* 3 example rows: SELECT * FROM w LIMIT 3; row_id no. temple honzon (main image) city/town/village prefecture 0 1 ryōzen-ji (霊山寺) shaka nyorai naruto tokushima prefecture 1 2 gokuraku-ji (極楽寺) amida nyorai naruto tokushima prefecture 2 3 konsen-ji (金泉寺) shaka nyorai itano tokushima prefecture */ Q: what is the difference in the number of temples between imabari and matsuyama? SQL: SELECT abs ( ( SELECT COUNT ( `temple` ) FROM w WHERE `city/town/village` = 'imabari' ) - ( SELECT COUNT ( `temple` ) FROM w WHERE `city/town/village` = 'matsuyama' ) ) CREATE TABLE Athletics at the 2001 Goodwill Games – Results( row_id int, rank real, name text, nationality text, time text) /* 3 example rows: SELECT * FROM w LIMIT 3; row_id rank name nationality time 0 nan brahim boulami morocco 2022-07-17 08:17:43 1 nan reuben kosgei kenya 2022-07-17 08:18:37 2 nan stephen cherono kenya 2022-07-17 08:19:58 */ Q: what counties had the least participants for the race? SQL: SELECT `nationality` FROM w GROUP by `nationality` having COUNT ( `name` ) = ( SELECT COUNT ( `name` ) FROM w GROUP by `nationality` ORDER by COUNT ( `name` ) asc LIMIT 1 ) CREATE TABLE Saint Helena, Ascension and Tristan da Cunha( row_id int, administrative\narea text, area\nkm2 real, area\nsq mi int, population int, administrative\ncentre text) /* 3 example rows: SELECT * FROM w LIMIT 3; row_id administrative\narea area\nkm2 area\nsq mi population administrative\ncentre 0 saint helena 122.0 47 5809 jamestown 1 ascension island 91.0 35 1532 georgetown 2 tristan da cunha 184.0 71 388 edinburgh of the 7 seas */ Q: is the are of saint helena more than that of nightingale island? SQL: SELECT ( SELECT `area\\nkm2` FROM w WHERE `administrative\\narea` = 'saint helena' ) > ( SELECT `area\\nkm2` FROM w WHERE `administrative\\narea` = 'nightingale island' ) CREATE TABLE The Boys (comics)( row_id int, # int, title text, tpb isbn text, tpb release date text, tpb page number int, collected material text) /* 3 example rows: SELECT * FROM w LIMIT 3; row_id # title tpb isbn tpb release date tpb page number collected material 0 1 the name of the game isbn 91-33-30546-3 2007-06-01 00:00:00 152 the boys #1-6 1 2 get some isbn 1-933305-68-1 2008-03-01 00:00:00 192 the boys #7–14 2 3 good for the soul isbn 1-933305-92-4 2008-10-01 00:00:00 192 the boys #15-22 */ Q: what title appears before "the self-preservation society"? SQL: SELECT `title` FROM w WHERE row_id = ( SELECT row_id FROM w WHERE `title` = 'the self-preservation society' ) - 1 |