inputs
stringlengths 291
3.71k
| targets
stringlengths 1
2.65k
|
---|---|
[ header: rank | name | nationality | time row 1 : None | sule utura | ethiopia | 15:38.70
row 2 : None | emebet anteneh men | ethiopia | 15:40.13
row 3 : None | pauline korikwiang | kenya | 15:40.93
row 4 : 4 | hyvin jepkemoi | kenya | 15:42.64
row 5 : 5 | esther ndiema | kenya | 15:43.48
row 6 : 6 | goytetom gebresil | ethiopia | 15:49.90
row 7 : 7 | angeline myiramsabimana | rwanda | 16:24.04
row 8 : 8 | mekdes weldu | eritrea | 16:42.69
row 9 : 9 | thandiwe nyathy | zimbabwe | 17:13.00 ] Execute this SQL based on the above table: select time - time - rank where rank = 6
|
-6.0
|
[ header: stage | date | route | terrain | length | winner row 1 : p | 1 july | fontenay-sous-bo | individual time trial | 6 km (3.7 mi) | eric vanderaerden (bel
row 2 : 1 | 2 july | nogent-sur-marne - | plain stage | 163 km (101 mi) | frits pirard (ned
row 3 : 2 | 3 july | soissons - fontaine-au- | team time trial | 100 km (62 mi) | mercier
row 4 : 3 | 4 july | valenciennes - rou | hilly stage | 152 km (94 mi) | rudy matthijs (bel)
row 5 : 4 | 5 july | roubaix - le havre | plain stage | 300 km (190 mi) | serge demierre (sui)
row 6 : 5 | 6 july | le havre - le mans | plain stage | 257 km (160 mi) | dominique gaigne (fra)
row 7 : 6 | 7 july | chateaubriant - nantes | individual time trial | 58 km (36 mi) | bert oosterbosch (
row 8 : 7 | 8 july | nantes - ile d' | plain stage | 216 km (134 mi) | riccardo magrini (ita
row 9 : 8 | 9 july | la rochelle - bordeaux | plain stage | 222 km (138 mi) | bert oosterbosch (
row 10 : 9 | 10 july | bordeaux - pau | plain stage | 207 km (129 mi) | philippe chevallier (fra
row 11 : 10 | 11 july | pau - bagneres-de | stage with mountain(s) | 201 km (125 mi) | robert millar (gbr
row 12 : 11 | 12 july | bagneres-de-luchon | plain stage | 177 km (110 mi) | regis clere (fra)
row 13 : 12 | 13 july | fleurance - roquefort | plain stage | 261 km (162 mi) | kim andersen (den)
row 14 : 13 | 14 july | roquefort-sur-s | hilly stage | 210 km (130 mi) | henk lubberding (n
row 15 : 14 | 15 july | aurillac - issoire | hilly stage | 149 km (93 mi) | pierre le bigaut (fra)
row 16 : 15 | 16 july | clermont-ferrand - | individual time trial | 16 km (9.9 mi) | angel arroyo (esp)
row 17 : 16 | 17 july | issoire - saint-etienne | hilly stage | 144 km (89 mi) | michel laurent (fra
row 18 : 17 | 18 july | la tour-du-pin - alpe | stage with mountain(s) | 223 km (139 mi) | peter winnen (ned)
row 19 : 18 | 20 july | le bourg-d'oisans | stage with mountain(s) | 247 km (153 mi) | jacques michaud (fra
row 20 : 19 | 21 july | morzine - avoria | individual time trial | 15 km (9.3 mi) | lucien van impe (bel)
row 21 : 20 | 22 july | morzine - dijon | plain stage | 291 km (181 mi) | philippe leleu (fr ] Execute this SQL based on the above table: select date where date != '22 july' and terrain = ( select terrain where date = '22 july' ) and winner = 'bert oosterbosch (ned)'
|
9 july
|
[ header: # | title | artist | highest pos. reached | weeks at no. 1 row 1 : 1 | "don't cry for me argentin | julie covington | 1 | 7
row 2 : 2 | "the way you that you do it" | pussyfoot | 1 | 7
row 3 : 3 | "i just want to be your everything" | andy gibb | 1 | 7
row 4 : 4 | "that's rock and roll" | shaun cassidy | 2 | None
row 5 : 5 | "living next door to alice" | smokie | 2 | None
row 6 : 6 | "i go to rio" | peter allen | 1 | 5
row 7 : 7 | "torn between two lovers" | mary mcgregor | 1 | 4
row 8 : 8 | "walk right in" | dr hook | 1 | 5
row 9 : 9 | "you're moving out today" | carole bayer sager | 1 | 4
row 10 : 10 | "if you leave me now" | chicago | 1 | 5 (pkd #1 in 76
row 11 : 11 | "don't give up on us" | david soul | 1 | 3
row 12 : 12 | "lido shuffle" / " | boz scaggs | 2 | None
row 13 : 13 | "you and me" | alice cooper | 2 | None
row 14 : 14 | "dance little lady dance" | tina charles | 4 | None
row 15 : 15 | "when i need you" | leo sayer | 8 | None
row 16 : 16 | "don't fall in love" | ferrets | 2 | None
row 17 : 17 | "i feel love" | donna summer | 1 | 1
row 18 : 18 | "help is on its way" | little river band | 1 | 1
row 19 : 19 | "you gotta get up and dance" | supercharge | 3 | None
row 20 : 20 | "mull of kintyre" | wings | 1 | 11 (pkd #1 in 77
row 21 : 21 | "don't leave me this way" | thelma houston | 6 | None
row 22 : 22 | "ain't gonna bump no more | joe tex | 2 | None
row 23 : 23 | "you're in my heart" | rod stewart | 1 | 1
row 24 : 24 | "ma baker" | boney m | 5 | None
row 25 : 25 | "lucille" | kenny rogers | 7 | None ] Execute this SQL based on the above table: select artist where artist in ( 'julie covington' , 'kentucky' ) order by highest pos. reached desc limit 1
|
julie covington
|
[ header: team | location | home ground | first year in qld cup | last year in qld cup | qld cup premierships row 1 : aspley broncos | brisbane | bishop park | 2007 | 2007 | nil
row 2 : brothers-valleys | brisbane | o'callaghan park | 2004 | 2004 | nil
row 3 : bundaberg grizzlies | bundaberg | salter oval | 1996 | 1998 | nil
row 4 : cairns cyclones | cairns | barlow park | 1996 | 2000 | nil
row 5 : central capras | rockhampton | browne park | 1996 | 1997 | nil
row 6 : gold coast vikings | gold coast | owen park and carrara stadium | 1998 | 1998 | nil
row 7 : logan scorpions | logan city | meakin park | 1996 | 2002 | nil
row 8 : mackay sea eagles | mackay | mackay junior rugby league ground | 1996 | 1996 | nil
row 9 : north queensland young guns | townsville | dairy farmers stadium | 2002 | 2007 | 2005
row 10 : past brothers | brisbane | corbett park, crosby park, | 1996 | 1998 | nil
row 11 : port moresby vipers | port moresby | lloyd robson oval | 1996 | 1997 | nil
row 12 : souths magpies | brisbane | davies park | 1996 | 2002 | nil
row 13 : sunshine coast falcons | sunshine coast | quad park | 1996 | 1996 | nil
row 14 : townsville stingers | townsville | dairy farmers stadium, townsville sports reserve | 1998 | 1998 | nil
row 15 : toowoomba clydesdales | toowoomba | athletic oval (clive berghofer | 1996 | 2006 | 1996, 2001
row 16 : wests panthers | brisbane | purtell park | 1996 | 2003 | nil ] Execute this SQL based on the above table: select qld cup premierships where first year in qld cup > 1996
|
nil, nil, nil, 2005, nil
|
[ header: singing position | song title | informal translation | act | percentage of votes | final position row 1 : 1 | das tut unheimlich weh | it hurts so much | jeanette biedermann | 12.2% | 4
row 2 : 2 | lover boy | None | carol bee | None | 7
row 3 : 3 | ein bißchen sonne, ein bi | a little sun, a little rain | patrick lindner | None | 6
row 4 : 4 | ich habe meine tage | i've got my period | megasuß | None | 8
row 5 : 5 | reise nach jerusalem - | journey to jerusalem | surpriz | 16.2% | 2
row 6 : 6 | heaven | None | elvin | None | 9
row 7 : 7 | hor den kindern einfach zu | just listen to the children | corinna may | 32.6% | 1 (dq)
row 8 : 8 | itsy bitsy spider | None | naima | None | 11
row 9 : 9 | bye bye bar | None | michael von der heide | None | 5
row 10 : 10 | lost in love | None | wind | None | 10
row 11 : 11 | together we're strong | None | cathrin | 15.9% | 3 ] Execute this SQL based on the above table: select singing position where singing position = 8
|
8.0
|
[ header: date | time | opponent | site | tv | result | attendance | record row 1 : 11/09/2013 | 2:00 pm | indiana institute of technology | emil and patricia jones | csu tv | w 74-51 | 369 | 1-0
row 2 : 11/16/2013 | 1:00 pm | at miami (oh) | millett hall • oxford | None | l 39-55 | 406 | 1-2
row 3 : 11/26/2013 | 7:00 pm | purdue calumet | emil and patricia jones | csu tv | l 62-68 | 279 | 1-5
row 4 : 12/01/2013 | 2:00 pm | western michigan | emil and patricia jones | csu tv | l 49-67 | 242 | 1-6
row 5 : 12/06/2013 | 3:30 pm | vs. valparaiso | savage arena • toledo, | None | l 50-74 | None | 1-7
row 6 : 12/07/2013 | 1:00 pm | vs. detroit | savage arena • toledo, | None | l 64-85 | None | 1-8
row 7 : 12/20/2013 | 6:00 pm | at southern illinois | siu arena • carbondale, il | None | w 55-51 | 405 | 2-8
row 8 : 12/31/2013 | 2:00 pm | loyola | emil and patricia jones | csu tv | l 63-77 | 316 | 2-10
row 9 : 01/02/2014 | 7:00 pm | seattle | emil and patricia jones | csu tv | l 58-85 | 202 | 2-11 (0-1)
row 10 : 01/04/2014 | 2:00 pm | idaho | emil and patricia jones | csu tv | l 42-92 | 200 | 2-12 (0-2)
row 11 : 01/08/2014 | 7:00 pm | indiana northwest | emil and patricia jones | csu tv | w 68-50 | 212 | 3-12
row 12 : 01/11/2014 | 2:00 pm | at umkc | municipal auditorium • kansas city | None | l 60-83 | 380 | 3-13 (0-3)
row 13 : 01/16/2014 | 7:00 pm | at new mexico state | pan american center • las cruces, | None | l 61-82 | 942 | 3-14 (0-4)
row 14 : 01/30/2014 | 8:00 pm | at grand canyon | gcu arena • phoenix, | cox7 | l 53-84 | 581 | 3-18 (0-8)
row 15 : 02/13/2014 | 7:00 pm | texas-pan american | emil and patricia jones | csu tv | l 52-75 | 207 | 3-20 (0-10)
row 16 : 02/20/2014 | 8:00 pm | at utah valley | uccu center • orem, | None | l 62-84 | 191 | 3-22 (0-12)
row 17 : 02/22/204 | 3:00 pm | at cal state bakersfield | icardo center • bakersfield | None | l 58-99 | 213 | 3-23 (0-13) ] Execute this SQL based on the above table: select opponent where time = ( select time where opponent = 'seattle' ) + 1
|
at grand canyon, at utah valley
|
[ header: season | network | play-by-play | color commentator(s) | sideline reporter(s) row 1 : 1969 | cbs | jack whitaker | frank gifford and don per | None
row 2 : 1968 | cbs | ray scott | paul christman | frank glieber
row 3 : 1967 | cbs | frank glieber | frank gifford | None
row 4 : 1966 | cbs | chuck thompson | tom brookshier | None
row 5 : 1965 | cbs | frank glieber (first half | pat summerall | None
row 6 : 1964 | cbs | jack drees (first half | frank gifford | None
row 7 : 1963 | cbs | ray scott (first half) and | frank gifford | None
row 8 : 1962 | cbs | chris schenkel (first half | warren lahr | None
row 9 : 1961 | cbs | chris schenkel (first half | johnny lujack | None ] Execute this SQL based on the above table: select max ( season ) - min ( season )
|
8
|
[ header: rank | npc | gold | silver | bronze | total row 1 : 1 | china (chn) | 95 | 71 | 65 | 231
row 2 : 2 | russia (rus) | 36 | 38 | 28 | 102
row 3 : 3 | great britain (gbr) | 34 | 43 | 43 | 120
row 4 : 4 | ukraine (ukr) | 32 | 24 | 28 | 84
row 5 : 5 | australia (aus) | 32 | 23 | 30 | 85
row 6 : 6 | united states (usa) | 31 | 29 | 38 | 98
row 7 : 7 | brazil (bra) | 21 | 14 | 8 | 43
row 8 : 8 | germany (ger) | 18 | 26 | 22 | 66
row 9 : 9 | poland (pol) | 14 | 13 | 9 | 36
row 10 : 10 | netherlands (ned) | 10 | 10 | 19 | 39
row 11 : total (75 npcs) | total (75 npcs) | 503 | 503 | 516 | 1522 ] Execute this SQL based on the above table: select gold - gold where npc = 'united states (usa)'
|
0.0
|
[ header: year | winners | score | runners up | notes row 1 : 1947 | wellington town reserves | 4-1 | walsall wood | None
row 2 : 1949 | bilston town | 1-0 | oswestry town | None
row 3 : 1950 | brereton social drew | None | None | None
row 4 : 1951 | bloxwich strollers | 1-0 | walsall wood | after extra time
row 5 : 1955 | shelfield athletic | 5-1 | walsall trinity | None
row 6 : 1956 | shelfield athletic | 2-0 | ogley hay | None
row 7 : 1959 | shelfield athletic | 4-0 | walsall wood | None
row 8 : 1960 | shelfield athletic | 3-0 | walsall wood | None
row 9 : 1965 | rushall olympic | 2-1 | brereton social | None
row 10 : 1966 | lower gornal athletic | 4-2 | kidderminster harriers | after extra time
row 11 : 1968 | wrockwardine wood | 2-1 | tamworth | None
row 12 : 1971 | baddesley colliery | 4-3 | atherstone town | aggregate score, 1st leg 2-2,
row 13 : 1973 | bilston town | 1-0 | darlaston | None
row 14 : 1974 | brereton social | 3-2 | warley county borough | after extra time
row 15 : 1977 | blakenall | 1-0 | bilston town | replay, 1st game 0-0 a
row 16 : 1978 | sutton coldfield town | 2-0 | alvechurch | None
row 17 : 1980 | sutton coldfield town | 1-0 | rushall olympic | None
row 18 : 1981 | blakenall | 2-1 | sutton coldfield town | replay, 1st game 1-1 a
row 19 : 1983 | coleshill town | 4-3 | wolverhampton united | None
row 20 : 1984 | atherstone town | 4-0 | tividale | None
row 21 : 1985 | harrisons | 2-0 | wolverhampton united | None
row 22 : 1987 | boldmere st. michaels | 2-0 | bloxwich town | None
row 23 : 1990 | meir ka | 2-1 | rushall olympic | replay, 1st game 0-0 a
row 24 : 1991 | chasetown | 1-0 | blakenall | after extra time
row 25 : 1992 | armitage 90 | 3-2 | meir ka | after extra time
row 26 : 1993 | chasetown | 3-1 | pelsall villa | None
row 27 : 1994 | newcastle town | 1-0 | oldbury united | after extra time
row 28 : 1995 | newcastle town | 1-1 | knypersley victoria | after extra time, newcastle won on penalties
row 29 : 1996 | blakenall | 0-0 | newcastle town | after extra time, blakenall won on
row 30 : 1998 | blakenall | 2-1 | halesowen harriers | None
row 31 : 1999 | blakenall | 3-2 | meir ka | None
row 32 : 2000 | rushall olympic | 2-2 | rocester | after extra time, rushall won 5-4 on
row 33 : 2001 | wolverhampton casuals | 2-0 | sutton coldfield town | None
row 34 : 2002 | bolehall swifts | 4-4 | tividale | after extra time, bolehall won 4
row 35 : 2004 | sutton coldfield town | 3-1 | tividale | None
row 36 : 2005 | chasetown | 2-1 | tividale | None
row 37 : 2006 | boldmere st michaels | 1-0 | tipton town | None ] Execute this SQL based on the above table: select winners where runners up = 'ogley hay'
|
shelfield athletic
|
[ header: rank | bib | country | distance (m) | points | time difference row 1 : 1 | 14 | germany tino edelmann | 124.5 127.0 | 264.3 128.0 136.3 | 0:00
row 2 : 2 | 10 | japan akito watabe t | 123.5 126.0 | 258.4 126.4 132.0 | +0:12
row 3 : 3 | 12 | austria bernhard gruber w | 123.0 122.0 | 251.8 123.3 128.5 | +0:25
row 4 : 4 | 11 | france jason lamy-chappuis | 120.5 118.5 | 242.7 121.8 120.9 | +0:43
row 5 : 5 | 13 | norway mikko kokslien | 118.0 118.5 | 238.1 116.8 121.3 | +0:52
row 6 : 6 | 8 | czech republic miroslav d | 114.5 120.0 | 232.8 110.7 122.1 | +1:03
row 7 : 7 | 7 | slovenia mitja oranic mar | 109.5 123.5 | 227.8 99.5 128.3 | +1:13
row 8 : 8 | 6 | finland ilkka herola | 120.5 113.5 | 226.6 115.4 111.2 | +1:15
row 9 : 9 | 4 | estonia han-hendrik pih | 113.0 113.0 | 217.5 107.4 110.1 | +1:34
row 10 : 10 | 9 | united states bill demong taylor | 111.0 112.5 | 214.1 104.9 109.2 | +1:40
row 11 : 11 | 1 | ukraine viktor pasichny | 107.0 115.0 | 206.2 95.7 110.5 | +1:56
row 12 : 12 | 2 | russia ernest yahin | 110.0 109.5 | 204.8 101.8 103.0 | +1:59
row 13 : 13 | 5 | italy armin bauer aless | 105.0 113.5 | 203.0 92.7 110.3 | +2:03
row 14 : 14 | 3 | switzerland seppi hur | 102.5 113.0 | 196.2 88.1 108.1 | +2:16 ] Execute this SQL based on the above table: select count ( distinct country ) where bib >= 558 and time difference <= 345
|
0
|
[ header: no. | song | singers | length (m:ss) row 1 : 1 | kalluri padam | shankar mahadevan | 01:32
row 2 : 2 | iru kangal | balram, gopika poornima | 04:49
row 3 : 3 | sithanna vasal | s. p. balasubram | 04:53
row 4 : 4 | thozha thozha | karthik | 03:57
row 5 : 5 | vidinjakka kannalam | chitra sivaraman | 04:20
row 6 : 6 | mullai poo | spb charan, ven | 04:33
row 7 : 7 | yarum ariya | pavithra | 05:16
row 8 : 8 | salsa - theme music | instrumental | 01:33 ] Execute this SQL based on the above table: select singers order by no. desc limit 1
|
instrumental
|
[ header: no. | train no. | origin | destination | train name row 1 : 4 | 12611/2612 | chennai | h.nizamudin | garib rath
row 2 : 6 | 11042/11041 | chennai | mumbai | mumbai express
row 3 : 7 | 12842/12841 | chennai | howrah | coromandel express
row 4 : 8 | 12840/12839 | chennai | howrah | howrah mail
row 5 : 9 | 12679/12680 | chennai | coimbatore | intercity express
row 6 : 10 | 12673/12674 | chennai | coimbatore | cheran express
row 7 : 11 | 12675/12676 | chennai | coimbatore | kovai express
row 8 : 15 | 16627/16628 | chennai | mangalore central | west coast express
row 9 : 16 | 12601/12602 | chennai | mangalore central | mangalore mail
row 10 : 17 | 12685/12686 | chennai | mangalore central | superfast express
row 11 : 18 | 12656/12655 | chennai | ahmedabad | navjivan express
row 12 : 19 | 12669/12670 | chennai | chhapra | ganga kaveri express
row 13 : 21 | 16053/16054 | chennai | tirupati | tirupati express
row 14 : 23 | 12759/12760 | chennai | hyderabad | charminar express
row 15 : 24 | 12603/12604 | chennai | hyderabad | hyderabad express
row 16 : 25 | 16669/16670 | chennai | erode | yercaud express
row 17 : 26 | 12639/12640 | chennai | bangalore | brindavan express
row 18 : 29 | 12027/12028 | chennai | bangalore | shatabdi express
row 19 : 30 | 12609/12610 | chennai | bangalore | bangalore express
row 20 : 31 | 12691/12692 | chennai | satya sai | satya sai
row 21 : 32 | 12007/12008 | chennai | mysore | shatabdi express
row 22 : 35 | 12623/12624 | chennai | trivandrum | trivandrum mail
row 23 : 36 | 12695/12696 | chennai | trivandrum | superfast express
row 24 : 38 | 16089/16090 | chennai | jolarpet junction | yelagiri express
row 25 : 39 | 16031/16032 | chennai | jammutawi | andaman express
row 26 : 40 | 12687/12688 | chennai | dehradun | dehradun express
row 27 : 41 | 12712/12711 | chennai | vijayawada | pinakini express
row 28 : 42 | 12077/12078 | chennai | vijayawada | jan shatabdi express
row 29 : 45 | 16093/16094 | chennai | lucknow | lucknow express
row 30 : 46 | 17311/17312 | chennai | vasco da gama, goa | vasco express
row 31 : 47 | 17313/7314 | chennai | hubli | hubli express
row 32 : 49 | 12291/12292 | chennai | yeswantpur | yeswantpur express ] Execute this SQL based on the above table: select origin where destination = 'coimbatore'
|
chennai, chennai, chennai
|
[ header: season | tier | division | place row 1 : 1949-87 | 5 | regional | None
row 2 : 1987/88 | 5 | pref. aut | 10th
row 3 : 1988/89 | 5 | pref. aut | 5th
row 4 : 1989/90 | 5 | pref. aut | 13th
row 5 : 1990/91 | 5 | pref. aut | 11th
row 6 : 1991/92 | 5 | pref. aut | 7th
row 7 : 1992/93 | 5 | pref. aut | 9th
row 8 : 1993/94 | 5 | pref. aut | 4th
row 9 : 1994/95 | 5 | pref. aut | 6th
row 10 : 1995/96 | 5 | pref. aut | 3rd
row 11 : 1996/97 | 5 | pref. aut | 3rd
row 12 : 1997/98 | 5 | pref. aut | 1st
row 13 : 1998/99 | 4 | 3a | 17th
row 14 : 1999/00 | 5 | pref. aut | 6th ] Execute this SQL based on the above table: select division group by division order by count ( place ) desc limit 1
|
pref. aut
|
[ header: administrative area | area km2 | area sq mi | population | administrative centre row 1 : saint helena | 122 | 47 | 5809 | jamestown
row 2 : ascension island | 91 | 35 | 1532 | georgetown
row 3 : tristan da cunha | 184 | 71 | 388 | edinburgh of the seven seas
row 4 : tristan da cunha | 98 | 38 | 382 | edinburgh of the seven seas
row 5 : inaccessible island | 14 | 5 | 0 | denstone hut
row 6 : nightingale island | 3.2 | 1 | 0 | west landing
row 7 : gough island | 68 | 26 | 6 | transvaal bay
row 8 : total | 397 | 153 | 7729 | jamestown ] Execute this SQL based on the above table: select area km2 where administrative area >= 1555
|
122, 91, 184, 98, 14, 3.2, 68, 397
|
[ header: state | passed | referendum | vote row 1 : s. carolina | december 20, 1860 | None | None
row 2 : mississippi | january 9, 1861 | None | None
row 3 : florida | january 10, 1861 | None | None
row 4 : alabama | january 11, 1861 | None | None
row 5 : georgia | january 19, 1861 | None | None
row 6 : louisiana | january 26, 1861 | None | None
row 7 : texas | february 1, 1861 | february 23 | 46,153-14,747
row 8 : virginia | april 17, 1861 | may 23 | 132,201-37,451
row 9 : arkansas | may 6, 1861 | None | None
row 10 : tennessee | may 6, 1861 | june 8 | 104,471-47,183
row 11 : n. carolina | may 20, 1861 | None | None
row 12 : missouri | october 31, 1861 | None | None
row 13 : kentucky | november 20, 1861 | None | None ] Execute this SQL based on the above table: select count ( state ) where vote not null
|
3
|
[ header: series | year | rank | average audience share row 1 : 1 | 1992 | None | 14.50m
row 2 : 2 | 1993 | None | None
row 3 : 3 | 1993 | None | None
row 4 : 4 | 1994 | None | None
row 5 : 5 | 1995 | None | None
row 6 : 6 | 1996 | None | 14.60m
row 7 : 7 | 1997-1998 | None | 15.82m
row 8 : 8 | 1998-1999 | 5th | 14.35m
row 9 : 9 | 1999-2000 | 6th | 13.71m
row 10 : 10 | 2000-2001 | 5th | 13.21m
row 11 : 11 | 2001-2002 | 6th | 10.77m
row 12 : 12 | 2002-2003 | 7th | 11.29m
row 13 : 13 | 2003-2004 | 8th | 13.11m
row 14 : 14 | 2004-2005 | 10th | 8.77m
row 15 : 15 | 2005-2006 | 10th | 8.42m
row 16 : 16 | 2006-2007 | 8th | 7.80m
row 17 : 17 | 2007-2008 | 11th | 6.90m
row 18 : 18 | 2008-2010 | 15th | 5.44m (incl. itv ] Execute this SQL based on the above table: select count ( rank )
|
11
|
[ header: year | team | games | combined tackles | tackles | assisted tackles | sacks | forced fumbles | fumble recoveries | fumble return yards | interceptions | interception return yards | yards per interception return | longest interception return | interceptions returned for touchdown | passes defended row 1 : 2004 | hou | 16 | 63 | 51 | 12 | 4 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 4
row 2 : 2005 | hou | 12 | 35 | 24 | 11 | 4 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2
row 3 : 2006 | hou | 15 | 26 | 19 | 7 | 5 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1
row 4 : 2008 | kc | 7 | 31 | 25 | 6 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0
row 5 : 2008 | sea | 2 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0
row 6 : 2009 | phi | 12 | 16 | 11 | 5 | 2.5 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0
row 7 : 2010 | ten | 16 | 58 | 44 | 14 | 12.5 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0
row 8 : 2011 | phi | 16 | 40 | 35 | 5 | 18 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1
row 9 : 2012 | phi | 11 | 26 | 21 | 5 | 5.5 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1
row 10 : 2012 | jax | 5 | 11 | 7 | 4 | 1.5 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0
row 11 : 2013 | jax | 16 | 40 | 31 | 9 | 7.5 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0
row 12 : career | None | 128 | 347 | 269 | 78 | 62.5 | 14 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 9 ] Execute this SQL based on the above table: select team where team = 'hou'
|
hou, hou, hou
|
[ header: pos | no | driver | constructor | laps | time/retired | grid | points row 1 : 1 | 9 | kimi raikkonen | mclaren-mercedes | 44 | 1:30:01.295 | 2 | 10
row 2 : 2 | 5 | fernando alonso | renault | 44 | 28.394 | 4 | 8
row 3 : 3 | 3 | jenson button | bar-honda | 44 | 32.077 | 8 | 6
row 4 : 4 | 7 | mark webber | williams-bmw | 44 | +1:09.167 | 9 | 5
row 5 : 5 | 2 | rubens barrichello | ferrari | 44 | +1:18.136 | 12 | 4
row 6 : 6 | 11 | jacques villeneuve | sauber-petronas | 44 | +1:27.435 | 14 | 3
row 7 : 7 | 17 | ralf schumacher | toyota | 44 | +1:27.574 | 5 | 2
row 8 : 8 | 18 | tiago monteiro | jordan-toyota | 43 | +1 lap | 19 | 1
row 9 : 9 | 15 | christian klien | red bull-cosworth | 43 | +1 lap | 16 | None
row 10 : 10 | 12 | felipe massa | sauber-petronas | 43 | +1 lap | 7 | None
row 11 : 11 | 19 | narain karthikeyan | jordan-toyota | 43 | +1 lap | 20 | None
row 12 : 12 | 21 | christijan albers | minardi-cosworth | 42 | +2 laps | 18 | None
row 13 : 13 | 20 | robert doornbos | minardi-cosworth | 41 | +3 laps | 17 | None
row 14 : 14 | 10 | juan pablo montoya | mclaren-mercedes | 40 | collision | 1 | None
row 15 : 15 | 8 | antonio pizzonia | williams-bmw | 39 | collision | 15 | None
row 16 : ret | 16 | jarno trulli | toyota | 34 | accident | 3 | None
row 17 : ret | 14 | david coulthard | red bull-cosworth | 18 | engine | 11 | None
row 18 : ret | 1 | michael schumacher | ferrari | 13 | collision | 6 | None
row 19 : ret | 4 | takuma sato | bar-honda | 13 | collision | 10 | None
row 20 : ret | 6 | giancarlo fisichella | renault | 10 | accident | 13 | None ] Execute this SQL based on the above table: select count ( * ) where driver = 'juan pablo montoya'
|
1
|
[ header: name | party | took office | left office row 1 : glenlyon campbell | conservative | 1903 | 1908
row 2 : duncan cameron | conservative | 1908 | 1910
row 3 : sam hughes | conservative | 1910 | 1915
row 4 : william findlater | liberal | 1915 | 1922
row 5 : arthur berry | progressive | 1922 | 1932
row 6 : None | liberal-progressive | 1932 | 1936
row 7 : stanley fox | social credit | 1936 | 1940
row 8 : None | social credit (coalition) | 1940 | 1949
row 9 : ray mitchell | liberal-progressive | 1949 | 1958 ] Execute this SQL based on the above table: select count ( name ) where name = 4
|
0
|
[ header: date | operation | location | type | information row 1 : 16 july 1992 - 22 nov | operation maritime monitor | international waters off serbia | naval blockade | naval blockade aimed at enfor
row 2 : 16 october 1992 - 12 | operation sky monitor (resolution 781) | bosnian airspace | no-fly zone | established a no-fly zone over the
row 3 : 22 november 1992 - 1993 | operation maritime guard (resolution 787) | international waters in adriatic sea | naval blockade | authorized nato to use force, and
row 4 : 13 april 1993 - 20 de | operation deny flight (resolutions 816 | bosnian airspace | no-fly zone | resolution 816 extended the ban to cover flights by
row 5 : 15 june 1993 - 2 o | operation sharp guard (numerous resolutions) | yugoslavia | naval blockade | a widespread naval blockade aimed at
row 6 : 30 august - 20 september 1995 | operation deliberate force | bosnia and herzegovin | air campaign | involving approximately 400 aircraft, deliberate force targeted at
row 7 : 20 december 1995 - 20 dec | operation joint endeavour | bosnia and herzegovin | peacekeeping force | nato-led implementation force(if
row 8 : 21 december 1996 - 19 jun | operation joint guard | bosnia and herzegovin | peacekeeping force | nato-led stabilisation force(
row 9 : 20 june 1998 - 2 dec | operation joint forge | bosnia and herzegovin | peacekeeping force | a continuation of operation joint guard ] Execute this SQL based on the above table: select location where id = 1
|
international waters off serbia
|
[ header: title | year | peak chart positions us | peak chart positions us alt. | peak chart positions us main. rock | peak chart positions aus | peak chart positions aut | peak chart positions fin | peak chart positions ger | peak chart positions nld | peak chart positions swi | peak chart positions uk | album row 1 : "toxic" | 1999 | None | None | None | None | None | None | None | None | None | None | the gift of game
row 2 : "darkside" | 2000 | None | None | None | None | None | None | None | None | None | None | the gift of game
row 3 : "butterfly" | 2000 | 1 | 1 | 21 | 4 | 1 | 2 | 1 | 8 | 1 | 3 | the gift of game
row 4 : "revolving door" | 2001 | None | None | None | 76 | 29 | 19 | 26 | 71 | 43 | 23 | the gift of game
row 5 : "drowning" | 2002 | None | 24 | 24 | None | 45 | None | 45 | None | None | 50 | darkhorse
row 6 : "hurt you so bad" | 2003 | None | None | None | None | None | None | None | None | None | None | darkhorse ] Execute this SQL based on the above table: select ( select count ( * ) where title is null ) > 0
|
0
|
[ header: series | year | rank | average audience share row 1 : 1 | 1992 | None | 14.50m
row 2 : 2 | 1993 | None | None
row 3 : 3 | 1993 | None | None
row 4 : 4 | 1994 | None | None
row 5 : 5 | 1995 | None | None
row 6 : 6 | 1996 | None | 14.60m
row 7 : 7 | 1997-1998 | None | 15.82m
row 8 : 8 | 1998-1999 | 5th | 14.35m
row 9 : 9 | 1999-2000 | 6th | 13.71m
row 10 : 10 | 2000-2001 | 5th | 13.21m
row 11 : 11 | 2001-2002 | 6th | 10.77m
row 12 : 12 | 2002-2003 | 7th | 11.29m
row 13 : 13 | 2003-2004 | 8th | 13.11m
row 14 : 14 | 2004-2005 | 10th | 8.77m
row 15 : 15 | 2005-2006 | 10th | 8.42m
row 16 : 16 | 2006-2007 | 8th | 7.80m
row 17 : 17 | 2007-2008 | 11th | 6.90m
row 18 : 18 | 2008-2010 | 15th | 5.44m (incl. itv ] Execute this SQL based on the above table: select ( select rank where rank = '8th' ) - ( select rank where rank = '15th' )
|
-7
|
[ header: outcome | no. | date | tournament | surface | partner | opponents | score row 1 : winner | 1 | april 18, 2004 | jackson, united states | clay | alisa kleybanova | cory ann avants kristen | 6-2, 6-3
row 2 : runner-up | 1 | september 26, 2004 | albuquerque, united states | hard | maria emilia salern | maureen drake carly gul | 3-6, 6-7(6-8)
row 3 : winner | 2 | march 27, 2005 | redding, united states | hard | yulia beygelzimer | leanne baker francesca lub | 6-4, 6-7(1-7),
row 4 : runner-up | 2 | may 8, 2005 | raleigh, united states | clay | maria fernanda alves | ashley harkleroad lindsay | 2-6, 6-0, 3-6
row 5 : runner-up | 3 | march 19, 2006 | orange, united states | hard | lilia osterloh | kateryna bondarenko alon | 2-6, 4-6
row 6 : winner | 3 | november 12, 2006 | pittsburgh, united states | hard (i) | alisa kleybanova | ashley harkleroad galina | 6-4, 5-7, 6-1
row 7 : runner-up | 4 | february 11, 2007 | midland, united states | hard (i) | maureen drake | laura granville abigail spears | 4-6, 6-3, 3-6
row 8 : runner-up | 5 | july 7, 2007 | southlake, united states | hard | valerie tetreault | surina de beer kim grant | 6-4, 4-6, 4-6
row 9 : winner | 4 | july 22, 2007 | hamilton, canada | clay | surina de beer | michaela johansson pa | walkover
row 10 : winner | 5 | august 4, 2007 | vancouver, canada | hard | marie-eve pelletier | soledad esperon agustin | 6-4, 6-4
row 11 : winner | 6 | october 21, 2007 | lawrenceville, united states | hard | alisa kleybanova | leanne baker julie ditty | 6-2, 6-0
row 12 : winner | 7 | november 12, 2007 | pittsburgh, united states | hard (i) | alisa kleybanova | raquel kops-jones | 6-4, 4-6, [10-6]
row 13 : runner-up | 6 | april 27, 2008 | dothan, united states | clay | maria fernanda alves | tetiana luzhan | 1-6, 3-6
row 14 : winner | 8 | october 18, 2008 | toronto, canada | hard (i) | marie-eve pelletier | nikola frankova carmen | 6-4, 6-2
row 15 : runner-up | 7 | september 27, 2009 | saguenay, canada | hard (i) | rebecca marino | sofia arvidsson s | 3-6, 1-6
row 16 : runner-up | 8 | april 13, 2013 | poza rica, mexico | hard | olga savch | maria fernanda alvarez | 2-6, 3-6 ] Execute this SQL based on the above table: select tournament where tournament = 'redding, united states'
|
redding, united states
|
[ header: rank | nation | gold | silver | bronze | total row 1 : 1 | brazil | 9 | 0 | 0 | 9
row 2 : 2 | argentina | 0 | 7 | 1 | 8
row 3 : 3 | uruguay | 0 | 1 | 4 | 5
row 4 : 4 | dominican republic | 0 | 1 | 0 | 1
row 5 : 5 | chile | 0 | 0 | 1 | 1
row 6 : 5 | greenland | 0 | 0 | 1 | 1
row 7 : 5 | paraguay | 0 | 0 | 1 | 1
row 8 : 5 | puerto rico | 0 | 0 | 1 | 1
row 9 : total | total | 9 | 9 | 9 | 27 ] Execute this SQL based on the above table: select nation order by total desc limit 1
|
total
|
[ header: year | date | title | format(s) | award description(s) | result(s) row 1 : 1987 | july 28 | whitney | album | gold | won
row 2 : 1987 | july 28 | whitney | album | platinum | won
row 3 : 1987 | july 28 | whitney | album | 2× multi-platinum | won
row 4 : 1987 | july 28 | "i wanna dance with somebody (who loves | single | gold | won
row 5 : 1987 | august 4 | whitney | album | 3× multi-platinum | won
row 6 : 1987 | september 30 | whitney | album | 4× multi-platinum | won
row 7 : 1987 | november 20 | whitney | album | 5× multi-platinum | won
row 8 : 1988 | april 18 | whitney | album | 6× multi-platinum | won
row 9 : 1989 | february 13 | "i wanna dance with somebody (who loves | single | platinum | won
row 10 : 1993 | june 23 | whitney | album | 7× multi-platinum | won
row 11 : 1994 | november 29 | whitney | album | 8× multi-platinum | won
row 12 : 1995 | november 29 | whitney | album | 9× multi-platinum | won
row 13 : 1995 | december 6 | "so emotional" | single | gold | won ] Execute this SQL based on the above table: select year group by year having count ( * ) = 2
|
1995
|
[ header: version | length | album | remixed by | year | comment row 1 : single version / radio edit | 3:39 | go - the very best of moby | mhc aka philip la | 2006 | remixed version with dance sonorities,
row 2 : extended remix | 6:48 | None | mhc aka philip la | 2006 | similar to the previous but longer
row 3 : axwell remix | 7:24 | None | axwell | 2006 | used in a scene in the 2008 movie 21
row 4 : enzo mori & stephan clar | 7:10 | None | enzo mori and stephan clark | 2006 | None
row 5 : mhc club remix | 7:31 | None | mhc aka philip la | 2006 | None
row 6 : zloot remix | 4:36 | None | toni toolz | 2006 | None
row 7 : music video | 3:58 | None | None | 2006 | None ] Execute this SQL based on the above table: select version order by version desc limit 1
|
zloot remix
|
[ header: season | tier | division | place row 1 : 2002/03 | 8 | 3a aficio | 1st
row 2 : 2003/04 | 6 | 1a aficio | 1st
row 3 : 2004/05 | 5 | preferente | 13th
row 4 : 2005/06 | 5 | preferente | 4th
row 5 : 2006/07 | 5 | preferente | 8th
row 6 : 2007/08 | 5 | preferente | 8th
row 7 : 2008/09 | 5 | preferente | 3rd
row 8 : 2009/10 | 5 | preferente | 2nd
row 9 : 2010/11 | 4 | 3a | 6th
row 10 : 2011/12 | 4 | 3a | 6th
row 11 : 2012/13 | 4 | 3a | 11th ] Execute this SQL based on the above table: select tier where place = '13th'
|
5.0
|
[ header: rank | player | county | tally | total | opposition row 1 : 1 | nicky english | tipperary | 2-12 | 18 | antrim
row 2 : 2 | mark corrigan | offaly | 3-7 | 16 | kilkenny
row 3 : 3 | joe hennessy | kerry | 3-5 | 14 | limerick
row 4 : 3 | finbarr delaney | cork | 1-11 | 14 | waterford
row 5 : 5 | nicky english | tipperary | 0-13 | 13 | waterford
row 6 : 5 | adrian ronan | kilkenny | 1-10 | 13 | westmeath
row 7 : 7 | nicky english | tipperary | 2-5 | 11 | limerick
row 8 : 7 | danny mcnaughton | antrim | 2-5 | 11 | down
row 9 : 9 | m. j. ryan | dublin | 1-7 | 10 | laois
row 10 : 10 | gary kirby | limerick | 1-6 | 9 | kerry
row 11 : 10 | pat murphy | waterford | 3-0 | 9 | cork ] Execute this SQL based on the above table: select county where rank = 3
|
kerry, cork
|
[ header: place | team | played | won | draw | lost | goals scored | goals conceded | +/- | points row 1 : 1 | c.d. fas | 18 | 10 | 6 | 2 | 27 | 13 | 14 | 36
row 2 : 2 | c.d. aguila | 18 | 9 | 4 | 5 | 38 | 26 | 12 | 31
row 3 : 3 | c.d. luis angel fir | 18 | 7 | 7 | 4 | 25 | 18 | 7 | 28
row 4 : 4 | san salvador f.c | 18 | 8 | 4 | 6 | 31 | 27 | 4 | 28
row 5 : 5 | alianza f.c | 18 | 8 | 4 | 6 | 26 | 24 | 2 | 28
row 6 : 6 | a.d. isidro | 18 | 4 | 9 | 5 | 20 | 23 | -3 | 21
row 7 : 7 | municipal limeno | 18 | 5 | 5 | 8 | 27 | 29 | -2 | 20
row 8 : 8 | c.d. arcense | 18 | 2 | 11 | 5 | 23 | 32 | -11 | 17
row 9 : 9 | chalatenango | 18 | 4 | 5 | 9 | 13 | 22 | -9 | 17
row 10 : 10 | c.d. atletico balb | 18 | 4 | 3 | 11 | 15 | 31 | -24 | 15 ] Execute this SQL based on the above table: select count ( team )
|
10
|
[ header: title | year | publisher | developer | platforms row 1 : the hobbit | 1982 | melbourne house | beam software | amstrad cpc, z
row 2 : war in middle-earth | 1988 | melbourne house | melbourne house | c64, spectrum, amstrad
row 3 : the lord of the rings volume 1 | 1990 | interplay, electronic arts | interplay, chaos studios (amiga | amiga, ibm pc
row 4 : the lord of the rings volume 2 | 1992 | interplay | interplay | ibm pc
row 5 : riders of rohan | 1991 | konami, mirrorsoft | beam software, papyrus | ibm pc
row 6 : the lord of the rings volume 1 | 1994 | interplay | interplay | super nes
row 7 : the lord of the rings: the fellowship | 2002 | vivendi universal games | pocket studios | game boy advance
row 8 : the lord of the rings: the two | 2002 | electronic arts | stormfront studios hypnos entertainment (g | playstation 2, xbox, ninte
row 9 : the lord of the rings: the return | 2003 | electronic arts aspyr (mac os | electronic arts,hypnos entertainment (gcn | ms windows, playstation 2, x
row 10 : the lord of the rings: the return | 2003 | electronic arts | griptonite games | game boy advance
row 11 : the hobbit | 2003 | sierra | midway austin | ms windows, playstation 2, x
row 12 : the lord of the rings: the battle | 2004 | electronic arts | ea los angeles | ms windows
row 13 : the lord of the rings: tactics | 2005 | electronic arts | amaze | playstation portable
row 14 : the lord of the rings: the battle | 2006 | electronic arts | ea los angeles | ms windows, xbox 360
row 15 : the lord of the rings online: shadow | 2007 | turbine, inc., midway | turbine, inc | ms windows
row 16 : the lord of the rings online: mine | 2008 | turbine, inc., midway | turbine, inc | ms windows
row 17 : the lord of the rings online: sie | 2009 | turbine, inc | turbine, inc | ms windows
row 18 : the lord of the rings: a | 2010 | warner bros. interactive entertainment | headstrong games tt fusion | wii, nintendo d
row 19 : the lord of the rings: war in | 2011 | warner bros. interactive entertainment | snowblind studios | playstation 3, ms windows, x
row 20 : the lord of the rings online: riders | 2012 | warner bros. interactive entertainment | turbine, inc | ms windows
row 21 : lego the lord of the rings | 2012 | warner bros. interactive entertainment | traveler's tales | ms windows, wii, n
row 22 : the hobbit: armies of the third | 2013 | None | kabam | browser game ] Execute this SQL based on the above table: select max ( year )
|
2013
|
[ header: # | player | pos | pts | tries | conv | pens | drop | opposition | venue | date row 1 : 1 | stefano bettarello | fly-half | 29 | 1 | 2 | 5 | 2 | canada | toronto | 1 july 1982
row 2 : 1 | diego dominguez | fly-half | 29 | 0 | 1 | 6 | 3 | scotland | rome | 5 february 2000
row 3 : 1 | diego dominguez | fly-half | 29 | 0 | 4 | 7 | 0 | fiji | treviso | 10 november 2001
row 4 : 4 | diego dominguez | fly-half | 28 | 1 | 7 | 3 | 0 | netherlands | calvisano | 21 may 1994
row 5 : 5 | diego dominguez | fly-half | 27 | 1 | 2 | 6 | 0 | ireland | bologna | 20 december 1997
row 6 : 6 | diego dominguez | fly-half | 25 | 0 | 5 | 5 | 0 | romania | tarbes | 26 october 1997
row 7 : 7 | luigi troiani | fly-half | 24 | 0 | 12 | 0 | 0 | czech republic | viadana | 18 may 1994
row 8 : 7 | diego dominguez | fly-half | 24 | 0 | 0 | 8 | 0 | romania | catania | 1 october 1994
row 9 : 7 | mirco bergamasco | wing | 24 | 0 | 0 | 8 | 0 | fiji | modena | 27 november 2010
row 10 : 10 | 3 players on 23 points | None | None | None | None | None | None | None | None | None ] Execute this SQL based on the above table: select venue where # > 6 order by # asc limit 1
|
viadana
|
[ header: position | club | played | points | wins | draws | losses | goals for | goals against | goal difference row 1 : 1 | cordoba cf | 30 | 40 | 16 | 8 | 6 | 48 | 22 | 26
row 2 : 2 | cd malaga | 30 | 38 | 14 | 10 | 6 | 52 | 36 | 16
row 3 : 3 | granada cf | 30 | 36 | 15 | 6 | 9 | 48 | 34 | 14
row 4 : 4 | ud las palmas | 30 | 35 | 15 | 5 | 10 | 47 | 39 | 8
row 5 : 5 | recreativo de huelva | 30 | 33 | 13 | 7 | 10 | 43 | 42 | 1
row 6 : 6 | levante ud | 30 | 32 | 14 | 4 | 12 | 49 | 42 | 7
row 7 : 7 | hercules cf | 30 | 32 | 14 | 4 | 12 | 55 | 46 | 9
row 8 : 8 | real murcia | 30 | 31 | 12 | 7 | 11 | 40 | 35 | 5
row 9 : 9 | real jaen | 30 | 31 | 14 | 3 | 13 | 58 | 42 | 16
row 10 : 10 | cadiz cf | 30 | 28 | 12 | 4 | 14 | 43 | 52 | -9
row 11 : 11 | cd cartagena | 30 | 28 | 13 | 2 | 15 | 45 | 56 | -11
row 12 : 12 | cd mestalla | 30 | 27 | 11 | 5 | 14 | 50 | 49 | 1
row 13 : 13 | albacete balompie | 30 | 27 | 10 | 7 | 13 | 27 | 32 | -5
row 14 : 14 | cd san fernando | 30 | 27 | 11 | 5 | 14 | 37 | 47 | -10
row 15 : 15 | atletico ceuta | 30 | 23 | 8 | 7 | 15 | 33 | 48 | -15
row 16 : 16 | cd villarrobledo | 30 | 12 | 4 | 4 | 22 | 26 | 79 | -53 ] Execute this SQL based on the above table: select count ( club ) where club = 'recreativo de huelva'
|
1
|
[ header: year | title | peak chart positions us country | peak chart positions us | album row 1 : 1950 | "make up your mind" | None | None | non-album singles
row 2 : 1950 | "how far is heaven" | None | None | non-album singles
row 3 : 1952 | "glory land march" | None | None | non-album singles
row 4 : 1952 | "it wasn't god who made hon | 1 | 27 | country hit parade
row 5 : 1952 | "a wedding ring ago" | None | None | the kitty wells story
row 6 : 1953 | "the things i might have been" | None | 22 | country hit parade
row 7 : 1953 | "paying for that back street affair" | 6 | None | country hit parade
row 8 : 1953 | "honky tonk walt | None | None | country heart
row 9 : 1953 | "i don't claim to be an angel | None | None | country hit parade
row 10 : 1953 | "hey joe" | 8 | None | kitty wells' golden favorites
row 11 : 1953 | "cheatin's a sin" | 9 | None | country hit parade
row 12 : 1954 | "release me" | 8 | None | country hit parade
row 13 : 1954 | "you're not so easy to forget" | None | None | after dark
row 14 : 1954 | "thou shalt not steal" | 14 | None | kitty wells
row 15 : 1955 | "making believe" | 2 | None | country hit parade
row 16 : 1955 | "there's poison in your heart" | 9 | None | country hit parade
row 17 : 1955 | "the lonely side of town" | 7 | None | after dark
row 18 : 1956 | "how far is heaven" (with carol | 11 | None | singing on sunday
row 19 : 1956 | "searching (for someone like you)" | 3 | None | kitty wells' golden favorites
row 20 : 1956 | "repenting" | 6 | None | kitty wells' golden favorites
row 21 : 1957 | "three ways (to love you)" | 7 | None | kitty wells' golden favorites
row 22 : 1957 | "(i'll always be your) | 10 | None | kitty wells' golden favorites
row 23 : 1958 | "i can't stop loving you" | 3 | None | kitty wells' golden favorites
row 24 : 1958 | "jealousy" | 7 | 78 | kitty wells' golden favorites
row 25 : 1958 | "touch and go heart" | 15 | None | the lonely side of town
row 26 : 1959 | "mommy for a day" | 5 | None | kitty wells' golden favorites
row 27 : 1959 | "your wild life's gonna get you | 12 | None | after dark
row 28 : 1959 | "amigo's guitar" | 5 | None | seasons of my heart ] Execute this SQL based on the above table: select title order by peak chart positions us country limit 1
|
"make up your mind"
|
[ header: pos | rider | manufacturer | time/retired | points row 1 : 1 | tohru ukawa | honda | 49:50.449 | 25
row 2 : 2 | franco battaini | aprilia | 5.125 | 20
row 3 : 3 | loris capirossi | honda | 10.224 | 16
row 4 : 4 | shinya nakano | yamaha | 14.848 | 13
row 5 : 5 | stefano perugini | honda | 34.042 | 11
row 6 : 6 | sebastian porto | yamaha | 37.495 | 10
row 7 : 7 | jason vincent | honda | 44.911 | 9
row 8 : 8 | valentino rossi | aprilia | +1:01.110 | 8
row 9 : 9 | anthony west | tsr-honda | +1:10.352 | 7
row 10 : 10 | alex hofmann | tsr-honda | +1:18.683 | 6
row 11 : 11 | luca boscoscuro | tsr-honda | +1:20.847 | 5
row 12 : 12 | lucas oliver bulto | yamaha | +1:23.052 | 4
row 13 : 13 | roberto rolfo | aprilia | +1:24.329 | 3
row 14 : 14 | masaki tokudome | tsr-honda | +1:26.837 | 2
row 15 : 15 | fonsi nieto | yamaha | +1:45.669 | 1
row 16 : 16 | david garcia | yamaha | +1:48.926 | None
row 17 : 17 | scott smart | aprilia | +1:49.730 | None
row 18 : 18 | alex debon | honda | +1 lap | None
row 19 : 19 | jarno janssen | tsr-honda | +1 lap | None
row 20 : ret | alvaro molina | honda | retirement | None
row 21 : ret | julien allemand | tsr-honda | retirement | None
row 22 : ret | ismael bonilla | honda | retirement | None
row 23 : ret | daniel ribalta | aprilia | retirement | None
row 24 : ret | maurice bolwerk | honda | retirement | None
row 25 : ret | tomomi manako | yamaha | retirement | None
row 26 : ret | johann stigefelt | yamaha | retirement | None
row 27 : ret | olivier jacque | yamaha | retirement | None
row 28 : ret | jeremy mcwilliams | aprilia | retirement | None
row 29 : ret | david ortega | tsr-honda | retirement | None
row 30 : ret | alfredo rios | aprilia | retirement | None
row 31 : ret | ralf waldmann | aprilia | retirement | None ] Execute this SQL based on the above table: select count ( * ) where pos = 'ret'
|
12
|
[ header: tie no | home team | score | away team | date row 1 : 1 | enfield | 1-1 | leyton orient | 19 november 1988
row 2 : replay | leyton orient | 2-2 | enfield | 23 november 1988
row 3 : replay | leyton orient | 0-1 | enfield | 28 november 1988
row 4 : 2 | blackpool | 2-1 | scunthorpe united | 19 november 1988
row 5 : 3 | darlington | 1-2 | notts county | 19 november 1988
row 6 : 4 | bath city | 2-0 | grays athletic | 19 november 1988
row 7 : 6 | burnley | 0-2 | chester city | 19 november 1988
row 8 : 7 | preston north end | 1-1 | tranmere rovers | 19 november 1988
row 9 : replay | tranmere rovers | 3-0 | preston north end | 22 november 1988
row 10 : 9 | reading | 4-2 | hendon | 19 november 1988
row 11 : 10 | woking | 1-4 | cambridge united | 19 november 1988
row 12 : 11 | gillingham | 3-3 | peterborough united | 19 november 1988
row 13 : replay | peterborough united | 1-0 | gillingham | 23 november 1988
row 14 : 12 | bolton wanderers | 0-0 | chesterfield | 19 november 1988
row 15 : replay | chesterfield | 2-3 | bolton wanderers | 28 november 1988
row 16 : 13 | grimsby town | 1-0 | wolverhampton wanderers | 19 november 1988
row 17 : 14 | stafford rangers | 2-2 | crewe alexandra | 19 november 1988
row 18 : replay | crewe alexandra | 3-2 | stafford rangers | 22 november 1988
row 19 : 15 | scarborough | 2-1 | stockport county | 19 november 1988
row 20 : replay | doncaster rovers | 2-1 | brandon united | 22 november 1988
row 21 : 17 | fulham | 0-1 | colchester united | 19 november 1988
row 22 : 18 | brentford | 2-0 | halesowen town | 19 november 1988
row 23 : 20 | altrincham | 3-2 | lincoln city | 19 november 1988
row 24 : 23 | mansfield town | 1-1 | sheffield united | 19 november 1988
row 25 : replay | sheffield united | 2-1 | mansfield town | 22 november 1988
row 26 : 25 | halifax town | 1-0 | york city | 19 november 1988
row 27 : 27 | southport | 0-2 | port vale | 19 november 1988
row 28 : 28 | runcorn | 2-2 | wrexham | 19 november 1988
row 29 : replay | wrexham | 2-3 | runcorn | 22 november 1988
row 30 : 29 | torquay united | 2-2 | fareham town | 19 november 1988
row 31 : 30 | kettering town | 2-1 | dartford | 19 november 1988
row 32 : 31 | rotherham united | 3-1 | barrow | 19 november 1988
row 33 : 34 | waterlooville | 1-4 | aylesbury united | 19 november 1988
row 34 : 35 | telford united | 1-1 | carlisle united | 19 november 1988
row 35 : replay | carlisle united | 4-1 | telford united | 22 november 1988
row 36 : 36 | swansea city | 3-1 | northampton town | 19 november 1988
row 37 : 37 | frickley athletic | 0-2 | northwich victoria | 19 november 1988
row 38 : 38 | hartlepool united | 2-0 | wigan athletic | 19 november 1988
row 39 : 39 | welling united | 3-0 | bromsgrove rovers | 19 november 1988 ] Execute this SQL based on the above table: select min ( away team )
|
aylesbury united
|
[ header: year | 1st venue | 2nd venue | 3rd venue | 4th venue | 5th venue | 6th venue row 1 : 2007 | sheffield | mexico city | nanjing | None | None | None
row 2 : 2008 | tijuana | sheffield | nanjing | None | None | None
row 3 : 2009 | doha | changzhou | sheffield | tijuana | None | None
row 4 : 2010 | qingdao | veracruz | veracruz | None | None | None
row 5 : 2011 | moscow | beijing | sheffield | guanajuato | None | None
row 6 : 2012 | dubai | beijing | moscow | tijuana | None | None
row 7 : 2013 | beijing | dubai | edinburgh | moscow | guadalajara | guadalajara
row 8 : 2014 | beijing | dubai | london | moscow | windsor | monterrey ] Execute this SQL based on the above table: select count ( 1st venue ) where 6th venue < 1473 and 6th venue > 1902
|
0
|
[ header: team | p | w | t | l | gf | ga | gd | pts. row 1 : sweden | 5 | 5 | 0 | 0 | 114 | 91 | +23 | 10
row 2 : denmark | 5 | 3 | 1 | 1 | 107 | 99 | +8 | 7
row 3 : spain | 5 | 3 | 0 | 2 | 114 | 101 | +13 | 6
row 4 : hungary | 5 | 2 | 0 | 3 | 100 | 107 | -7 | 4
row 5 : slovenia | 5 | 1 | 1 | 3 | 94 | 111 | -17 | 3
row 6 : portugal | 5 | 0 | 0 | 5 | 96 | 116 | -20 | 0 ] Execute this SQL based on the above table: select ( select l where team = 'sweden' ) - ( select l where team = 'hungary' )
|
-3.0
|
[ header: pos. | artist | single | year | sales | peak row 1 : 1 | daniel lavoie, pat | "belle" | 1998 | 2,221,000 | 1
row 2 : 4 | wes | "alane" | 1997 | 1,418,000 | 1
row 3 : 10 | celine dion | "the reason" / "my heart will | 1998 | 1,197,000 | 1
row 4 : 16 | celine dion | "pour que tu m'aime | 1995 | 955,000 | 1
row 5 : 19 | andrea bocelli & helene | "vivo per lei (je vis pour | 1998 | 874,000 | 1
row 6 : 20 | zebda | "tomber la chemise" | 1999 | 868,000 | 1
row 7 : 22 | khaled | "aicha" | 1996 | 824,000 | 1
row 8 : 24 | david hallyday | "tu ne m'a | 1999 | 801,000 | 1
row 9 : 25 | will smith | "men in black" | 1997 | 783,000 | 1
row 10 : 32 | brandy & monica | "the boy is mine" | 1998 | 662,000 | 2
row 11 : 35 | tina arena | "aller plus haut" | 1999 | 617,000 | 2
row 12 : 39 | eiffel 65 | "move your body" | 1999 | 589,000 | 1
row 13 : 40 | britney spears | "... baby one more time" | 1999 | 578,000 | 1
row 14 : 54 | hanson | "mmmbop" | 1997 | 490,000 | 4
row 15 : 59 | regg'lyss | "mets de l'huile" | 1993 | 476,000 | 1
row 16 : 60 | janet jackson | "together again" | 1998 | 475,000 | 2
row 17 : 61 | modern talking | "you're my heart, you're | 1998 | 475,000 | 3
row 18 : 64 | lara fabian | "je t'aime" | 1997 | 471,000 | 6
row 19 : 65 | madonna | "frozen" | 1998 | 469,000 | 2
row 20 : 66 | francois feldman | "joy" | 1991 | 468,000 | 1
row 21 : 67 | patrick bruel | "qui a le droit... (live) | 1991 | 466,000 | 1
row 22 : 68 | youssou n'dour | "7 seconds" | 1994 | 465,000 | 1
row 23 : 73 | freddie mercury | "living on my own 1993" | 1993 | 426,000 | 1
row 24 : 81 | g.o. culture | "darla_dirladada" | 1993 | 397,000 | 1
row 25 : 82 | spice girls | "spice up your life" | 1997 | 397,000 | 3
row 26 : 85 | jean-philippe audin & | "song of ocarina" | 1991 | 379,000 | 1
row 27 : 86 | boris | "soiree disco" | 1996 | 376,000 | 1
row 28 : 89 | celine dion | "un garcon pas comme les autres (zi | 1993 | 365,000 | 2
row 29 : 90 | liane foly | "la vie ne m'apprend | 1999 | 364,000 | 3
row 30 : 91 | fool's garden | "lemon tree" | 1996 | 362,000 | 3 ] Execute this SQL based on the above table: select single order by peak desc limit 1
|
"je t'aime"
|
[ header: version | date | development cycle | size (in kb) | download | notes row 1 : 0.1 | 9 june 1993 | beta | None | evolt | None
row 2 : 0.2 | 14 june 1993 | beta | None | None | changelog
row 3 : 0.3 | 16 june 1993 | beta | None | None | changelog
row 4 : 0.4 | 18 june 1993 | beta | None | None | changelog
row 5 : 0.5 | 24 june 1993 | beta | None | None | changelog
row 6 : 0.6 | 30 june 1993 | beta | None | None | changelog
row 7 : 0.8 | 5 november 1993 | beta | None | None | changelog (distinct version discontinued)
row 8 : 0.9 | 12 november 1993 | beta-pre | None | None | None
row 9 : 0.9 | 16 november 1993 | beta | None | None | changelog
row 10 : 0.9 | 22 november 1993 | winsock alpha r9.2 | None | None | None
row 11 : 1 | 17 february 1994 | release | None | evolt | None
row 12 : 1.01 | None | release | None | None | None
row 13 : 1.01a | 17 march 1994 | release | 521 | [5], evolt | changelog
row 14 : 2 | None | alpha | None | None | development ceased ] Execute this SQL based on the above table: select min ( size (in kb) )
|
521.0
|
[ header: season | age | overall | slalom | giant slalom | super g | downhill | combined row 1 : 1967 | 16 | 27 | 19 | None | not run | None | not awarded
row 2 : 1968 | 17 | 12 | 11 | 8 | not run | None | not awarded
row 3 : 1969 | 18 | 7 | 4 | 11 | not run | 5 | not awarded
row 4 : 1970 | 19 | 11 | 8 | 10 | not run | 12 | not awarded
row 5 : 1971 | 20 | 14 | 13 | 9 | not run | 15 | not awarded
row 6 : 1972 | 21 | 6 | 4 | 7 | not run | 10 | not awarded
row 7 : 1973 | 22 | 4 | 2 | 8 | not run | 9 | not awarded
row 8 : 1974 | 23 | 7 | 2 | 13 | not run | 11 | not awarded
row 9 : 1975 | 24 | 3 | 7 | 7 | not run | 6 | not awarded
row 10 : 1976 | 25 | 1 | 1 | 3 | not run | 9 | 1 ] Execute this SQL based on the above table: select age where combined = 1
|
25
|
[ header: draw | artist | song | jury | televote | total | place row 1 : 1 | kasia nova | "the devil" | 0 | 1 | 1 | 11
row 2 : 2 | edi ann | "lovin'u" | 7 | 5 | 12 | 4
row 3 : 3 | izabela kopec | "you've got my love" | 4 | 6 | 10 | 6
row 4 : 4 | starnawski & urban noiz | "it's not a game" | 5 | 0 | 5 | 10
row 5 : 5 | queens | "i say my body" | 0 | 0 | 0 | 12
row 6 : 6 | isis gee | "for life" | 12 | 12 | 24 | 1
row 7 : 7 | man meadow | "viva la musica" | 2 | 10 | 12 | 3
row 8 : 8 | afromental | "thing we've got" | 3 | 4 | 7 | 9
row 9 : 9 | plastic | "do something" | 10 | 2 | 12 | 5
row 10 : 10 | sandra oxenryd | "superhero" | 6 | 3 | 9 | 8
row 11 : 11 | natasza urbanska | "blow over" | 8 | 7 | 15 | 2
row 12 : 12 | margo | "dlatego walcz" | 1 | 8 | 9 | 7 ] Execute this SQL based on the above table: select song where song in ( '"superhero"' , '"for life"' ) order by total asc limit 1
|
"superhero"
|
[ header: date | venue | opponent | result | tournament | scored row 1 : 10 february 2008 | craven park | st. helens | 24-22 | super league xiii | 1
row 2 : 24 march 2008 | jjb stadium | wigan warriors | 18-12 | super league xiii | 1
row 3 : 13 april 2008 | craven park | bradford bulls | 20-18 | super league xiii | 1
row 4 : 21 june 2008 | craven park | wakefield trinity wildcats | 18-26 | super league xiii | 1
row 5 : 8 march 2009 | craven park | wakefield trinity wildcats | 31-18 | super league xiv | 1
row 6 : 15 march 2009 | craven park | crusaders | 48-18 | super league xiv | 3
row 7 : 3 may 2009 | murrayfield stadium | warrington wolves | 28-36 | super league xiv | 1
row 8 : 20 june 2009 | brewery field | crusaders | 18-32 | super league xiv | 2
row 9 : 21 august 2009 | the willows | salford city reds | 10-14 | super league xiv | 1
row 10 : 5 september 2009 | craven park | warrington wolves | 40-16 | super league xiv | 3
row 11 : 12 september 2009 | belle vue | wakefield trinity wildcats | 24-10 | super league xiv | 1
row 12 : 7 february 2010 | craven park | salford city reds | 30-12 | super league xv | 1
row 13 : 16 may 2010 | craven park | crusaders | 54-10 | super league xv | 2
row 14 : 21 may 2010 | knowsley road | st. helens | 68-12 | super league xv | 1
row 15 : 20 june 2010 | craven park | harlequins rl | 42-6 | super league xv | 2
row 16 : 25 june 2010 | galpharm stadium | huddersfield giants | 16-16 | super league xv | 1
row 17 : 4 july 2010 | belle vue | wakefield trinity wildcats | 14-46 | super league xv | 1
row 18 : 15 july 2010 | kc stadium | hull | 20-16 | super league xv | 1
row 19 : 24 july 2010 | craven park | bradford bulls | 49-24 | super league xv | 2
row 20 : 15 august 2010 | the willows | salford city reds | 18-44 | super league xv | 2
row 21 : 13 february 2011 | millennium stadium | hull | 22-34 | super league xv | 1
row 22 : 20 february 2011 | halliwell jones stadium | warrington wolves | 24-22 | super league | 2
row 23 : 7 march 2011 | the jungle | castleford tigers | 27-14 | super league | 1
row 24 : 25 june 2011 | twickenham stoop | harlequins rl | 0-34 | super league | 1 ] Execute this SQL based on the above table: select sum ( scored ) where result = '24-22' and opponent = 'st. helens'
|
1.0
|
[ header: season | tier | division | place row 1 : 1970-01 | 6 | regional | None
row 2 : 2001/02 | 6 | 1a reg | None
row 3 : 2002/03 | 5 | reg. pref | 11th
row 4 : 2003/04 | 5 | reg. pref | 9th
row 5 : 2004/05 | 5 | reg. pref | 1st
row 6 : 2005/06 | 4 | 3a | 20th
row 7 : 2006/07 | 5 | reg. pref | 3rd
row 8 : 2007/08 | 5 | reg. pref | 1st
row 9 : 2008/09 | 4 | 3a | 16th
row 10 : 2009/10 | 4 | 3a | 17th
row 11 : 2010/11 | 4 | 3a | 18th
row 12 : 2011/12 | 5 | reg. pref | 2nd ] Execute this SQL based on the above table: select division order by tier desc limit 1
|
regional
|
[ header: genre | year | title | episode | role | notes row 1 : short film | 1992 | the bet | None | henry | 21 minutes
row 2 : short film | 1996 | sin #8 | None | None | None
row 3 : tv series | 1997 | nothing sacred | "speaking in tongues" | dr. elliott | None
row 4 : film | 1998 | finding north | None | travis furlong | None
row 5 : tv series | 1998 | sex and the city | "oh come all ye faithful" | tom | None
row 6 : tv series | 1999 | homicide: life on the street | "zen and the art of murder" | dennis kohler | None
row 7 : film | 1999 | the general's daughter | None | captain goodson | None
row 8 : tv series | 2000 | law & order: special victims unit | "misleader" "nocturne" | assistant district attorney | None
row 9 : film | 2001 | the anniversary party | None | jerry adams | None
row 10 : tv series | 2001 | the guardian | "loyalties" | the hudson's attorney | None
row 11 : tv film | 2001 | life with judy garland: me and | None | roger edens | None
row 12 : tv series | 2002 | hack | "obsession" | dr. martin shan | None
row 13 : tv series | 2005 | law & order | "mammon" | aaron solomon | 5 episodes total
row 14 : tv series | 2006 | brothers & sisters | "light the lights" | major guinness | None
row 15 : tv series | 2006 | justice | "wrongful death" | lloyd barrett | None
row 16 : tv series | 2006 | law & order | "profiteer" | aaron solomon | 5 episodes total
row 17 : tv series | 2007 | critical situation | "nightmare on mt. | narrator | voice actor; also known as situation critical
row 18 : tv series | 2007 | undercover history | "the hunt for hitler" "the hunt | narrator | voice actor; 6 episodes total
row 19 : tv series | 2008 | undercover history | "unabomber: the secret history" | narrator/himself | voice actor; 6 episodes total
row 20 : film | 2009 | the taking of pelham 123 | None | deputy mayor lasalle | None
row 21 : tv series | 2009 | timewatch | "the real bonnie and clyde | narrator | voice actor
row 22 : tv series | 2010 | the big c | "pilot" "summer time" "there | sean tolkey | 36 episodes total
row 23 : tv series | 2011 | a gifted man | "in case of exposure" | ben tucker | None
row 24 : tv series | 2011 | the good wife | "great firewall" | neil gross | 3 episodes total
row 25 : tv series | 2012 | the big c | "thin ice" "what's | sean tolkey | 36 episodes total ] Execute this SQL based on the above table: select genre where year > 2011 order by year limit 1
|
tv series
|
[ header: date | train | location | present location | comments | top speed (km/h) row 1 : 1969 / 1970 | transrapid 01 | munich | deutsches museum, munich | by krauss-maffei | None
row 2 : 6 may 1971 | mbb prinzipfahrzeug | mbb's otto | None | by mbb. first passenger-car | 90 (1971)
row 3 : 6 october 1971 | transrapid 02 | krauss-maffei' | krauss-maffei, | by krauss-maffei | 164 (october 1971)
row 4 : 1972 / 1974 ? | erlangener erprobungstrager | southern edge of erlangen (near nur | None | by siemens and others. electrodynamic suspension | 160 / 230 (1974) ?
row 5 : 20 december 1973 | transrapid 04 | munich - allach, west germany | technik museum speyer | by krauss-maffei | 250 (end 1973), 253.2 (21
row 6 : 1974 / january 1975 | komponentenmeßtrager (kom | manching, west germany | None | by mbb. unmanned. 1 | 401.3 (1974)
row 7 : 1975 | hmb1 | thyssen henschel in | None | by thyssen henschel. | None
row 8 : 1976 | hmb2 | thyssen henschel in | None | by thyssen henschel. | 36 (or 40 ?)
row 9 : 17 may 1979 | transrapid 05 | international transportation exhibition (iva 79) in | thyssenkrupp, | 908 m track | 75
row 10 : june 1983 | transrapid 06 | transrapid versuchsanlage e | a part is in deutsches museum, | presented to public in munich on 13 march 1983 | 302 (1984), 355 (1985),
row 11 : 1988 | transrapid 07 | transrapid versuchsanlage e | munich international airport and infozentrum lathen | presented to public at the international transportation exhibition (iva | 436 (1989), 450 (17 jun
row 12 : august 1999 | transrapid 08 | transrapid versuchsanlage e | destroyed 22 september 2006 in accident | None | None
row 13 : 2002 | transrapid smt | shanghai maglev train, china | shanghai, china | None | 501 (12 november 2003)
row 14 : 2007 | transrapid 09 | transrapid versuchsanlage e | None | None | None ] Execute this SQL based on the above table: select comments where location < ( select location where comments = 'by krauss-maffei. indoor benchtop model. only 600 mm long track' ) order by id desc limit 1
|
908 m track
|
[ header: year | artist | album | chart position | role row 1 : 1961 | eddie harris | "exodus" (single) | #16 r&b, #36 us | remastering engineer
row 2 : 1968 | eddie harris | "it's crazy" (single | #88 us | remastering engineer
row 3 : 1969 | eddie harris & | swiss movement | #1 jazz, #2 r&b, # | remixing & remastering engineer
row 4 : 1969 | r.b. greaves | r.b. greaves | #24 r&b, #85 us | mixing engineer
row 5 : 1971 | eddie harris & | second movement | #1 jazz, # 41 us | recording and remastering engineer
row 6 : 1971 | les mccann | invitation to openness | #8 jazz | remastering engineer
row 7 : 1971 | donny hathaway | donny hathaway | #6 r&b, #89 us | recording engineer
row 8 : 1972 | roberta flack & | roberta flack & | #3 us, #2 r&b, # | recording engineer
row 9 : 1972 | cream | live cream volume ii | #27 us | remixing engineer
row 10 : 1972 | herbie mann | hold on, i'm coming | #7 jazz | mixing engineer
row 11 : 1973 | bette midler | bette midler | #6 us | recording engineer
row 12 : 1973 | hall & oates | abandoned luncheonette | #33 us | recording engineer
row 13 : 1973 | willie nelson | shotgun willie | #41 us | recording engineer
row 14 : 1973 | les mccann | layers | #5 jazz | remastering engineer
row 15 : 1973 | the modern jazz quartet | blues on bach | #34 jazz | recording and mixing engineer
row 16 : 1973 | donny hathaway | extension of a man | #18 r&b, #69 us | recording engineer
row 17 : 1973 | bee gees | mr. natural | #178 us | recording engineer
row 18 : 1974 | the modern jazz quartet | the complete last concert | #34 jazz | mixing engineer
row 19 : 1976 | the rolling stones | black and blue | #1 us | recording engineer
row 20 : 1976 | willie nelson | the troublemaker | #1 country, #60 us | recording engineer
row 21 : 1979 | bette midler | thighs and whispers | #65 us | recording engineer
row 22 : 1983 | paul simon | hearts and bones | #35 us | recording engineer
row 23 : 1993 | david "fathead" newman | bigger & better | #10 jazz, #42 r&b | remastering engineer
row 24 : 1998 | various artists | jazz for the open road | #1 jazz | mastering engineer
row 25 : 1998 | various artists | jazz for the quiet times | #1 jazz | mastering engineer
row 26 : 1999 | various artists | jazz for when you're alone | #1 jazz | mastering engineer
row 27 : 1999 | various artists | jazz for a lazy day | #4 jazz | mastering engineer
row 28 : 2000 | various artists | jazz for a rainy afternoon | #1 jazz | mastering engineer
row 29 : 2000 | jane monheit | never never land | #2 jazz | mixing & mastering engineer
row 30 : 2000 | various artists | jazz for when you're in love | #9 jazz | mastering engineer
row 31 : 2001 | jane monheit | come dream with me | #1 jazz | mixing & mastering engineer
row 32 : 2002 | jane monheit | in the sun | #2 jazz | recording, mixing & mastering engineer
row 33 : 2003 | various artists | jazz for those peaceful moments | #4 jazz | mastering engineer
row 34 : 2007 | mocean worker | cinco de mowo! | #16 electronic | mastering engineer ] Execute this SQL based on the above table: select role where year < 1999 order by year desc limit 1
|
mastering engineer
|
[ header: rank | city | passengers | ranking | airline row 1 : 1 | united states, los angeles | 14749 | None | alaska airlines
row 2 : 2 | united states, houston | 5465 | None | united express
row 3 : 3 | canada, calgary | 3761 | None | air transat, westjet
row 4 : 4 | canada, saskatoon | 2282 | 4 | None
row 5 : 5 | canada, vancouver | 2103 | None | air transat
row 6 : 6 | united states, phoenix | 1829 | 1 | us airways
row 7 : 7 | canada, toronto | 1202 | 1 | air transat, canjet
row 8 : 8 | canada, edmonton | 110 | None | None
row 9 : 9 | united states, oakland | 107 | None | None ] Execute this SQL based on the above table: select rank where city = 'united states, oakland'
|
9
|
[ header: year | miss northern ireland | hometown | placement at miss world | notes row 1 : 2012 | tiffany brien | belfast | top 30 | top 10 of beach fashion and 1st
row 2 : 2011 | finola guinnane | drumbo | non-finalist | top 20 of beach beauty and top 77 of
row 3 : 2010 | lori moore | belfast | top 25 | winner of sports at miss world 2010
row 4 : 2009 | cherie gardiner | bangor | non-finalist | None
row 5 : 2008 | judith wilson | enniskillen | non-finalist | top 19 of talent at miss world 2008
row 6 : 2007 | melissa patton | belfast | non-finalist | None
row 7 : 2006 | catherine jean milligan | newtownards | top 17 | winner of miss talent at miss world 2006
row 8 : 2005 | lucy evangelista | portglenone | top 15 | later miss united kingdom 2005 and miss universe united kingdom
row 9 : 2004 | kirsty anne gabriel stew | enniskillen | non-finalist | None
row 10 : 2003 | diana sayers | belfast | non-finalist | None
row 11 : 2002 | gayle williamson | lurgan | non-finalist | later miss united kingdom 2002
row 12 : 2001 | angela mccarthy | belfast | non-finalist | None
row 13 : 2000 | julie lee-ann mart | belfast | non-finalist | None ] Execute this SQL based on the above table: select miss northern ireland where placement at miss world = 'non-finalist'
|
finola guinnane, cherie gardiner, judith wilson, melissa patton, kirsty anne gabriel stewart, diana sayers, gayle williamson, angela mccarthy, julie lee-ann martin
|
[ header: # | title | songwriters | producer(s) | performer (s) row 1 : 1 | "creative control" | o. credle, l. bas | organized konfusion | o.c
row 2 : 2 | "word...life" | o. credle, a. best | buckwild | o.c
row 3 : 3 | "o-zone" | o. credle, a. best | buckwild | o.c
row 4 : 4 | "born 2 live" | o. credle, a. best | buckwild | o.c
row 5 : 5 | "time's up" | o. credle, a. best | buckwild | o.c
row 6 : 6 | "point o' viewz" | o. credle, d. van | buckwild, prestige | o.c
row 7 : 7 | "constables" | o. credle, l. bas | organized konfusion | o.c
row 8 : 8 | "ga head" | o. credle, r. hall | lord finesse | o.c
row 9 : 9 | "no main topic" | o. credle, g. | dj ogee/o. | o.c., prince po
row 10 : 10 | "let it slide" | o. credle, a. best | buckwild | o.c., pharo
row 11 : 11 | "ma dukes" | o. credle, a. best | buckwild | o.c
row 12 : 12 | "story" | o. credle, g. | dj ogee/o. | o.c
row 13 : 13 | "outtro (sabotage) | o. credle, a. best | buckwild | o.c
row 14 : 14 | "born 2 live (remix)" | o. credle, a. best | organized konfusion | o.c ] Execute this SQL based on the above table: select performer (s) where id = ( select id where performer (s) = 'o.c., prince po' ) - 1
|
o.c
|
[ header: season | a technical | b scientific | c fine arts | d improvisational | e structural | rising stars!® | po projectoutreach® | university level row 1 : 2014-2015 | creature feature | making waves | feary tales | the improv games | lose to win | animal mish mash | brand aid | it's a stretch
row 2 : 2013-2014 | dig in | going to extremes | laugh art loud | pandemonium! | the tension builds | circus! | pitch and play | None
row 3 : 2012-2013 | in the zone | windvisible | in disguise | change in realitee | twist-o-rama | roy g biv | real to reel | None
row 4 : 2011-2012 | assembly required | the solar stage | coming attractions | news to me | hold it! | built to last | the world canvas | None
row 5 : 2010-2011 | unidentified moving object | spinning a tale | triple take road show | mythology mission | verses! foiled again! | big bug's bad day | dynamic networks | None
row 6 : 2009-2010 | direct diposit | di-bot | you're gonna flip! | do or di | breaking di news | weighty news | band together | None
row 7 : 2008-2009 | operation cooperation | instinct messaging | vidio lit hits | private di | a new angle! | hidden! | take charge | None
row 8 : 2007-2008 | obstacles, of course! | hit or myth | di've got a secret! | chorific! | switch! | twisdid history | None | None
row 9 : 2006-2007 | direct flight | csi-di | round about courage | switching traditions | card-di-ology | make it new, it's up to you | None | None
row 10 : 2005-2006 | back at you! | kidz rulz! | how'd that happen? | on safari | the inside dimension | 1-2-change-a-roo | None | None
row 11 : 2004-2005 | dizzy derby | sudden serendipity | live! it's radio di! | improving along | disigning bridges | more to the story! | None | None
row 12 : 2003-2004 | destinations in time | the plot and the pendulum | cartoon dimensions | upbeat improv | guessdimate! | surprise trip! | None | None
row 13 : 2002-2003 | change in direction | vidio adventure | theatre smarts | once improv a time | connecdid | lost and found | None | None
row 14 : 2001-2002 | it's your move | strandid | on holiday | the art of improv | dual di-lemma | None | None | None
row 15 : 2000-2001 | incredible techeffects | mystery loves company | anonymously yours | dinamic improv | triplicity | None | None | None
row 16 : 1999-2000 | fruit roller coaster & eggploration | if music be the food of life... play | mixing apples and oranges | instant pudding improv | it's not impastable! | None | None | None ] Execute this SQL based on the above table: select season where c fine arts = 'mixing apples and oranges'
|
1999-2000
|
[ header: year | competition | date | location | opponent | score | result | bye row 1 : 1990 | world group, 1st round | 2-4 feb | barcelona (esp) | spain | 3-2 | win |
row 2 : 1990 | world group, quarterfinals | 30 mar - 2 apr | vienna (aut) | italy | 5-0 | win |
row 3 : 1990 | world group, semifinals | 21-23 sep | vienna (aut) | united states | 2-3 | loss |
row 4 : 1991 | world group, 1st round | 1-3 feb | prague (tch) | czechoslovakia | 1-4 | loss |
row 5 : 1991 | world group, relegation play-off | 20-22 sep | manchester (gbr) | great britain | 1-3 | loss |
row 6 : 1992 | euro/african zone group i | None | None | None | None | None |
row 7 : 1992 | euro/african zone group i | 1-3 may | helsinki (fin) | finland | 4-1 | win |
row 8 : 1992 | world group, relegation play-off | 25-27 sep | vancouver (can) | canada | 3-1 | win |
row 9 : 1993 | world group, 1st round | 26-28 mar | vienna (aut) | france | 1-4 | loss |
row 10 : 1993 | world group, relegation play-off | 24-26 sep | christchurch (nzl) | new zealand | 3-2 | win |
row 11 : 1994 | world group, 1st round | 26-28 mar | graz (aut) | germany | 2-3 | loss |
row 12 : 1994 | world group, relegation play-off | 23-25 sep | montevideo (uru) | uruguay | 3-2 | win |
row 13 : 1995 | world group, 1st round | 3-5 feb | vienna (aut) | spain | 4-1 | win |
row 14 : 1995 | world group, quarterfinals | 31 mar - 2 apr | vaxjo (swe) | sweden | 0-5 | loss |
row 15 : 1996 | world group, 1st round | 9-12 feb | johannesburg (rsa) | south africa | 2-3 | loss |
row 16 : 1996 | world group, relegation play-off | 20-22 sep | sao paulo (bra) | brazil | 1-4 | loss |
row 17 : 1997 | euro/african zone group i | None | None | None | None | None |
row 18 : 1997 | euro/african zone group i | 4-6 apr | graz (aut) | croatia | 3-2 | win |
row 19 : 1997 | world group, relegation play-off | 19-21 sep | harare (zim) | zimbabwe | 2-3 | loss |
row 20 : 1998 | euro/african zone group i | 3-5 apr | ramat hasharon (isr) | israel | 1-4 | loss |
row 21 : 1998 | euro/african zone group i | 25-27 sep | portschach (aut) | denmark | 5-0 | win |
row 22 : 1999 | euro/african zone group i | 2-4 apr | wels (aut) | portugal | 4-1 | win |
row 23 : 1999 | world group, relegation play-off | 24-26 sep | portschach (aut) | sweden | 3-2 | win | ] Execute this SQL based on the above table: select competition where score = 3
|
world group, 1st round, world group, relegation play-offs, world group, relegation play-offs, world group, relegation play-offs, euro/african zone group i, semifinals, world group, relegation play-offs
|
[ header: city/municipality | city/municipality | no. of barangays | area (hectares) | population (2010) | income class (2010) | mayor (2010-2013) row 1 : None | baao | 30 | 10663 | 54971 | 3rd class | melquiades i. gait
row 2 : None | balatan | 17 | 9309 | 28699 | 4th class | ernesto a. bagas
row 3 : None | bato | 33 | 10712 | 48306 | 3rd class | jeanette r. bernal
row 4 : None | buhi | 38 | 24665 | 73809 | 1st class | rey p. lacoste
row 5 : None | bula | 33 | 16764 | 68011 | 2nd class | benjamin s. decen
row 6 : None | calabanga | 48 | 16380 | 78119 | 1st class | eduardo severo
row 7 : None | camaligan | 13 | 468 | 22254 | 5th class | marilou marquez-hirose
row 8 : None | caramoan | 49 | 27600 | 44945 | 2nd class | constantino h. cordial,
row 9 : None | gainza | 8 | 1475 | 10345 | 5th class | william angeles abilay
row 10 : None | garchitorena | 23 | 24380 | 25204 | 4th class | solon o.demetriou j
row 11 : None | goa | 34 | 20618 | 58503 | 2nd class | antero s. lim
row 12 : None | iriga city | 36 | 13735 | 105919 | 4th class | madeleine a. gazmen
row 13 : None | lagonoy | 38 | 37790 | 51814 | 2nd class | delfin r. pilapil
row 14 : None | libmanan | 75 | 34282 | 100002 | 1st class | marilyn a. jimenez
row 15 : None | lupi | 38 | 19912 | 30118 | 3rd class | raul m. matamoros
row 16 : None | magarao | 15 | 4497 | 24274 | 4th class | salvador a. senar
row 17 : None | milaor | 20 | 3364 | 28474 | 4th class | rogelio a.
row 18 : None | nabua | 42 | 9620 | 80111 | 1st class | delia c. simbulan
row 19 : 25px | naga city | 27 | 8448 | 174931 | 2nd class | john g. bongat
row 20 : None | ocampo | 25 | 11833 | 43523 | 3rd class | fidel c. carido
row 21 : None | pamplona | 17 | 8060 | 34471 | 4th class | gimeno a. imperial
row 22 : None | pasacao | 19 | 14954 | 45946 | 3rd class | asuncion v. arseni
row 23 : None | pili | 26 | 12625 | 82307 | 1st class | tomas p. bongalonta,
row 24 : None | presentacion | 18 | 14380 | 20023 | 4th class | joey a. delen
row 25 : None | sagnay | 19 | 15476 | 31314 | 4th class | evelyn b. fuente
row 26 : None | san fernando | 22 | 7176 | 33281 | 4th class | eugenio "jun" ] Execute this SQL based on the above table: select city/municipality order by id desc limit 1
|
san fernando
|
[ header: match | date | round | home/away | opponent team | score | scorers row 1 : 1 | 17 september 2007 | group stage | home | benfica | 2-1 | pirlo 9', inzaghi
row 2 : 2 | 3 october 2007 | group stage | away | celtic | 2-1 | kaka 68' (pen.)
row 3 : 3 | 24 october 2007 | group stage | home | shakhtar donetsk | 4-1 | gilardino 6', 14
row 4 : 4 | 6 november 2007 | group stage | away | shakhtar donetsk | 0-3 | inzaghi 66', 90+3
row 5 : 5 | 28 november 2007 | group stage | away | benfica | 1-1 | pirlo 15'
row 6 : 6 | 4 december 2007 | group stage | home | celtic | 1-0 | inzaghi 70'
row 7 : 7 | 20 february 2008 | round of 16 | away | arsenal | 0-0 | None
row 8 : 8 | 4 march 2008 | round of 16 | home | arsenal | 0-2 | None ] Execute this SQL based on the above table: select match where score < 466
|
1, 2, 3, 4, 5, 6, 7, 8
|
[ header: date | winner | runner-up | result | site | attendance row 1 : february 11, 1978 | #2 maryland | #1 nc state | 89-82 | charlottesville, virginia | 1500
row 2 : february 10, 1979 | #1 maryland | #2 nc state | 75-73 | raleigh, north carolina | 3500
row 3 : february 10, 1980 | #1 nc state | #2 maryland | 85-75 | college park, maryland | None
row 4 : february 14, 1981 | #3 maryland | #4 nc state | 64-63 | clemson, south carolina | 300
row 5 : march 6, 1983 | #3 maryland | #1 nc state | 84-81 | fayetteville, north carolin | 2134
row 6 : march 4, 1984 | #5 north carolina | #3 nc state | 99-76 | fayetteville, north carolin | 3733
row 7 : march 3, 1986 | #5 maryland | #2 north carolina | 92-74 | fayetteville, north carolin | 2632
row 8 : march 2, 1987 | #2 nc state | #1 virginia | 57-56 | fayetteville, north carolin | 2987
row 9 : march 7, 1988 | #2 maryland | #1 virginia | 76-70 | fayetteville, north carolin | 1223
row 10 : march 4, 1991 | #3 nc state | #4 clemson | 84-61 | fayetteville, north carolin | 4102
row 11 : march 9, 1992 | #1 virginia | #7 georgia tech | 70-69 | rock hill, south carolina | 4154
row 12 : march 8, 1993 | #1 virginia | #2 maryland | 106-103 3ot | rock hill, south carolina | 3716
row 13 : march 7, 1994 | #2 north carolina | #1 virginia | 77-60 | rock hill, south carolina | 4386
row 14 : march 5, 1995 | #2 north carolina | #4 duke | 95-70 | rock hill, south carolina | 5724
row 15 : march 2, 1997 | #1 north carolina | #6 clemson | 62-58 | charlotte, north carolina | 5543
row 16 : march 1, 1998 | #4 north carolina | #2 clemson | 81-50 | charlotte, north carolina | 5534
row 17 : march 5, 2001 | #1 duke | #3 nc state | 57-45 | greensboro, north carolina | 8933
row 18 : march 4, 2002 | #1 duke | #2 north carolina | 87-80 | greensboro, north carolina | 9204
row 19 : march 10, 2003 | #1 duke | #2 north carolina | 77-59 | greensboro, north carolina | 11127
row 20 : march 7, 2005 | #1 north carolina | #2 duke | 88-67 | greensboro, north carolina | 11578
row 21 : march 5, 2006 | #1 north carolina | #3 maryland | 91-80 | greensboro, north carolina | 10746
row 22 : march 4, 2007 | #2 north carolina | #4 nc state | 60-54 | greensboro, north carolina | 11538
row 23 : march 9, 2008 | #1 north carolina | #3 duke | 86-73 | greensboro, north carolina | 11132
row 24 : march 7, 2010 | #1 duke | #6 nc state | 70-60 | greensboro, north carolina | 9432
row 25 : march 6, 2011 | #1 duke | #6 north carolina | 81-67 | greensboro, north carolina | 9890
row 26 : march 4, 2012 | #3 maryland | #4 georgia tech | 68-65 | greensboro, north carolina | 9122
row 27 : march 10, 2013 | #1 duke | #3 north carolina | 92-73 | greensboro, north carolina | 8166 ] Execute this SQL based on the above table: select ( select winner where runner-up = '#6 clemson' ) - ( select winner where runner-up = '#7 georgia tech' )
|
0
|
[ header: rank | nation | gold | silver | bronze | total row 1 : 1 | china (chn) | 71 | 39 | 35 | 145
row 2 : 2 | south korea (kor) | 45 | 30 | 31 | 106
row 3 : 3 | thailand (tha) | 17 | 22 | 18 | 57
row 4 : 4 | singapore (sin) | 14 | 18 | 21 | 53
row 5 : 5 | japan (jpn) | 12 | 11 | 10 | 33
row 6 : 6 | hong kong (hkg) | 7 | 13 | 18 | 38
row 7 : 7 | india (ind) | 8 | 7 | 10 | 25
row 8 : 8 | chinese taipei | 7 | 13 | 20 | 40
row 9 : 9 | kazakhstan (kaz) | 5 | 10 | 12 | 27
row 10 : 10 | north korea (prk) | 5 | 6 | 9 | 20
row 11 : 11 | vietnam (vie) | 5 | 6 | 2 | 13
row 12 : 12 | malaysia (mas) | 4 | 6 | 8 | 18
row 13 : 13 | kuwait (kuw) | 4 | 3 | 5 | 12
row 14 : 14 | philippines (phi) | 2 | 4 | 1 | 7
row 15 : 15 | iran (iri) | 1 | 9 | 4 | 14
row 16 : 16 | qatar (qat) | 1 | 4 | 0 | 5
row 17 : 17 | uzbekistan (uzb | 1 | 2 | 8 | 11
row 18 : 18 | indonesia (ina) | 1 | 2 | 3 | 6
row 19 : 19 | saudi arabia (ksa) | 1 | 1 | 2 | 4
row 20 : 20 | yemen (yem) | 1 | 0 | 1 | 2
row 21 : 21 | syria (syr | 1 | 0 | 0 | 1
row 22 : 22 | sri lanka (sr | 0 | 2 | 7 | 9
row 23 : 23 | iraq (irq) | 0 | 1 | 1 | 2
row 24 : 23 | macau (mac) | 0 | 1 | 1 | 2
row 25 : 23 | tajikistan (tjk) | 0 | 1 | 1 | 2
row 26 : 26 | jordan (jor) | 0 | 0 | 3 | 3
row 27 : 26 | mongolia (mgl) | 0 | 0 | 3 | 3
row 28 : 28 | bahrain (brn) | 0 | 0 | 2 | 2
row 29 : 29 | kyrgyzstan (kgz | 0 | 0 | 1 | 1
row 30 : 29 | myanmar (mya) | 0 | 0 | 1 | 1
row 31 : 29 | pakistan (pak) | 0 | 0 | 1 | 1
row 32 : total | total | 213 | 211 | 239 | 663 ] Execute this SQL based on the above table: select count ( nation ) where nation < 61
|
0
|
[ header: location | town | output (mw ac) | modules | number of arrays row 1 : h. lee dennison building | hauppauge | 1.75 | 7737 | 24
row 2 : north county complex | hauppauge | 0.5 | 3431 | 9
row 3 : cohalan court complex | central islip | 3.5 | 15113 | 27
row 4 : riverhead county center | riverside | 3 | 11536 | 31
row 5 : brentwood lirr parking lot | brentwood | 1 | 3924 | 11
row 6 : deer park lirr parking lot | deer park | 2.25 | 3924 | 39
row 7 : ronkonkoma lir | ronkonkoma | 5 | 20110 | 44 ] Execute this SQL based on the above table: select town where modules > 85 order by number of arrays desc limit 1
|
ronkonkoma
|
[ header: rank | bib | athlete | country | time | deficit | note row 1 : 8 | 37 | laure barthelemy | france | 3:08.53 | 4.64 | q
row 2 : 10 | 27 | magda genuin | italy | 3:09.91 | 6.02 | q
row 3 : 11 | 16 | arianna follis | italy | 3:10.41 | 6.52 | q
row 4 : 12 | 24 | celine brun-lie | norway | 3:10.45 | 6.56 | q
row 5 : 21 | 40 | riikka sarasoja | finland | 3:13.49 | 9.6 | q
row 6 : 24 | 9 | perianne jones | canada | 3:13.95 | 10.06 | q
row 7 : 26 | 21 | anastasia dotsenko | russia | 3:15.03 | 11.14 | q
row 8 : 27 | 33 | daria gaiazova | canada | 3:15.10 | 11.21 | q
row 9 : 29 | 7 | jessica diggins | united states | 3:15.24 | 11.35 | q
row 10 : 32 | 38 | natalya korostelyova | russia | 3:15.83 | 11.94 | None
row 11 : 37 | 26 | madoka natsumi | japan | 3:17.89 | 14 | None
row 12 : 38 | 28 | pirjo muranen | finland | 3:18.21 | 14.32 | None
row 13 : 39 | 54 | elena soboleva | russia | 3:19.55 | 15.66 | None
row 14 : 40 | 11 | elena kolomina | kazakhstan | 3:20.17 | 16.28 | None
row 15 : 53 | 59 | rosamund musgrave | united kingdom | 3:26.34 | 22.45 | None
row 16 : 54 | 1 | anastasia slonova | kazakhstan | 3:26.51 | 22.62 | None
row 17 : 56 | 4 | piret pormeister | estonia | 3:27.34 | 23.45 | None
row 18 : 57 | 64 | maryna antsybor | ukraine | 3:28.17 | 24.28 | None
row 19 : 62 | 63 | monika gyorgy | romania | 3:32.20 | 28.31 | None
row 20 : 63 | 71 | niviaq chemnitz | denmark | 3:32.56 | 28.67 | None
row 21 : 67 | 67 | zoya zaviediei | ukraine | 3:38.21 | 31.32 | None
row 22 : 74 | 86 | irina khodiakov | kyrgyzstan | 3:52.24 | 48.35 | None
row 23 : 78 | 77 | agnes simon | hungary | 4:04.44 | +1:00.55 | None
row 24 : 82 | 73 | syuzanna varosyan | armenia | 4:25.77 | +1:21.88 | None
row 25 : 84 | 76 | valya varosyan | armenia | 4:30.74 | +1:26.85 | None
row 26 : 85 | 80 | zane eglite | latvia | 4:37.37 | +1:33.48 | None
row 27 : None | 61 | brooke gosling | canada | dns | None | None ] Execute this SQL based on the above table: select time - time where country = 'finland'
|
0, 0
|
[ header: year | actor | award | category | role | episode | result row 1 : 1992 | nancy cartwright | primetime emmy award | outstanding voice-over performance | bart simpson | "separate vocations" | won
row 2 : 1992 | dan castellaneta | primetime emmy award | outstanding voice-over performance | homer simpson | "lisa's pony" | won
row 3 : 1992 | julie kavner | primetime emmy award | outstanding voice-over performance | marge simpson | "i married marge" | won
row 4 : 1992 | jackie mason | primetime emmy award | outstanding voice-over performance | rabbi hyman k | "like father, like clown" | won
row 5 : 1992 | yeardley smith | primetime emmy award | outstanding voice-over performance | lisa simpson | "lisa the greek" | won
row 6 : 1992 | marcia wallace | primetime emmy award | outstanding voice-over performance | edna krabappel | "bart the lover" | won
row 7 : 1993 | dan castellaneta | primetime emmy award | outstanding voice-over performance | homer simpson | "mr. plow" | won
row 8 : 1995 | nancy cartwright | annie award | voice acting in the field of animation | bart simpson | "radio bart" | won
row 9 : 1997 | maggie roswell | annie award | best voice acting by a female performer | shary bobbins | "simpsoncalifragilisticex | nominated
row 10 : 1998 | hank azaria | primetime emmy award | outstanding voice-over performance | apu nahasapee | None | won
row 11 : 2001 | hank azaria | primetime emmy award | outstanding voice-over performance | various | "worst episode ever" | won
row 12 : 2003 | hank azaria | primetime emmy award | outstanding voice-over performance | various | "moe baby blues" | won
row 13 : 2004 | dan castellaneta | primetime emmy award | outstanding voice-over performance | various characters | "today i am a clown" | won
row 14 : 2006 | kelsey grammer | primetime emmy award | outstanding voice-over performance | sideshow bob | "the italian bob" | won
row 15 : 2007 | julie kavner | annie award | best voice acting in an animated feature | marge simpson | the simpsons movie | nominated
row 16 : 2009 | hank azaria | primetime emmy award | outstanding voice-over performance | moe szyslak | "eeny teeny maya mo | nominated
row 17 : 2009 | dan castellaneta | primetime emmy award | outstanding voice-over performance | homer simpson | "father knows worst" | won
row 18 : 2009 | harry shearer | primetime emmy award | outstanding voice-over performance | mr. burns, smithers | "the burns and the bees" | nominated
row 19 : 2010 | hank azaria | primetime emmy award | outstanding voice-over performance | moe szyslak, | "moe letter blues" | nominated
row 20 : 2010 | dan castellaneta | primetime emmy award | outstanding voice-over performance | homer simpson, grampa | "thursday with abie" | nominated ] Execute this SQL based on the above table: select role where episode = '"today i am a clown"' order by category asc limit 1
|
various characters
|
[ header: rank | nation | gold | silver | bronze | total row 1 : 1 | nigeria | 13 | 5 | 6 | 24
row 2 : 2 | south africa | 11 | 11 | 8 | 30
row 3 : 3 | ethiopia | 6 | 3 | 2 | 11
row 4 : 4 | kenya | 5 | 4 | 8 | 17
row 5 : 5 | tunisia | 2 | 2 | 1 | 5
row 6 : 6 | senegal | 2 | 1 | 3 | 6
row 7 : 7 | ghana | 2 | 0 | 4 | 6
row 8 : 8 | cameroon | 1 | 4 | 1 | 6
row 9 : 9 | egypt | 1 | 1 | 2 | 4
row 10 : 10 | mauritius | 1 | 0 | 1 | 2
row 11 : 11 | mozambique | 1 | 0 | 0 | 1
row 12 : 12 | algeria | 0 | 8 | 1 | 9
row 13 : 13 | madagascar | 0 | 2 | 1 | 3
row 14 : 14 | zimbabwe | 0 | 1 | 1 | 2
row 15 : 15 | tanzania | 0 | 1 | 0 | 1
row 16 : 15 | togo | 0 | 1 | 0 | 1
row 17 : 15 | burkina faso | 0 | 1 | 0 | 1
row 18 : 18 | central african republic | 0 | 0 | 1 | 1
row 19 : 18 | uganda | 0 | 0 | 1 | 1
row 20 : 18 | namibia | 0 | 0 | 1 | 1
row 21 : 18 | ivory coast | 0 | 0 | 1 | 1 ] Execute this SQL based on the above table: select count ( * ) where nation = 'mauritius'
|
1
|
[ header: # | title | english translation | original album | length row 1 : 1 | mimpi yang sempurn | a perfect dream | kisah 2002 malam | 4:30
row 2 : 2 | bintang di surga | stars in the heaven | bintang di surga | None
row 3 : 3 | aku dan bintang | the stars and me | taman langit | 3:39
row 4 : 4 | jauh mimpiku | distant dreams of mine | ost. alexandria | None
row 5 : 5 | hari yang cerah un | a bright day for a lonely soul | hari yang cerah | 3:59
row 6 : 6 | menunggu pagi | waiting for dawn | ost. alexandria | None
row 7 : 7 | khayalan tingkat ting | high-level imagination | bintang di surga | None
row 8 : 8 | sahabat | best friend | taman langit | 4:33
row 9 : 9 | sally sendiri | sally alone | hari yang cerah | 4:17
row 10 : 10 | langit tak mendengar | the sky didn't listen | ost. alexandria | None
row 11 : 11 | di belakangku | behind me | bintang di surga | None
row 12 : 12 | kita tertawa | we laugh | taman langit | 3:29
row 13 : 13 | membebaniku | burdening me | ost. alexandria | 4:25
row 14 : 14 | cobalah mengerti | try to understand | hari yang cerah | 3:30
row 15 : 15 | topeng | mask | taman langit | 4:25 ] Execute this SQL based on the above table: select max ( length ) where original album = 'taman langit' and original album = 'taman langit'
|
4
|
[ header: party | votes | % | swing | seats | change row 1 : australian labor party | 166106 | 50.84 | 2.75 | 15 | 3
row 2 : liberal and country league | 119106 | 36.45 | -4.05 | 20 | -3
row 3 : independent | 36271 | 11.1 | 1.03 | 4 | 0
row 4 : other | 5238 | 1.6 | None | 0 | 0
row 5 : total | 326721 | None | None | 39 | None
row 6 : liberal and country league | win | 47 | -4.3 | 20 | -3
row 7 : australian labor party | None | 53 | 4.3 | 15 | 3 ] Execute this SQL based on the above table: select votes where votes in ( 166106 , 'win' ) group by votes order by count ( party ) desc limit 1
|
win
|
[ header: title | release date | developer(s) | publisher(s) | genre(s) row 1 : 187 ride or die | 2005-08-23 | ubisoft | ubisoft | driving
row 2 : 50 cent: bulletproof | 2005-11-17 | genuine games | sierra entertainment | None
row 3 : 50 cent: blood on the sand | 2009-02-20 | swordfish studios | thq | None
row 4 : 25 to life | 2006-01-17 | avalanche software, ritual entertainment | eidos interactive | None
row 5 : gangland (video game) | 2004-02-14 | mediamobsters | whiptail interactive | None
row 6 : gangsters: organized crime | 1998-11-30 | hothouse creations | eidos interactive | None
row 7 : gangsters 2 | 2001-06-01 | hothouse creations | eidos interactive | None
row 8 : the godfather: the game | 2006-03-21 | ea redwood shores | electronic arts | None
row 9 : the godfather ii | 2009-04-07 | ea redwood shores | electronic arts | None
row 10 : grand theft auto iii | 2001-10-22 | dma design | rockstar games | None
row 11 : grand theft auto: vice city | 2002-10-22 | rockstar north | rockstar games | None
row 12 : grand theft auto: san andreas | 2004-10-24 | rockstar north | rockstar games | None
row 13 : mafia: the city of lost heaven | 2002-08-28 | illusion softworks | gathering of developers | None
row 14 : mafia ii | 2010-08-24 | 2k czech, massive bear studio | 2k games, 1c company | None
row 15 : mob rule | 1999-9-30 | simon & schuster interactive | studio 3 interactive | None
row 16 : saints row | 2006-08-29 | volition | thq | None
row 17 : saints row 2 | 2008-10-14 | volition, inc | thq | None
row 18 : omerta - city of | 2013-01-31 | haemimont games | kalypso media | building simulation, rpg ] Execute this SQL based on the above table: select count ( * ) where genre(s) = 987 and release date = '2005-11-17'
|
0
|
[ header: # | date | winner | score | location | notes row 1 : 47 | december 31, 1971 | west | 17-13 | san francisco, ca | None
row 2 : 48 | december 30, 1972 | east | 9-3 | san francisco, ca | None
row 3 : 49 | december 29, 1973 | east | 35-7 | san francisco, ca | None
row 4 : 50 | december 28, 1974 | east | 16-14 | stanford, ca | None
row 5 : 51 | january 3, 1976 | west | 21-14 | stanford, ca | None
row 6 : 53 | december 31, 1977 | west | 23-3 | stanford, ca | None
row 7 : 54 | january 6, 1979 | east | 56-17 | stanford, ca | None
row 8 : 56 | january 10, 1981 | east | 21-3 | stanford, ca | None
row 9 : 57 | january 9, 1982 | west | 20-13 | stanford, ca | None
row 10 : 58 | january 15, 1983 | east | 26-25 | stanford, ca | None
row 11 : 59 | january 7, 1984 | east | 27-19 | stanford, ca | None
row 12 : 60 | january 5, 1985 | west | 21-10 | stanford, ca | None
row 13 : 61 | january 11, 1986 | east | 18-7 | stanford, ca | None
row 14 : 62 | january 10, 1987 | west | 24-21 | stanford, ca | None
row 15 : 64 | january 15, 1989 | east | 24-6 | stanford, ca | None
row 16 : 65 | january 21, 1990 | west | 22-21 | stanford, ca | None
row 17 : 66 | january 26, 1991 | west | 24-21 | stanford, ca | None
row 18 : 67 | january 19, 1992 | west | 14-6 | stanford, ca | None
row 19 : 68 | january 24, 1993 | east | 31-17 | stanford, ca | None
row 20 : 69 | january 15, 1994 | west | 29-28 | stanford, ca | None
row 21 : 70 | january 14, 1995 | west | 30-28 | stanford, ca | None
row 22 : 73 | january 10, 1998 | west | 24-7 | stanford, ca | None
row 23 : 75 | january 15, 2000 | east | 35-21 | stanford, ca | None
row 24 : 77 | january 12, 2002 | west | 21-13 | san francisco, ca | None
row 25 : 78 | january 11, 2003 | east | 20-17 | san francisco, ca | None
row 26 : 79 | january 10, 2004 | west | 28-7 | san francisco, ca | None
row 27 : 80 | january 15, 2005 | east | 45-27 | san francisco, ca | None
row 28 : 81 | january 21, 2006 | west | 35-31 | san antonio, | None
row 29 : 82 | january 20, 2007 | west | 21-3 | houston, tx | None
row 30 : 83 | january 19, 2008 | west | 31-13 | houston, tx | None
row 31 : 84 | january 17, 2009 | east | 24-19 | houston, tx | None
row 32 : 85 | january 23, 2010 | east | 13-10 | orlando, fl | notes
row 33 : 86 | january 22, 2011 | east | 25-8 | orlando, fl | notes
row 34 : 87 | january 21, 2012 | west | 24-17 | st. petersburg, f | notes
row 35 : 89 | january 18, 2014 | east | 23-13 | st. petersburg, f | notes ] Execute this SQL based on the above table: select location order by # limit 1
|
san francisco, ca
|
[ header: season | east superleague | east premier league | east region south division | east region central division | east region north division row 1 : 2006-07 | linlithgow rose | glenrothes | newtongrange star | dundonald bluebell | forfar west end
row 2 : 2007-08 | lochee united | bo'ness united | fauldhouse united | ballingry rovers | blairgowrie
row 3 : 2008-09 | bonnyrigg rose athletic | musselburgh athletic | armadale thistle | st andrews united | montrose roselea
row 4 : 2009-10 | bo'ness united | tayport | broxburn athletic | thornton hibs | broughty athletic
row 5 : 2010-11 | bo'ness united | st. andrews united | sauchie juniors | oakley united | downfield
row 6 : 2011-12 | bonnyrigg rose athletic | sauchie juniors | dalkeith thistle | jeanfield swifts | dundee violet
row 7 : 2012-13 | linlithgow rose | newtongrange star | fauldhouse united | kinnoull | kirriemuir thistle ] Execute this SQL based on the above table: select count ( * ) where east region central division >= 38
|
7
|
[ header: year | single | charts fr | charts bel wa | charts swi | certification | album row 1 : 1997 | "sur la route" | 14 | None | None | | la derniere annee
row 2 : 2000 | "j'en reve encore" | 7 | 4 | None | | marcher dans le sable
row 3 : 2001 | "une seule vie (marcher dans le | 30 | None | None | | marcher dans le sable
row 4 : 2001 | "tomber" | 35 | None | None | | marcher dans le sable
row 5 : 2004 | "elle s'ennuie" | 35 | None | 73 | | None
row 6 : 2004 | "elle danse seule" | 22 | None | 46 | | un homme sans racines
row 7 : 2011 | "l'etranger" | 59 | None | None | | sur ma route
row 8 : 2013 | "je me souviens de tout" | 130 | None | None | | da palmas ] Execute this SQL based on the above table: select album order by charts bel wa desc limit 1
|
marcher dans le sable
|
[ header: district | name | party | district office | first elected row 1 : 1 | a.g. crowe | rep | slidell | 2007
row 2 : 2 | troy brown | dem | napoleonville | 2011
row 3 : 3 | j.p. morrell | dem | new orleans | 2008
row 4 : 4 | ed murray | dem | new orleans | 2005
row 5 : 5 | karen carter peterson | dem | new orleans | 2010
row 6 : 6 | bodi white | rep | baton rouge | 2011
row 7 : 7 | david heitmeier | dem | new orleans | 2007
row 8 : 8 | john alario | rep | westwego | 2007
row 9 : 9 | conrad appel | rep | metairie | 2008
row 10 : 10 | daniel martiny | rep | metairie | 2007
row 11 : 11 | jack donahue | rep | mandeville | 2007
row 12 : 12 | ben nevers | dem | bogalusa | 2003
row 13 : 13 | dale m. erdey | rep | livingston | 2007
row 14 : 14 | yvonne dorsey- | dem | baton rouge | 2007
row 15 : 15 | sharon weston broome | dem | baton rouge | 2004
row 16 : 16 | dan claitor | rep | baton rouge | 2009
row 17 : 17 | rick ward, iii | rep | port allen | 2011
row 18 : 18 | jody amedee | rep | gonzales | 2003
row 19 : 19 | gary smith, jr | dem | norco | 2011
row 20 : 20 | norby chabert | rep | houma | 2009
row 21 : 21 | bret allain | rep | franklin | 2011
row 22 : 22 | fred h. mills, | rep | new iberia | 2011
row 23 : 23 | page cortez | rep | lafayette | 2011
row 24 : 24 | elbert guillory | rep | opelousas | 2009
row 25 : 25 | dan "blade" morrish | rep | jennings | 2007
row 26 : 26 | jonathan perry | rep | kaplan | 2011
row 27 : 27 | ronnie johns | rep | lake charles | 2011
row 28 : 28 | eric lafleur | dem | ville platte | 2007
row 29 : 29 | rick gallot | dem | ruston | 2011
row 30 : 30 | john r. smith | rep | leesville | 2007
row 31 : 31 | gerald long | rep | winnfield | 2007
row 32 : 32 | neil riser | rep | columbia | 2007
row 33 : 33 | mike walsworth | rep | west monroe | 2007
row 34 : 34 | francis c. thomp | dem | delhi | 2007
row 35 : 35 | robert kostelka | rep | monroe | 2003
row 36 : 36 | robert adley | rep | benton | 2003
row 37 : 37 | barrow peacock | rep | bossier | 2011
row 38 : 38 | sherri smith buffington | rep | keithville | 2003
row 39 : 39 | gregory tarver | dem | shreveport | 2011 ] Execute this SQL based on the above table: select party where party in ( 'rep' , 'rep' ) order by district desc limit 1
|
rep
|
[ header: year | team | gp | gs | mpg | fg% | 3p% | ft% | rpg | apg | spg | bpg | ppg row 1 : 1993-94 | golden state | 76 | 76 | 32.1 | 0.552 | 0 | 0.532 | 9.1 | 3.6 | 1.2 | 2.2 | 17.5
row 2 : 1994-95 | washington | 54 | 52 | 38.3 | 0.495 | 0.276 | 0.502 | 9.6 | 4.7 | 1.5 | 1.6 | 20.1
row 3 : 1995-96 | washington | 15 | 15 | 37.2 | 0.543 | 0.441 | 0.594 | 7.6 | 5 | 1.8 | 0.6 | 23.7
row 4 : 1996-97 | washington | 72 | 72 | 39 | 0.518 | 0.397 | 0.565 | 10.3 | 4.6 | 1.7 | 1.9 | 20.1
row 5 : 1997-98 | washington | 71 | 71 | 39.6 | 0.482 | 0.317 | 0.589 | 9.5 | 3.8 | 1.6 | 1.7 | 21.9
row 6 : 1998-99 | sacramento | 42 | 42 | 40.9 | 0.486 | 0.118 | 0.454 | 13 | 4.1 | 1.4 | 2.1 | 20
row 7 : 1999-00 | sacramento | 75 | 75 | 38.4 | 0.483 | 0.284 | 0.751 | 10.5 | 4.6 | 1.6 | 1.7 | 24.5
row 8 : 2000-01 | sacramento | 70 | 70 | 40.5 | 0.481 | 0.071 | 0.703 | 11.1 | 4.2 | 1.3 | 1.7 | 27.1
row 9 : 2001-02 | sacramento | 54 | 54 | 38.4 | 0.495 | 0.263 | 0.749 | 10.1 | 4.8 | 1.7 | 1.4 | 24.5
row 10 : 2002-03 | sacramento | 67 | 67 | 39.1 | 0.461 | 0.238 | 0.607 | 10.5 | 5.4 | 1.6 | 1.3 | 23
row 11 : 2003-04 | sacramento | 23 | 23 | 36.1 | 0.413 | 0.2 | 0.711 | 8.7 | 4.6 | 1.3 | 0.9 | 18.7
row 12 : 2004-05 | sacramento | 46 | 46 | 36.3 | 0.449 | 0.379 | 0.799 | 9.7 | 5.5 | 1.5 | 0.7 | 21.3
row 13 : 2004-05 | philadelphia | 21 | 21 | 33.4 | 0.391 | 0.267 | 0.776 | 7.9 | 3.1 | 1.2 | 0.9 | 15.6
row 14 : 2005-06 | philadelphia | 75 | 75 | 38.6 | 0.434 | 0.273 | 0.756 | 9.9 | 3.4 | 1.4 | 0.8 | 20.2
row 15 : 2006-07 | philadelphia | 18 | 18 | 30.2 | 0.387 | 0.4 | 0.643 | 8.3 | 3.4 | 1 | 0.8 | 11
row 16 : 2006-07 | detroit | 43 | 42 | 29.7 | 0.489 | 0.333 | 0.636 | 6.7 | 3 | 1 | 0.6 | 11.3
row 17 : 2007-08 | golden state | 9 | 8 | 14 | 0.484 | 0 | 0.417 | 3.6 | 2 | 0.4 | 0.7 | 3.9
row 18 : career | None | 831 | 827 | 37.1 | 0.479 | 0.299 | 0.649 | 9.8 | 4.2 | 1.4 | 1.4 | 20.7
row 19 : all-star | None | 4 | 4 | 19 | 0.371 | 0.333 | 0.375 | 6 | 3.3 | 1 | None | 7.5 ] Execute this SQL based on the above table: select team where team = 'sacramento'
|
sacramento, sacramento, sacramento, sacramento, sacramento, sacramento, sacramento
|
[ header: district | area size (km2) | population | density per km2 row 1 : yamato flat inland plain | 837.27 | 1,282 | 1,531
row 2 : (share in %) | 22.7% | 89.7% | None
row 3 : yamato highland | 506.89 | 56 | 110
row 4 : (share in %) | 13.7% | 3.9% | None
row 5 : gojo, yoshino | 2,346.84 | 92 | 39
row 6 : (share in %) | 63.6% | 6.4% | None
row 7 : total prefecture | 3,691.09 | 1,430 | 387
row 8 : (share in %) | 100.0% | 100.0% | None ] Execute this SQL based on the above table: select count ( * ) where area size (km2) = '13.7%'
|
1
|
[ header: year | competition | venue | position | notes row 1 : 1996 | olympic games | atlanta, united states | 36th (q) | 5.55 m
row 2 : 1998 | asian games | bangkok, thailand | 8th | 6.07 m
row 3 : 1999 | world championships | seville, spain | 23rd (q) | 6.40 m
row 4 : 2000 | olympic games | sydney, australia | 14th (q) | 6.57 m
row 5 : 2001 | world championships | edmonton, canada | 13th (q) | 6.46 m
row 6 : 2002 | asian championships | colombo, sri lan | 1st | 6.61 m
row 7 : 2002 | asian games | busan, south korea | 3rd | 6.30 m
row 8 : 2003 | world championships | paris, france | 23rd (q) | 6.13 m
row 9 : 2003 | asian championships | manila, philippines | 6th | 6.23 m
row 10 : 2004 | olympic games | athens, greece | 11th | 6.53 m ] Execute this SQL based on the above table: select year order by notes desc limit 1
|
2002
|
[ header: rank | athlete | nationality | time | notes row 1 : None | valeriy borchin | russia | 1:19:56 | None
row 2 : None | vladimir kanay | russia | 1:20:27 | None
row 3 : None | luis fernando lopez | colombia | 1:20:38 | sb
row 4 : 4 | wang zhen | china | 1:20:54 | None
row 5 : 5 | stanislav emelyanov | russia | 1:21:11 | None
row 6 : 6 | kim hyun-sub | south korea | 1:21:17 | None
row 7 : 7 | ruslan dmytrenko | ukraine | 1:21:31 | sb
row 8 : 8 | yusuke suzuki | japan | 1:21:39 | None
row 9 : 9 | alex schwazer | italy | 1:21:50 | sb
row 10 : 10 | erick barrondo | guatemala | 1:22:08 | None
row 11 : 11 | chu yafei | china | 1:22:10 | None
row 12 : 12 | sergey morozov | russia | 1:22:37 | None
row 13 : 14 | matej toth | slovakia | 1:22:55 | None
row 14 : 15 | eder sanchez | mexico | 1:23:05 | None
row 15 : 16 | joao vieira | portugal | 1:23:26 | None
row 16 : 17 | miguel angel lopez | spain | 1:23:41 | None
row 17 : 18 | anton kucmin | slovakia | 1:23:57 | None
row 18 : 19 | james rendon | colombia | 1:24:08 | sb
row 19 : 20 | horacio nava | mexico | 1:24:15 | None
row 20 : 21 | christopher linke | germany | 1:24:17 | None
row 21 : 22 | caio bonfim | brazil | 1:24:29 | None
row 22 : 23 | trevor barron | united states | 1:24:33 | None
row 23 : 24 | rafał augustyn | poland | 1:24:47 | None
row 24 : 25 | byun youngjun | south korea | 1:24:48 | None
row 25 : 28 | recep celik | turkey | 1:25:39 | None
row 26 : 29 | nazar kovalenko | ukraine | 1:25:50 | None
row 27 : 31 | babubhai panucha | india | 1:26:53 | None
row 28 : 32 | david kimutai | kenya | 1:27:20 | sb
row 29 : 33 | yerko araya | chile | 1:27:47 | None
row 30 : 34 | hedi teraoui | tunisia | 1:29:48 | None
row 31 : 35 | diego flores | mexico | 1:30:00 | None
row 32 : 37 | emerson hernandez | el salvador | 1:30:48 | sb
row 33 : 38 | ronald quispe | bolivia | 1:32:09 | pb
row 34 : None | moacir zimmermann | brazil | dsq | None
row 35 : None | gustavo restrepo | colombia | dsq | None
row 36 : None | giorgio rubino | italy | dsq | None
row 37 : None | anatole ibanez | sweden | dsq | None
row 38 : None | adam rutter | australia | dnf | None
row 39 : None | mauricio arteaga | ecuador | dnf | None ] Execute this SQL based on the above table: select count ( athlete )
|
39
|
[ header: rank | census subdivision | province | type | land area (km2, 2011) | population 2011 | population 2006 | population 2001 | population 1996 | change in % 2006-2011 | change in % 1996-2011 row 1 : 2 | montreal | quebec | ville | 365.13 | 1649519 | 1620693 | 1583590 | 1547030 | 1.8 | 6.6
row 2 : 3 | calgary | alberta | city | 825.29 | 1096833 | 988193 | 879003 | 768082 | 10.9 | 42.7
row 3 : 19 | longueuil | quebec | ville | 115.59 | 231409 | 229330 | 225761 | 225722 | 0.9 | 2.7
row 4 : 25 | richmond | british columbia | city | 129.27 | 190473 | 174461 | 164345 | 148867 | 9.2 | 28.4
row 5 : 27 | oakville | ontario | town | 138.88 | 182520 | 165613 | 144738 | 128405 | 10.2 | 42.2
row 6 : 31 | oshawa | ontario | city | 145.68 | 149607 | 141590 | 139051 | 134464 | 5.7 | 11.1
row 7 : 61 | north vancouver | british columbia | district municipality | 160.76 | 84412 | 82562 | 82310 | 80418 | 2.2 | 5
row 8 : 64 | lethbridge | alberta | city | 122.36 | 83517 | 74637 | 67374 | 63053 | 11.8 | 32.5
row 9 : 65 | niagara falls | ontario | city | 209.71 | 82997 | 82184 | 78815 | 76917 | 1 | 7.9
row 10 : 68 | newmarket | ontario | town | 38.33 | 79978 | 74295 | 65788 | 57125 | 7.6 | 40
row 11 : 82 | wood buffalo | alberta | specialized municipality | 63637.47 | 65565 | 51496 | 41445 | 35213 | 27.3 | 86.2
row 12 : 83 | granby | quebec | ville | 152.72 | 63433 | 47637 | 44121 | 43316 | 6.8 | 46.4
row 13 : 84 | norfolk county | ontario | city | 1607.6 | 63175 | 62563 | 60847 | 60534 | 1 | 4.4
row 14 : 91 | grande prairie | alberta | city | 72.8 | 55032 | 47076 | 36983 | 31353 | 16.8 | 75.5
row 15 : 92 | north bay | ontario | city | 319.05 | 53651 | 53966 | 52771 | 54332 | -0.6 | -1.2
row 16 : 98 | dollard-des-ormeaux | quebec | ville | 15.1 | 49637 | 48930 | 48206 | 47826 | 1.4 | 3.8 ] Execute this SQL based on the above table: select count ( census subdivision ) where population 2001 = 0
|
0
|
[ header: date | opponent | venue | result row 1 : 28 aug | burnley | a | 3 - 4
row 2 : 30 aug | leeds united | a | 0 - 0
row 3 : 4 sep | west bromwich albion | h | 1 - 1
row 4 : 6 sep | leeds united | h | 3 - 1
row 5 : 11 sep | aston villa | h | 2 - 3
row 6 : 18 sep | bolton wanderers | a | 0 - 2
row 7 : 20 sep | newcastle united | h | 1 - 1
row 8 : 25 sep | manchester united | h | 0 - 2
row 9 : 2 oct | derby county | a | 3 - 6
row 10 : 9 oct | sheffield united | h | 3 - 0
row 11 : 16 oct | huddersfield town | a | 0 - 0
row 12 : 23 oct | sunderland | h | 3 - 0
row 13 : 30 oct | bury | a | 3 - 2
row 14 : 6 nov | birmingham city | h | 1 - 0
row 15 : 13 nov | tottenham hotspur | a | 1 - 4
row 16 : 20 nov | west ham united | h | 1 - 2
row 17 : 29 nov | sheffield wednesday | a | 0 - 3
row 18 : 4 dec | leicester city | h | 0 - 1
row 19 : 11 dec | everton | a | 1 - 0
row 20 : 18 dec | blackburn rovers | h | 0 - 1
row 21 : 25 dec | newcastle united | a | 0 - 5
row 22 : 27 dec | arsenal | h | 2 - 0
row 23 : 1 jan | arsenal | a | 2 - 3
row 24 : 15 jan | burnley | h | 0 - 0
row 25 : 31 jan | aston villa | a | 0 - 0
row 26 : 5 feb | bolton wanderers | h | 1 - 0
row 27 : 12 feb | manchester united | a | 1 - 1
row 28 : 21 feb | west bromwich albion | a | 2 - 1
row 29 : 26 feb | sheffield united | a | 1 - 3
row 30 : 12 mar | sunderland | a | 2 - 2
row 31 : 16 mar | derby county | h | 2 - 0
row 32 : 19 mar | bury | h | 2 - 1
row 33 : 21 mar | huddersfield town | h | 2 - 0
row 34 : 2 apr | tottenham hotspur | h | 1 - 2
row 35 : 7 apr | leicester city | a | 1 - 3
row 36 : 9 apr | west ham united | a | 2 - 2
row 37 : 15 apr | liverpool | a | 0 - 5
row 38 : 16 apr | sheffield wednesday | h | 3 - 2
row 39 : 18 apr | liverpool | h | 2 - 0
row 40 : 27 apr | birmingham city | a | 2 - 1
row 41 : 30 apr | everton | h | 1 - 0
row 42 : 7 may | blackburn rovers | a | 0 - 1 ] Execute this SQL based on the above table: select count ( date ) where date = '18 sep'
|
1
|
[ header: pos. | athlete | run 1 | run 2 | total row 1 : 1 | aronne pieruz | 50.39 | 58.25 | 1:48.64
row 2 : 2 | filip trejbal | 50.68 | 58.84 | 1:49.52
row 3 : 3 | adam cole | 51.4 | 58.51 | 1:49.91
row 4 : 4 | tague thorson | 51.2 | 59.13 | 1:50.33
row 5 : 5 | jan urfer | 51.54 | 59.1 | 1:50.64
row 6 : 6 | charles christianson | 51.75 | 58.91 | 1:50.66
row 7 : 7 | francesco ghedina | 51.37 | 59.39 | 1:50.94
row 8 : 8 | luca moretti | 52.05 | 58.89 | 1:51.17
row 9 : 9 | cameron barnes | 51.66 | 59.51 | 1:51.37
row 10 : 10 | martin vrablik | 52.77 | 58.6 | 1:51.48 ] Execute this SQL based on the above table: select athlete where id = ( select id where athlete = 'luca moretti' ) - 1
|
francesco ghedina
|
[ header: rank | athlete | nationality | time row 1 : None | moses tanui | kenya | 1:01:45
row 2 : None | paul yego | kenya | 1:01:46
row 3 : 4 | antonio serrano | spain | 1:01:56
row 4 : 7 | herder vazquez | colombia | 1:02:32
row 5 : 8 | nobuyuki sato | japan | 1:02:36
row 6 : 10 | joaquim pinheiro | portugal | 1:02:40
row 7 : 13 | danilo goffi | italy | 1:02:49
row 8 : 14 | oleg strizhakov | russia | 1:02:54
row 9 : 18 | muhammed nazipov | russia | 1:03:02
row 10 : 23 | meck mothuli | south africa | 1:03:25
row 11 : 39 | juan antonio crespo | spain | 1:04:12
row 12 : 46 | daniel held | united states | 1:04:30
row 13 : 53 | kaare sørensen | denmark | 1:04:51
row 14 : 59 | kingston maringe | zimbabwe | 1:05:12
row 15 : 60 | abel chimukoko | zimbabwe | 1:05:15
row 16 : 62 | yann millon | france | 1:05:20
row 17 : 66 | manuel matias | portugal | 1:05:23
row 18 : 70 | tolosa gebre | ethiopia | 1:05:37
row 19 : 79 | marcos villa | mexico | 1:06:16
row 20 : 83 | chris verbeeck | belgium | 1:06:37
row 21 : 84 | julius ruto | kenya | 1:06:40
row 22 : 90 | ronald schut | netherlands | 1:06:53
row 23 : 92 | khelil benhalima | algeria | 1:07:01
row 24 : 96 | tayeb kallou | algeria | 1:07:21
row 25 : 105 | ebrahim etta-ati | iran | 1:08:10
row 26 : 106 | wilson theleso | botswana | 1:08:12
row 27 : 108 | haja ramananjatavo | madagascar | 1:08:25
row 28 : 116 | ajay chuttoo | mauritius | 1:09:29
row 29 : 118 | parakhat kurtgeldiye | turkmenistan | 1:09:50
row 30 : 122 | edo janic | yugoslavia | 1:10:38
row 31 : 130 | lee kar lun | hong kong | 1:13:28
row 32 : 133 | binesh prasad | fiji | 1:15:38
row 33 : 137 | genc lugja | albania | 1:16:53
row 34 : None | baha tulumbo | tanzania | dnf ] Execute this SQL based on the above table: select athlete where athlete in ( 'baha tulumbo' , 'tayeb kalloud' ) order by rank desc limit 1
|
tayeb kalloud
|
[ header: position | driver | no. | car | entrant | rd 1 | rd 2 | rd 3 | rd 4 | rd 5 | rd 6 | rd 7 | rd 8 | total row 1 : 1 | greg crick | 3 | dodge viper gts ac | crickcars.com | 98 | 108 | 91 | 72 | 98 | 96 | 60 | 90 | 713
row 2 : 5 | sven burchartz | 90 | porsche 996 gt3 | cargraphic ag | 32 | 18 | None | 63 | 57 | 69 | 114 | 85.5 | 438.5
row 3 : 6 | david wall | 38 | porsche 996 gt3 r | rds | 32 | 37.5 | 63 | None | 80 | 33 | None | 117 | 362.5
row 4 : 7 | john teulan | 88 | ferrari 360 challenge ferrari f430 challenge | industry central - stahlwille | 47 | 48 | 61 | 77 | None | 48 | 48 | 19.5 | 348.5
row 5 : 8 | max twigg | 18 & 17 | porsche 996 gt3 | twigg waste management luxton | 45 | 33 | 51 | 14 | 37 | 57 | None | 66 | 303
row 6 : 9 | d'arcy russell | 7 | dodge viper gts ac | dupont | 34 | 31.5 | None | 23 | None | 117 | None | 60 | 265.5
row 7 : 14 | paul tressider | 23 | porsche 996 gt3 cup car | wynn tressider management | 29 | 22.5 | 49 | None | None | 45 | None | 43.5 | 189
row 8 : 16 | damien flack | 55 | porsche 996 gt3 cup car | roock | None | None | 69 | 12 | None | 54 | None | 25.5 | 160.5
row 9 : 18 | bill pye | 44 | porsche 996 gt3 cup car | autohaus hamilton property solutions group | None | 58.5 | None | None | None | 39 | None | 43.5 | 141
row 10 : 19 | anthony skinner | 46 | porsche 996 gt3 | travelplan ski holiday | 52 | 18 | None | None | None | None | 69 | None | 139
row 11 : 20 | andrew luxton | 17 & 18 | porsche 996 gt3 cup car | luxton plant twigg waste | None | None | None | None | None | 57 | None | 66 | 123
row 12 : 22 | ian palmer | 20 | honda nsx | instant fountains paluky ho | 25 | None | 33 | 53 | None | None | None | None | 111
row 13 : 24 | kevin miller | 2 | ferrari f430 | property solutions group | None | None | None | None | None | None | 63 | 36 | 99
row 14 : 26 | peter hackett | 5 | lamborghini diablo gt | team lamborghini australia | None | 91.5 | None | None | None | None | None | None | 91.5
row 15 : 28 | graeme cook | 91 | porsche 996 gt3 cup car | container solutions | 27 | None | None | None | 58 | None | None | None | 85
row 16 : 32 | stuart kostera | 70 | porsche 996 gt3 cup car | phr scuderia | None | None | None | 73 | None | None | None | None | 73
row 17 : 34 | justin levis | 78 | lotus elise motorsport 200 | cue autohaus hamilton | None | 24 | None | None | None | 39 | None | None | 63 ] Execute this SQL based on the above table: select car where rd 4 < ( select rd 4 where car = 'honda nsx' ) order by rd 4 desc limit 1
|
dodge viper gts acr
|
[ header: episode number | original airdate | title | disc | description row 1 : 48 | 30 january 1983 | "the frozen turkey man" | 1 | for a joke, compo and cle
row 2 : 49 | 6 february 1983 | "the white man's grave" | 1 | the trio have clegg stand in for wall
row 3 : 50 | 13 february 1983 | "the waist land" | 1 | foggy attempts to earn some ready cash by
row 4 : 51 | 20 february 1983 | "cheering up ludovic | 1 | clegg is roped in to drive
row 5 : 52 | 27 february 1983 | "the three astaires" | 1 | the trio help out at a church concert,
row 6 : 53 | 6 march 1983 | "the arts of concealment" | 1 | foggy lands himself in trouble with a ] Execute this SQL based on the above table: select description where title <= 2
|
for a joke, compo and clegg convince a barmaid that foggy is a multi-millionaire, the trio have clegg stand in for wally in an attempt to give wally a few hours' freedom, foggy attempts to earn some ready cash by smuggling junk food to some health farm inmates, clegg is roped in to drive a van when an old friend is too drunk to use it, the trio help out at a church concert, but compo is more interested in a suit of armour, foggy lands himself in trouble with a group of local cyclists when he demonstrates his supposed skill at camouflage
|
[ header: season | level | division | section | position | movements row 1 : 1960 | tier 4 | division 4 | halsingland | 3rd | None
row 2 : 1961 | tier 4 | division 4 | halsingland | 2nd | None
row 3 : 1962 | tier 4 | division 4 | halsingland | 1st | promoted
row 4 : 1963 | tier 3 | division 3 | sodra norrland | 6th | None
row 5 : 1964 | tier 3 | division 3 | sodra norrland nedre | 4th | None
row 6 : 1965 | tier 3 | division 3 | sodra norrland nedre | 10th | relegated
row 7 : 1966 | tier 4 | division 4 | halsingland | 9th | None
row 8 : 1967 | tier 4 | division 4 | halsingland | 2nd | None
row 9 : 1968 | tier 4 | division 4 | halsingland | 6th | None
row 10 : 1969 | tier 4 | division 4 | halsingland | 3rd | None
row 11 : 1970 | tier 4 | division 4 | halsingland | 2nd | None
row 12 : 1971 | tier 4 | division 4 | halsingland | 1st | promotion playoffs - promoted
row 13 : 1972 | tier 3 | division 3 | norra svealand | 6th | None
row 14 : 1973 | tier 3 | division 3 | norra svealand | 11th | relegated
row 15 : 1974 | tier 4 | division 4 | halsingland | 1st | promoted
row 16 : 1975 | tier 3 | division 3 | sodra norrland | 9th | None
row 17 : 1976 | tier 3 | division 3 | sodra norrland | 9th | None
row 18 : 1977 | tier 3 | division 3 | sodra norrland | 9th | None
row 19 : 1978 | tier 3 | division 3 | sodra norrland | 6th | None
row 20 : 1979 | tier 3 | division 3 | sodra norrland | 9th | None
row 21 : 1980 | tier 3 | division 3 | sodra norrland | 7th | None
row 22 : 1981 | tier 3 | division 3 | sodra norrland | 9th | None
row 23 : 1982 | tier 3 | division 3 | sodra norrland | 12th | relegated
row 24 : 1982 | tier 4 | division 4 | halsingland | 3rd | None ] Execute this SQL based on the above table: select division where position = '2nd'
|
division 4, division 4, division 4
|
[ header: year | political rights | civil liberties | status | president row 1 : 1972 | 6 | 6 | not free | hamani diori
row 2 : 1973 | 6 | 6 | not free | hamani diori
row 3 : 1974 | 7 | 6 | not free | hamani diori
row 4 : 1975 | 7 | 6 | not free | seyni kountche
row 5 : 1976 | 7 | 6 | not free | seyni kountche
row 6 : 1977 | 7 | 6 | not free | seyni kountche
row 7 : 1978 | 7 | 6 | not free | seyni kountche
row 8 : 1979 | 7 | 6 | not free | seyni kountche
row 9 : 1980 | 7 | 6 | not free | seyni kountche
row 10 : 1981 | 7 | 6 | not free | seyni kountche
row 11 : 1982 | 7 | 6 | not free | seyni kountche
row 12 : 1983 | 7 | 6 | not free | seyni kountche
row 13 : 1984 | 7 | 6 | not free | seyni kountche
row 14 : 1985 | 7 | 6 | not free | seyni kountche
row 15 : 1986 | 7 | 6 | not free | seyni kountche
row 16 : 1987 | 7 | 6 | not free | seyni kountche
row 17 : 1988 | 6 | 6 | not free | ali saibou
row 18 : 1989 | 7 | 6 | not free | ali saibou
row 19 : 1990 | 6 | 5 | not free | ali saibou
row 20 : 1991 | 6 | 5 | partly free | ali saibou
row 21 : 1992 | 5 | 4 | partly free | ali saibou
row 22 : 1993 | 3 | 4 | partly free | ali saibou
row 23 : 1994 | 3 | 5 | partly free | mahamane ousmane
row 24 : 1995 | 3 | 5 | partly free | mahamane ousmane
row 25 : 1996 | 7 | 5 | not free | mahamane ousmane
row 26 : 1997 | 7 | 5 | not free | ibrahim bare mainass
row 27 : 1998 | 7 | 5 | not free | ibrahim bare mainass
row 28 : 1999 | 5 | 5 | partly free | ibrahim bare mainass
row 29 : 2000 | 4 | 4 | partly free | mamadou tandja
row 30 : 2001 | 4 | 4 | partly free | mamadou tandja
row 31 : 2002 | 4 | 4 | partly free | mamadou tandja
row 32 : 2003 | 4 | 4 | partly free | mamadou tandja
row 33 : 2004 | 3 | 3 | partly free | mamadou tandja
row 34 : 2005 | 3 | 3 | partly free | mamadou tandja
row 35 : 2006 | 3 | 3 | partly free | mamadou tandja
row 36 : 2007 | 3 | 4 | partly free | mamadou tandja
row 37 : 2008 | 3 | 4 | partly free | mamadou tandja
row 38 : 2009 | 5 | 4 | partly free | mamadou tandja
row 39 : 2010 | 5 | 4 | partly free | mamadou tandja
row 40 : 2011 | 3 | 4 | partly free | salou djibo ] Execute this SQL based on the above table: select status group by status order by count ( * ) desc limit 1
|
not free
|
[ header: state (class) | vacator | reason for change | successor | date of successor's formal installation row 1 : new hampshire (3) | vacant | disputed election. norris cotton appointed to | norris cotton (r) | august 8, 1975
row 2 : new hampshire (3) | norris cotton (r) | successor elected september 18, 1975 | john a. durkin (d) | september 18, 1975
row 3 : michigan (1) | philip hart (d) | died december 26, 1976 | donald w. riegle, | december 27, 1976
row 4 : missouri (1) | stuart symington (d) | resigned december 27, 1976 | john danforth (r) | december 27, 1976
row 5 : nebraska (1) | roman hruska (r) | resigned december 27, 1976 | edward zorinsky ( | december 28, 1976
row 6 : ohio (1) | robert taft, | resigned december 28, 1976 | vacant | not filled this term
row 7 : rhode island (1) | john o. pastore (d) | resigned december 28, 1976 | john chafee (r) | december 29, 1976
row 8 : minnesota (2) | walter mondale (dfl) | resigned december 30, 1976 after being | wendell anderson (dfl) | december 30, 1976
row 9 : california (1) | john v. tunney (d) | resigned january 1, 1977 | s. i. hayakawa ( | january 2, 1977 ] Execute this SQL based on the above table: select date of successor's formal installation where reason for change = 'successor elected september 18, 1975'
|
september 18, 1975
|
[ header: language | number | percentage (%) | males | females row 1 : polish | 447685 | 80.86 | 216794 | 230891
row 2 : yiddish | 51215 | 9.25 | 24538 | 26677
row 3 : german | 35931 | 6.49 | 17409 | 18522
row 4 : russian | 15137 | 2.73 | 13551 | 1586
row 5 : ukrainian | 2350 | 0.42 | 2302 | 48
row 6 : other | 1285 | 0.23 | 1041 | 244
row 7 : persons that didn't name their native language | 27 | >0.01 | 14 | 13
row 8 : total | 553633 | 100 | 275652 | 277981 ] Execute this SQL based on the above table: select sum ( number ) where language in ( 'total' , 'polish' )
|
1001318.0
|
[ header: year | goalkeeper | defenders | midfielders | forwards row 1 : 1988 | tony meola, virginia | jeff agoos, virginia | henry gutierrez, nc | scott benedetti, portl
row 2 : 1993 | tim deck, wisconsin | shane batelle, st | brian kamler, creighton ja | keith defini, creighton
row 3 : 1996 | jon busch, charlotte | tahj jakins, u | mike fisher, virginia | tony kuhn, vander
row 4 : 1998 | adin brown, william & | matt chulis, virginia | lazo alavanja, indian | chris albright, virginia
row 5 : 2000 | chris hamblin, boston | chris gbandi, | carl bussey, sm | chris carrieri, unc
row 6 : 2001 | byron foss, sm | chris gbandi, | luchi gonzalez, | nicholas mccrea
row 7 : 2009 | jeff attinella, south flori | bobby warshaw, stanford | kyle nakazawa, | teal bunbury, akron col ] Execute this SQL based on the above table: select midfielders where year > 1000
|
henry gutierrez, nc state pat o'kelly, seton hall mark santel, st. louis university, brian kamler, creighton jason kreis, duke claudio reyna, virginia, mike fisher, virginia steve klein, bowling green mike mekelburg, usf, lazo alavanja, indiana jay heaps, duke wojtek krakowiak, clemson maurizio rocha, uconn, carl bussey, smu mark lisi, clemson jorge martinez, san jose state ryan nelsen, stanford, luchi gonzalez, smu kyle martino, virginia diego walsh, smu, kyle nakazawa, ucla anthony ampaipitakwong, akron corben bone, wake forest tony tchani, virginia
|
[ header: rank | nation | gold | silver | bronze | total row 1 : 1 | netherlands | 20 | 9 | 0 | 29
row 2 : 2 | italy | 10 | 15 | 3 | 28
row 3 : 3 | belgium | 1 | 2 | 6 | 9
row 4 : 4 | spain | 1 | 1 | 13 | 15
row 5 : 5 | great britain | 0 | 2 | 0 | 2
row 6 : 6 | germany | 0 | 1 | 7 | 8
row 7 : 7 | greece | 0 | 1 | 0 | 1
row 8 : 7 | russia | 0 | 1 | 0 | 1
row 9 : 9 | sweden | 0 | 0 | 2 | 2
row 10 : 10 | france | 0 | 0 | 1 | 1 ] Execute this SQL based on the above table: select count ( nation ) where bronze > 133
|
0
|
[ header: | name | nation | points | games | pts/game row 1 : 1 | karen andrew | england | 44 | 5 | 8.8
row 2 : 2 | daniella waterman | england | 40 | 5 | 8
row 3 : 3 | christelle le duff | france | 33 | 5 | 6.6
row 4 : 4 | charlotte barras | england | 30 | 5 | 6
row 5 : 5 | naomi thomas | wales | 25 | 5 | 5
row 6 : 6 | susan day | england | 20 | 5 | 4
row 7 : 7 | lucy millard | scotland | 20 | 5 | 4
row 8 : 8 | veronica schiavon | italy | 19 | 4 | 4.75
row 9 : 9 | estelle sartini | france | 17 | 5 | 3.4
row 10 : 10 | margaret alphonsie | england | 15 | 5 | 3
row 11 : 11 | fanny horta | france | 15 | 5 | 3
row 12 : 12 | jeannette feighery | ireland | 15 | 5 | 3
row 13 : 13 | non evans | wales | 14 | 3 | 4.67
row 14 : 14 | lynsey harley | scotland | 12 | 2 | 6
row 15 : 15 | delphine plantet | france | 10 | 5 | 2
row 16 : 16 | joanne o'sullivan | ireland | 10 | 5 | 2
row 17 : 17 | katy mclean | england | 9 | 3 | 3
row 18 : 18 | michela tondinelli | italy | 6 | 5 | 1.2
row 19 : 19 | georgia stevens | england | 5 | 5 | 1
row 20 : 20 | mel berry | wales | 5 | 5 | 1 ] Execute this SQL based on the above table: select where nation = 'italy'
|
8.0, 18.0
|
[ header: season | series | team | races | wins | poles | f/laps | podiums | points | position row 1 : 2001 | formula bmw junior cup iberia | None | 3 | 0 | 0 | 0 | 0 | 38 | 18th
row 2 : 2002 | formula bmw adac | viva racing | 20 | 9 | 5 | 1 | 13 | 264 | 1st
row 3 : 2003 | formula 3 euro series | team rosberg | 20 | 1 | 1 | 2 | 5 | 45 | 8th
row 4 : 2003 | masters of formula 3 | team rosberg | 1 | 0 | 0 | 0 | 0 | None | nc
row 5 : 2003 | macau grand prix | carlin motorsport | 1 | 0 | 0 | 0 | 0 | None | nc
row 6 : 2003 | korea super prix | carlin motorsport | 1 | 0 | 0 | 0 | 0 | None | 11th
row 7 : 2004 | formula 3 euro series | team rosberg | 19 | 3 | 2 | 2 | 5 | 70 | 4th
row 8 : 2004 | macau grand prix | team rosberg | 1 | 0 | 0 | 0 | 0 | None | nc
row 9 : 2004 | masters of formula 3 | team rosberg | 1 | 0 | 0 | 0 | 0 | None | 6th
row 10 : 2004 | bahrain superprix | team rosberg | 1 | 0 | 0 | 0 | 1 | None | 2nd
row 11 : 2005 | gp2 series | art grand prix | 23 | 5 | 4 | 5 | 12 | 120 | 1st
row 12 : 2005 | formula one | bmw williams f1 team | None | None | None | None | None | None | test driver
row 13 : 2006 | formula one | williamsf1 team | 18 | 0 | 0 | 1 | 0 | 4 | 17th
row 14 : 2007 | formula one | at&t williams | 17 | 0 | 0 | 0 | 0 | 20 | 9th
row 15 : 2008 | formula one | at&t williams | 18 | 0 | 0 | 0 | 2 | 17 | 13th
row 16 : 2009 | formula one | at&t williams | 17 | 0 | 0 | 1 | 0 | 34.5 | 7th
row 17 : 2010 | formula one | mercedes gp petrona | 19 | 0 | 0 | 0 | 3 | 142 | 7th
row 18 : 2011 | formula one | mercedes gp petrona | 19 | 0 | 0 | 0 | 0 | 89 | 7th
row 19 : 2012 | formula one | mercedes amg petronas | 20 | 1 | 1 | 2 | 2 | 93 | 9th
row 20 : 2013 | formula one | mercedes amg petronas | 19 | 2 | 3 | 0 | 4 | 171 | 6th
row 21 : 2014 | formula one | mercedes amg petronas | 2 | 1 | 0 | 1 | 2 | 43 | 1st ] Execute this SQL based on the above table: select count ( * ) where position >= 2 * team
|
20
|
[ header: name(s) | yard no. | type (as built) | owner | imo number | laid down | launched | delivered/ commissioned | fate/ decommissioned | notes row 1 : sally | 100 | yacht | lyman | | None | None | None | None | None
row 2 : caprice | 101 | yacht | robinson | | None | None | None | None | None
row 3 : eleanor | 103 | yacht | clapp | | None | None | None | None | None
row 4 : uss lawrence (dd-8) | 104 | bainbridge-class destroyer | u.s. navy | | 10 april 1899 | 7 november 1900 | 7 april 1903 | 20 june 1919 | sold to joseph g. hit
row 5 : uss macdonough (dd-9) | 105 | bainbridge-class destroyer | u.s. navy | | 10 april 1899 | 24 december 1900 | 5 september 1903 | 3 september 1919 | sold to joseph g. hit
row 6 : jule | 106 | yacht | j. arthur | | None | None | 12 june 1899 | None | None
row 7 : united states lightship lv-72 | 107 | lightvessel | u.s lighthouse board | | None | None | 13 february 1901 | None | None ] Execute this SQL based on the above table: select imo number where type (as built) = 'yacht'
|
, , ,
|
[ header: country | name | title, position | grand cross with collar | year of appointment row 1 : belgium | paola | former queen | None | 1997
row 2 : belgium | philippe | king | None | 2003
row 3 : bulgaria | georgi parvanov | former president | None | 2006
row 4 : croatia | ivo josipovic | president | None | 2011
row 5 : denmark | benedikte | princess | None | 1974
row 6 : denmark | joachim | prince | None | 1991
row 7 : denmark | margrethe ii | queen | None | 1958
row 8 : denmark | mary | crown princess | None | 2005
row 9 : finland | martti ahtisa | former president | None | 1994
row 10 : finland | mauno koivisto | former president | None | 1983
row 11 : finland | tarja halonen | former president | None | 2000
row 12 : france | jacques chirac | former president | None | 2000
row 13 : germany | roman herzog | former president | None | 1998
row 14 : germany | marianne von weizsacker | former first lady | None | 1986
row 15 : greece | constantine ii | former king | None | 1964, 1962
row 16 : greece | constantinos stephanopoulos | former president | None | 2004
row 17 : iran | farah pahlavi | former empress | None | 1965
row 18 : iceland | olafur ragnar grims | president | None | 1998
row 19 : iceland | vigdis finnbogadotti | former president | None | 1982
row 20 : italy | carlo azeglio cia | former president | None | 2001
row 21 : japan | akihito | emperor | None | 2001, 1953
row 22 : japan | masako | crown princess | None | 2001
row 23 : jordan | hassan | prince | None | None
row 24 : latvia | vaira vike-freiberg | former president | None | 2000
row 25 : lithuania | valdas adamkus | former president | None | 1998
row 26 : luxembourg | henri | grand duke | None | 2011
row 27 : luxembourg | maria teresa | grand duchess | None | 1996
row 28 : netherlands | margriet | princess | None | 1964
row 29 : netherlands | willem-alexander | king | None | 1996
row 30 : norway | astrid | princess | None | 1956
row 31 : norway | jørgen harek | former president of the norwegian parliament | None | 2005
row 32 : norway | mette-marit | crown princess | None | 2001
row 33 : norway | carsten smith | former chief justice of the supreme court of nor | None | 2003
row 34 : poland | lech wałesa | former president | None | 1995
row 35 : portugal | antonio ramalho | former president | None | 1978
row 36 : portugal | anibal cavaco silva | president | None | 2008
row 37 : romania | emil constantinescu | former president | None | 1999
row 38 : slovenia | danilo turk | former president | None | 2011
row 39 : spain | felipe | crown prince | None | 1995
row 40 : spain | sofia | queen | None | 1982
row 41 : sweden | carl xvi gustaf | king | None | 1974
row 42 : sweden | carl philip | prince | None | 2005
row 43 : sweden | madeleine | princess | None | 2005 ] Execute this SQL based on the above table: select title, position where title, position != 'princess' and country = ( select country where title, position = 'princess' )
|
prince, queen, crown princess
|
[ header: year | film | director | producer | writer | notes row 1 : 1953 | the sea around us | yes | yes | yes | documentary academy award for best documentary feature
row 2 : 1954 | dangerous mission | None | yes | None | None
row 3 : 1956 | the animal world | yes | yes | yes | documentary
row 4 : 1957 | the story of mankind | yes | yes | yes | documentary
row 5 : 1960 | the big circus | None | yes | yes | None
row 6 : 1960 | the lost world | yes | yes | yes | None
row 7 : 1961 | voyage to the bottom of the sea | yes | yes | yes | None
row 8 : 1962 | five weeks in a balloon | yes | yes | yes | None
row 9 : 1972 | the poseidon adventure | yes | yes | None | directed action sequences only nominated-gold
row 10 : 1974 | the towering inferno | None | yes | None | nominated-academy award for best
row 11 : 1978 | the swarm | yes | yes | None | None
row 12 : 1979 | beyond the poseidon adventure | yes | yes | None | None
row 13 : 1980 | when time ran out | None | yes | None | None
row 14 : 1983 | cave-in! | None | yes | None | None ] Execute this SQL based on the above table: select film where id = 1
|
the sea around us
|
[ header: date | time | opponent# | site | tv | result | attendance row 1 : august 29 | 7:30 pm | appalachian state | groves stadium • winston-sa | None | w 19-13 | 21129
row 2 : september 7 | 6:30 pm | #13 northwestern | groves stadium • winston-sa | fsn | w 28-27 | 21749
row 3 : september 14 | 7:00 pm | at georgia tech | bobby dodd stadium • atlant | None | l 10-30 | 45750
row 4 : september 21 | 12:00 pm | #20 virginia | groves stadium • winston-sa | jps | l 7-42 | 23220
row 5 : september 28 | 12:00 pm | at clemson | memorial stadium • clemson, s | jps | l 10-21 | 63263
row 6 : october 5 | 6:30 pm | #15 north carolina | groves stadium • winston-sa | None | l 6-45 | 25681
row 7 : october 19 | 2:00 pm | at maryland | byrd stadium • college park, m | None | l 0-52 | 30212
row 8 : october 26 | 1:00 pm | navy | groves stadium • winston-sa | None | l 18-47 | 17307
row 9 : november 9 | 12:00 pm | vs. #3 florida state | citrus bowl • orlando, f | jps | l 7-44 | 34974
row 10 : november 16 | 1:00 pm | duke | groves stadium • winston-sa | None | w 17-16 | 17842
row 11 : november 23 | 1:00 pm | at nc state | carter-finley stadium • r | None | l 22-37 | 40500 ] Execute this SQL based on the above table: select time where result = 'l 6-45'
|
6:30 pm
|
[ header: community | area | location | population | date established row 1 : beaver lake 17 | 49.4 hectares (122 acres) | 78.4 km. southeast of hal | 23 | march 3, 1867
row 2 : cole harbour 30 | 18.6 hectares (46 acres) | 9.6 km. east of halifax | 194 | march 3, 1880
row 3 : millbrook 27 | 302.0 hectares (746 acres) | 8 km. south of truro | 847 | march 3, 1886
row 4 : sheet harbour 36 | 32.7 hectares (81 acres) | 91.2 km. northeast of halifax | 15 | march 3, 1915
row 5 : truro 27a | 16.7 hectares (41 acres) | joined south of truro town limit | 0 | march 3, 1904
row 6 : truro 27b | 16.4 hectares (41 acres) | joined with 27a on south | 0 | march 3, 1907
row 7 : truro 27c | 9.5 hectares (23 acres) | joined with 27b on south | 0 | march 3, 1909 ] Execute this SQL based on the above table: select location where community = 'cole harbour 30' order by id desc limit 1
|
9.6 km. east of halifax
|
[ header: team name | leagues | base | year started | year ended | notable riders row 1 : aldershot shots | national league division three | tongham greyhound stadium | 1950 | 1960 | None
row 2 : bristol bulldogs | national league, provincial league | knowle stadium, bristol | pre-1939 | 1954 | phil crump
row 3 : cradley heath heathens | british league | dudley wood stadium | 1947 | 1996 | listed in article
row 4 : crayford kestrels | british league division two/national league | crayford stadium, crayford | 1968 | 1983 | None
row 5 : fleetwood flyers | speedway national league division two | highbury avenue sports stadium, fleetwood | 1948 | 1952 | None
row 6 : hackney wick wolves | speedway national league | hackney wick stadium | 1935 | 1939 | listed in article
row 7 : hackney hawks | british league | hackney wick stadium | 1963 | 1983 | listed in article
row 8 : hastings saxons | speedway national league division three | pilot field, hastings | 1948 | 1949 | None
row 9 : hull vikings | elite league, premier league | craven park | 1995 | 2005 | listed in article
row 10 : leicester stadium | speedway northern league, speedway southern league | the stadium, blackbird road, leicester | 1929 | 1931 | cyril "squib"
row 11 : leicester hounds | speedway national league division two | the stadium, blackbird road, leicester | 1937 | 1937 | wilf plant, lloy
row 12 : liverpool chads | speedway national league division three, speedway national | stanley stadium, liverpool | late 1920s | 1960 | peter craven
row 13 : middlesbrough bears | northern league, speedway national league | cleveland park | 1939 | 1996 | listed in article
row 14 : milton keynes knights | None | groveway greyhound stadium, milton key | 1978 | 1992 | None
row 15 : new cross rangers | speedway national league, speedway provincial league | new cross stadium | 1937 | 1963 | tom farndon
row 16 : newport wasps | provincial league, british league, national | hayley stadium | 1964 (closed 1977, reopened | 2011 | None
row 17 : nottingham | southern league, national league | olympic gardens/white city stadium | 1930 | 1938 | None
row 18 : paisley lions | speedway national league | love street | 1975 | 1976 | sid and mick sheldrick,
row 19 : rayleigh rockets | speedway provincial league, metropolitan league | rayleigh weir stadium, ray | 1949 | 1973 | None
row 20 : southampton saints | speedway national league | banister court stadium, southampton | 1928 | 1963 | None
row 21 : sunderland stars | speedway national league | sunderland greyhound stadium, east boldon | 1971 | 1974 | None
row 22 : trelawny pitbulls | conference league | clay country moto parc, st aus | 2003 | 2003 | None
row 23 : wembley lions | southern league, speedway national league | empire stadium | 1929 | 1971 | listed in article
row 24 : west ham hammers | speedway british league, speedway | west ham stadium | 1930 | 1971 | listed in article
row 25 : white city rebels | speedway british league | white city stadium | 1976 | 1978 | gordon kennett, steve
row 26 : wimbledon dons | speedway national league | wimbledon stadium | 1929 | 2005 | listed in article ] Execute this SQL based on the above table: select count ( * ) where base = 'west ham stadium'
|
1
|
[ header: week | date | opponent | result | attendance | bye row 1 : 1 | september 9, 1990 | at new england patriots | w 27-24 | 45305 | 0
row 2 : 2 | september 16, 1990 | buffalo bills | w 30-7 | 68142 | 0
row 3 : 3 | september 23, 1990 | at new york giants | l 20-3 | 76483 | 0
row 4 : 4 | september 30, 1990 | at pittsburgh steelers | w 28-6 | 54691 | 0
row 5 : 5 | october 7, 1990 | new york jets | w 20-16 | 69678 | 0
row 6 : 6 | None | None | None | None | 1
row 7 : 7 | october 18, 1990 | new england patriots | w 17-10 | 62630 | 0
row 8 : 8 | october 28, 1990 | at indianapolis colts | w 27-7 | 59213 | 0
row 9 : 9 | november 4, 1990 | phoenix cardinals | w 23-3 | 54294 | 0
row 10 : 10 | november 11, 1990 | at new york jets | w 17-3 | 68362 | 0
row 11 : 11 | november 19, 1990 | los angeles raiders | l 13-10 | 70553 | 0
row 12 : 12 | november 25, 1990 | at cleveland browns | w 30-13 | 70225 | 0
row 13 : 13 | december 2, 1990 | at washington redskins | l 42-20 | 53599 | 0
row 14 : 14 | december 9, 1990 | philadelphia eagles | w 23-20 | 67034 | 0
row 15 : 15 | december 16, 1990 | seattle seahawks | w 24-17 | 57851 | 0
row 16 : 16 | december 23, 1990 | at buffalo bills | l 24-14 | 80235 | 0
row 17 : 17 | december 30, 1990 | indianapolis colts | w 23-17 | 59547 | 0 ] Execute this SQL based on the above table: select min ( attendance )
|
45305.0
|
[ header: goal | date | venue | opponent | score | result | competition row 1 : 1 | 10 october 1998 | tyencastle park, e | estonia | 1-1 | 3-2 | ecqg9
row 2 : 2 | 10 october 1998 | tyencastle park, e | estonia | 3-2 | 3-2 | ecqg9
row 3 : 3 | 14 october 1998 | pittodrie stadium, aberdeen | faroe islands | 2-0 | 2-1 | ecqg9
row 4 : 4 | 4 september 1999 | olimpijski stadion | bosnia and herzegovin | 2-1 | 2-1 | ecqg9
row 5 : 5 | 24 march 2001 | hampden park, glasgow | belgium | 1-0 | 2-2 | wcqg6
row 6 : 6 | 24 march 2001 | hampden park, glasgow | belgium | 2-0 | 2-2 | wcqg6
row 7 : 7 | 28 march 2001 | hampden park, glasgow | san marino | 3-0 | 4-0 | wcqg6 ] Execute this SQL based on the above table: select competition order by goal desc limit 1
|
wcqg6
|
[ header: event | winner | second | third | fourth row 1 : 2008 telstra men's pro | josh constable | seb wilson | grant thomas | jackson close
row 2 : 2008 banana boat women's pro | jennifer smith | janna irons | justin dupont | selby riddle
row 3 : 2007 odyssey 20/20 men | josh constable | harrison roach | jackson close | harley ingleby
row 4 : 2007 banana boat women's pro | chelsea wlliam | lisa nicholson | isabelle braley | crystal dzigas
row 5 : 2009 golden breed mens pro lqs | taylor jensen | josh constable | christian wach | harrison roach
row 6 : 2009 banana boat women's pro | chelsea wlliam | melissa combo | isaselby riddle | isabelle brayley
row 7 : 2010 golden breed mens pro lqs | taylor jensen | josh constable | christian wach | jackson close
row 8 : 2010 the back beach women's 1 star pro | crystal dzigas | isabele braly | leah dawson | rosie locke ] Execute this SQL based on the above table: select fourth order by fourth desc limit 1
|
selby riddle
|
[ header: # | name | alma mater | birth date | marriage date | president | tenure | tenure row 1 : 1 | jiang qing | shandong provincial experimental theatre | 19 march 1914 | 20 november 1938 | mao zedong | 27 september 1954 | 27 april 1959
row 2 : 2 | wang guangmei | fu jen catholic university | 26 september 1921 | 21 august 1948 | liu shaoqi | 27 april 1959 | 21 october 1968
row 3 : 3 | he lianying | None | None | None | dong biwu | 31 october 1968 | 17 january 1975
row 4 : 4 | lin jiamei | tong de medical college | 1924 | None | li xiannian | 18 june 1983 | 8 april 1988
row 5 : 5 | wang yeping | shanghai foreign language institute | february 1928 | december 1949 | jiang zemin | 27 march 1993 | 15 march 2003
row 6 : 6 | liu yongqing | tsinghua university | 1940 | february 1970 | hu jintao | 15 march 2003 | 14 march 2013
row 7 : 7 | peng liyuan | china conservatory of music | 20 november 1962 | 1 september 1987 | xi jinping | 14 march 2013 | incumbent ] Execute this SQL based on the above table: select count ( # ) where alma mater = 'peng liyuan'
|
0
|
[ header: season | tier | division | place row 1 : 1963-86 | 5 | regional | None
row 2 : 1986/87 | 5 | preferente | 2nd
row 3 : 1987/88 | 4 | 3a | 15th
row 4 : 1988/89 | 4 | 3a | 15th
row 5 : 1989/90 | 4 | 3a | 17th
row 6 : 1990/91 | 4 | 3a | 12th
row 7 : 1991/92 | 4 | 3a | 18th
row 8 : 1992/93 | 5 | preferente | 1st
row 9 : 1993/94 | 4 | 3a | 14th
row 10 : 1994/95 | 4 | 3a | 16th
row 11 : 1995/96 | 4 | 3a | 19th
row 12 : 1996/97 | 5 | preferente | 1st
row 13 : 1997/98 | 4 | 3a | 7th
row 14 : 1998/99 | 4 | 3a | 18th ] Execute this SQL based on the above table: select place where tier = ( select tier where place = '1st' ) - 1
|
15th, 15th, 17th, 12th, 18th, 14th, 16th, 19th, 7th, 18th
|
[ header: # | title | english translation | original album | length row 1 : 1 | mimpi yang sempurn | a perfect dream | kisah 2002 malam | 4:30
row 2 : 2 | bintang di surga | stars in the heaven | bintang di surga | None
row 3 : 3 | aku dan bintang | the stars and me | taman langit | 3:39
row 4 : 4 | jauh mimpiku | distant dreams of mine | ost. alexandria | None
row 5 : 5 | hari yang cerah un | a bright day for a lonely soul | hari yang cerah | 3:59
row 6 : 6 | menunggu pagi | waiting for dawn | ost. alexandria | None
row 7 : 7 | khayalan tingkat ting | high-level imagination | bintang di surga | None
row 8 : 8 | sahabat | best friend | taman langit | 4:33
row 9 : 9 | sally sendiri | sally alone | hari yang cerah | 4:17
row 10 : 10 | langit tak mendengar | the sky didn't listen | ost. alexandria | None
row 11 : 11 | di belakangku | behind me | bintang di surga | None
row 12 : 12 | kita tertawa | we laugh | taman langit | 3:29
row 13 : 13 | membebaniku | burdening me | ost. alexandria | 4:25
row 14 : 14 | cobalah mengerti | try to understand | hari yang cerah | 3:30
row 15 : 15 | topeng | mask | taman langit | 4:25 ] Execute this SQL based on the above table: select length - length where original album = 'ost. alexandria'
|
0
|
[ header: no. in series | no. in season | title | directed by | written by | original air date | production code | u.s. viewers (millions) row 1 : 1 | 1 | "pilot" | jace alexander | matt nix | june 28, 2007 | bn100 | 4
row 2 : 2 | 2 | "identity" | rod hardy | matt nix | july 5, 2007 | bn101 | 4
row 3 : 3 | 3 | "fight or flight" | colin bucksey | craig o'neill | july 12, 2007 | bn103 | None
row 4 : 4 | 4 | "old friends" | david solomon | alfredo barrios, jr | july 19, 2007 | bn102 | None
row 5 : 5 | 5 | "family business" | sandy bookstaver | matt nix | july 26, 2007 | bn104 | None
row 6 : 6 | 6 | "unpaid debts" | paul holahan | nick thiel | august 2, 2007 | bn105 | 4.41
row 7 : 7 | 7 | "broken rules" | tim matheson | mere smith | august 9, 2007 | bn106 | None
row 8 : 8 | 8 | "wanted man" | ken girotti | craig o'neill | august 16, 2007 | bn107 | None
row 9 : 9 | 9 | "hard bargain" | john kretchmer | alfredo barrios, jr | august 23, 2007 | bn108 | 4.08
row 10 : 10 | 10 | "false flag" | paul shapiro | matt nix & ben wa | september 13, 2007 | bn109 | 4
row 11 : 11 | 11 | "dead drop" | jeremiah chechik | craig o'neill | september 20, 2007 | bn110 | 4.8
row 12 : 12 | 12 | "loose ends" | stephen surjik | matt nix & alfred | september 20, 2007 | bn111 | 4.8 ] Execute this SQL based on the above table: select production code where id = ( select id where production code = 'bn105' ) + 1
|
bn106
|
[ header: date | team | name | position | years in nba | notes row 1 : april 23, 2009 | houston rockets | dikembe mutombo | c | 18 | suffered a season-ending injury
row 2 : may 21, 2009 | free agent | sam cassell | g | 15 | became an assistant coach of the wizards
row 3 : september 3, 2009 | free agent | bruce bowen | f | 12 | None
row 4 : october 22, 2009 | free agent | mark madsen | f | 9 | became an assistant coach of the uta
row 5 : october 23, 2009 | free agent | bobby jackson | g | 12 | None
row 6 : october 23, 2009 | free agent | tyronn lue | g | 11 | became the director of basketball development of the celtics
row 7 : november 5, 2009 | free agent | darrick martin | g | 14 | named assistant director of player development of timberwolves ] Execute this SQL based on the above table: select count ( * )
|
7
|
[ header: # | date | venue | opponent | result | competition | scored row 1 : 1 | 5 march 2002 | lagos | sweden | 3-6 | algarve cup | 1
row 2 : 2 | 22 september 2002 | st andrew's, | iceland | 1-0 | 2003 fifa world cup qual | 1
row 3 : 3 | 21 october 2003 | kryoia soveto, | russia | 2-2 | friendly | 1
row 4 : 4 | 14 november 2003 | deepdale, preston | scotland | 5-0 | friendly | 1
row 5 : 5 | 16 september 2004 | sportpark de wending, heer | netherlands | 2-1 | friendly | 1
row 6 : 6 | 17 february 2005 | national hockey stadium, milton keynes | italy | 4-1 | friendly | 1
row 7 : 7 | 9 march 2005 | faro | portugal | 4-0 | algarve cup | 1
row 8 : 8 | 21 april 2005 | prenton park, tranmere | scotland | 2-1 | friendly | 1
row 9 : 9 | 5 june 2005 | city of manchester stadium, manchester | finland | 3-2 | 2005 uefa championship | 1
row 10 : 10 | 1 september 2005 | ertl-glas-stadi | austria | 4-1 | 2007 fifa world cup qual | 1 ] Execute this SQL based on the above table: select scored order by scored desc limit 1
|
1
|
[ header: name | position | length [km] | drainage basin area [km2] | confluence [by lahn-km] | mouth elevation [m above msl] row 1 : feudinge (ruppersbach) | left | 6.3 | 21.2 | 9.8 | 388
row 2 : ilse | right | 8.4 | 11.8 | 10.5 | 382
row 3 : banfe | right | 11.5 | 38.9 | 18.5 | 326
row 4 : laasphe | left | 8.3 | 19.6 | 19.4 | 324
row 5 : perf | right | 20 | 113.1 | 24.7 | 285
row 6 : dautphe | left | 8.8 | 41.8 | 37.5 | 245
row 7 : wetschaft | left | 29 | 196.2 | 56.3 | 192
row 8 : ohm | left | 59.7 | 983.8 | 58.7 | 188
row 9 : allna | right | 19.1 | 92 | 77.1 | 172
row 10 : zwester ohm | left | 20 | 69.5 | 84 | 165
row 11 : salzbode | right | 27.6 | 137.8 | 87.4 | 164
row 12 : lumda | left | 30 | 131.5 | 93.6 | 160
row 13 : wieseck | left | 24.3 | 119.6 | 102.2 | 155
row 14 : bieber | right | 13.6 | 34.7 | 105.1 | 151
row 15 : kleebach | left | 26.9 | 164.6 | 106.2 | 150
row 16 : wetzbach | left | 11.7 | 32.9 | 119.6 | 147
row 17 : dill | right | 55 | 717.7 | 120.4 | 147
row 18 : solmsbach | left | 24.6 | 112.5 | 128.1 | 141
row 19 : iserbach (mottbach) | left | 19.2 | 31.2 | 131.4 | 139
row 20 : ulmbach | right | 22.9 | 60.9 | 138.2 | 135
row 21 : kallenbach | right | 14.6 | 84.7 | 141.3 | 132
row 22 : weil | left | 46.6 | 247.9 | 149.4 | 130
row 23 : kerkerbach | right | 20.7 | 70.2 | 176 | 112
row 24 : emsbach | left | 39.1 | 321.8 | 181 | 110
row 25 : elbbach | right | 40.7 | 323.7 | None | 109
row 26 : aar | left | 49.7 | 312.6 | None | 103
row 27 : dorsbach | left | 32 | 114 | None | 94
row 28 : gelbach (aubach) | right | 39.7 | 221.2 | None | 93
row 29 : muhlbach | left | 32.1 | 171.9 | None | 85
row 30 : emsbach | right | 11.5 | 29.4 | None | 75 ] Execute this SQL based on the above table: select name where name not null order by id limit 1
|
feudinge (ruppersbach)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.