inputs
stringlengths 291
3.71k
| targets
stringlengths 1
2.65k
|
---|---|
[ header: name | street address | years as tallest | height ft (m) | floors row 1 : globe building | 4th street south | 1882-1886 | 157 (48) | 8
row 2 : lumber exchange building | 10 5th street south | 1886-1887 | 165 (50) | 12
row 3 : industrial exposition building | central avenue southeast and main street southeast | 1887-1890 | 240 (73) | 8
row 4 : metropolitan building | 308 2nd avenue south | 1890-1895 | 258 (79) | 12
row 5 : minneapolis city hall | 350 5th street south | 1895-1929 | 341 (104) | 14
row 6 : foshay tower | 821 marquette avenue | 1929-1973 | 448 (137) | 32
row 7 : ids tower | 80 8th street south | 1973-present | 792 (241) | 55 ] Execute this SQL based on the above table: select height ft (m) where name = 'lumber exchange building' | 165 (50) |
[ header: festival | year | award | nominee | result row 1 : blue mountains film festival | 2011 | animation prize | None | won
row 2 : firstglance film festival philadelphia | 2011 | best director (animation) | andrew martin | won
row 3 : lucerne international film festival | 2011 | best animated movie | None | nominated
row 4 : village roadshow queensland new filmmakers | 2011 | best animation | None | won
row 5 : village roadshow queensland new filmmakers | 2011 | best film | None | nominated
row 6 : village roadshow queensland new filmmakers | 2011 | best direction | andrew martin | nominated
row 7 : monaco international film festival | 2011 | best short film script | None | won
row 8 : monaco international film festival | 2011 | best short animation | None | won
row 9 : milan international film festival | 2012 | short film award | None | nominated
row 10 : shorts in paradise film festival | 2012 | runner up award | None | won
row 11 : worldfest houston international film festival and video | 2012 | special jury remi | None | won
row 12 : janison short sharp film festival | 2012 | animation grand prize | None | won
row 13 : create design awards | 2012 | motion category | None | nominated
row 14 : st kilda film festival | 2013 | best comedy | None | won ] Execute this SQL based on the above table: select count ( festival ) where nominee = 'None' | 0 |
[ header: national team | title(s) represented | first worn | number of stars | notes row 1 : brazil | world cup | 1971 | 5 | third win was in 1970; fourth and fifth stars
row 2 : italy | world cup | 1982 | 4 | added after third win; fourth star added after the
row 3 : germany | world cup | 1996 | 3 | 1954, 1974, third win was in 1990
row 4 : uruguay | world cup and olympics | 1930 | 4 | represent 2 world cups (1930 & 1950)
row 5 : argentina | world cup | 2003 | 2 | 1978, second win was in 1986
row 6 : england | world cup | 2003 | 1 | title won in 1966. star added after a
row 7 : france | world cup | 1998 | 1 | title won in 1998. star added above their badge
row 8 : spain | world cup | 2010 | 1 | title won in 2010. spain played in their away ] Execute this SQL based on the above table: select title(s) represented order by number of stars asc limit 576 | world cup, world cup, world cup, world cup, world cup, world cup, world cup and olympics, world cup |
[ header: team | year | regular season won | regular season lost | regular season win % | regular season finish | postseason won | postseason lost | postseason win % | postseason result row 1 : cle | 1991 | 32 | 53 | 0.376 | 7th in al east | None | None | None | None
row 2 : cle | 1992 | 76 | 86 | 0.469 | 5th in al east | None | None | None | None
row 3 : cle | 1993 | 76 | 86 | 0.469 | 6th in al east | None | None | None | None
row 4 : cle | 1994 | 66 | 47 | 0.584 | 2nd in al central | None | None | None | no mlb postseason
row 5 : cle | 1995 | 100 | 44 | 0.694 | 1st in al central | 9 | 6 | 0.6 | lost ws to atl
row 6 : cle | 1996 | 99 | 62 | 0.615 | 1st in al central | 1 | 3 | 0.25 | lost lds to bal
row 7 : cle | 1997 | 86 | 75 | 0.534 | 1st in al central | 10 | 8 | 0.556 | lost ws to fla
row 8 : cle | 1998 | 89 | 73 | 0.549 | 1st in al central | 5 | 5 | 0.5 | lost lcs to nyy
row 9 : cle | 1999 | 97 | 65 | 0.599 | 1st in al central | 2 | 3 | 0.4 | lost lds to bos
row 10 : bal | 2000 | 74 | 88 | 0.457 | 4th in al east | None | None | None | None
row 11 : bal | 2001 | 63 | 98 | 0.391 | 4th in al east | None | None | None | None
row 12 : bal | 2002 | 67 | 95 | 0.414 | 4th in al east | None | None | None | None
row 13 : bal | 2003 | 71 | 91 | 0.438 | 4th in al east | None | None | None | None
row 14 : sea | 2005 | 69 | 93 | 0.426 | 4th in al west | None | None | None | None
row 15 : sea | 2006 | 78 | 84 | 0.481 | 4th in al west | None | None | None | None
row 16 : sea | 2007 | 45 | 33 | 0.571 | 2nd in al west | None | None | None | None
row 17 : cle total | cle total | 721 | 591 | 0.55 | None | 27 | 25 | 0.519 | None
row 18 : bal total | bal total | 275 | 372 | 0.425 | None | 0 | 0 | 0 | None
row 19 : sea total | sea total | 192 | 210 | 0.478 | None | 0 | 0 | 0 | None
row 20 : total | total | 1188 | 1173 | 0.503 | None | 27 | 25 | 0.519 | None ] Execute this SQL based on the above table: select regular season finish where year < ( select year where regular season finish = '4th in al west' ) order by year desc limit 1 | 4th in al east |
[ header: year | company | number of members affected | duration of strike | notes row 1 : 1955 | southern bell telephone co | 50000 | 72 days | strike was in answer to management's effort to
row 2 : 1968 | at&t | 200000 | 18 days | wage increases to compensate for cost of living, and
row 3 : 1971 | bell system | 400000 | 1 week | cost of living allowance (cola) won for workers
row 4 : 1983 | bell system | 600000 | 22 days | last contract with the bell system before its breakup
row 5 : 1986 | at&t | 175000 | 25 days | cola clause suspended in contract - former bell
row 6 : 1989 | at&t | 175000 | None | child and elder care benefits added to contract.
row 7 : 1989 | nynex | 175000 | 17 weeks | strike was due to major health care cuts by
row 8 : 1998 | us west | 34000 | 15 day | strike was due to mandatory overtime demands and forced pay
row 9 : 2000 | verizon | 80000 | 3 weeks | strike was due to mandatory overtime demands. provisions for
row 10 : 2011 | verizon | 45000 | 13 days | strike was due to major wage and health care cuts
row 11 : 2012 | at&t | 20000 | 2 days | at&t west; californi ] Execute this SQL based on the above table: select count ( * ) where notes = 'strike was due to mandatory overtime demands. provisions for stress were won' and duration of strike = '1 week' | 0 |
[ header: | name | date | location | county | description row 1 : 1 | diamond head | None | honolulu | oahu | state monument
row 2 : 2 | i'ao valley | None | wailuku | maui | state monument
row 3 : 3 | kanaha pond | june 1971 | kahului | maui | bird sanctuary
row 4 : 4 | koʻolau range pali | None | None | oahu | None
row 5 : 5 | makalawena marsh | june 1972 | north kona | hawaiʻi | bird sanctuary
row 6 : 6 | mauna kea | november 1972 | saddle road | hawaiʻi | u.s. state high point
row 7 : 7 | north shore cliffs | december 1972 | molokaʻi | maui | None ] Execute this SQL based on the above table: select where description = 'bird sanctuary' and = 5 | 5 |
[ header: year | competition | venue | position | event | notes row 1 : 1982 | african championships | cairo, egyp | 1st | marathon | 2:21:05
row 2 : 1982 | commonwealth games | brisbane, australia | 2nd | marathon | 2:09:30
row 3 : 1983 | world championships | helsinki, finland | 15th | marathon | 2:13:11
row 4 : 1983 | melbourne marathon | melbourne, australia | 1st | marathon | 2:13:50
row 5 : 1984 | tokyo marathon | tokyo, japan | 1st | marathon | 2:10:49
row 6 : 1984 | olympic games | los angeles, united states | 6th | marathon | 2:11:10
row 7 : 1984 | melbourne marathon | melbourne, australia | 1st | marathon | 2:15:31
row 8 : 1986 | tokyo marathon | tokyo, japan | 1st | marathon | 2:08:10
row 9 : 1986 | fukuoka marathon | fukuoka, japan | 1st | marathon | 2:10:06
row 10 : 1987 | world championships | rome, italy | 6th | marathon | 2:13:43
row 11 : 1987 | beijing marathon | beijing, pr china | 1st | marathon | 2:12:19
row 12 : 1988 | olympic games | seoul, south korea | 7th | marathon | 2:13:06
row 13 : 1988 | boston marathon | boston, united states | 2nd | marathon | None
row 14 : 1989 | new york city marathon | new york, united states | 1st | marathon | 2:08:01
row 15 : 1989 | boston marathon | boston, united states | 2nd | marathon | None
row 16 : 1990 | boston marathon | boston, united states | 2nd | marathon | None
row 17 : 1992 | olympic games | barcelona, spain | 34th | marathon | 2:19:34
row 18 : 1993 | world championships | stuttgart, germany | 21st | marathon | 2:24:23
row 19 : 1995 | world championships | gothenburg, sweden | 43rd | marathon | 2:30:53 ] Execute this SQL based on the above table: select venue order by year asc limit 1 | cairo, egypt |
[ header: township | fips | population center | population | population density /km2 (/sq mi) | land area km2 (sq mi) | water area km2 (sq mi) | water % | geographic coordinates row 1 : alexandria | 1100 | None | 859 | 7 (18) | 123 (48) | 1 (0) | 0.62% | 39°16′8′′n 95°7
row 2 : delaware | 17450 | None | 1361 | 22 (57) | 62 (24) | 3 (1) | 4.19% | 39°14′50′′n 94°
row 3 : easton | 19625 | None | 1245 | 11 (30) | 109 (42) | 0 (0) | 0.11% | 39°21′57′′n 95°7
row 4 : fairmount | 22325 | basehor | 6266 | 61 (159) | 102 (39) | 0 (0) | 0.39% | 39°8′4′′n 94°
row 5 : high prairie | 32125 | None | 1768 | 14 (37) | 124 (48) | 0 (0) | 0.27% | 39°15′30′′n 95°0
row 6 : kickapoo | 36700 | None | 1760 | 15 (40) | 114 (44) | 3 (1) | 2.39% | 39°20′45′′n 94°
row 7 : reno | 58950 | None | 1143 | 10 (27) | 111 (43) | 2 (1) | 1.56% | 39°1′8′′n 95°8
row 8 : sherman | 65000 | None | 2367 | 22 (57) | 108 (42) | 3 (1) | 2.44% | 39°0′59′′n 95°0
row 9 : stranger | 68500 | None | 2451 | 19 (50) | 127 (49) | 0 (0) | 0.17% | 39°8′16′′n 95°2
row 10 : tonganoxie | 70825 | tonganoxie (part) | 4852 | 35 (91) | 137 (53) | 1 (0) | 0.66% | 39°7′0′′n 95°6 ] Execute this SQL based on the above table: select township where township != 'stranger' and population = 1768 | high prairie |
[ header: rank | nation | gold | silver | bronze | total row 1 : 1 | algeria | 8 | 3 | 0 | 11
row 2 : 2 | tunisia | 4 | 3 | 5 | 12
row 3 : 3 | egypt | 3 | 3 | 3 | 9
row 4 : 4 | cameroon | 1 | 1 | 5 | 7
row 5 : 5 | morocco | 0 | 1 | 5 | 5
row 6 : 6 | south africa | 0 | 1 | 1 | 2
row 7 : 7 | angola | 0 | 1 | 0 | 1
row 8 : 7 | burkina faso | 0 | 1 | 0 | 1
row 9 : 7 | gabon | 0 | 1 | 0 | 1
row 10 : 7 | madagascar | 0 | 1 | 0 | 1
row 11 : 11 | nigeria | 0 | 0 | 3 | 3
row 12 : 12 | senegal | 0 | 0 | 2 | 2
row 13 : 13 | congo republic | 0 | 0 | 1 | 1
row 14 : 13 | ivory coast | 0 | 0 | 1 | 1
row 15 : 13 | guinea | 0 | 0 | 1 | 1
row 16 : 13 | niger | 0 | 0 | 1 | 1 ] Execute this SQL based on the above table: select nation where silver = 0 | nigeria, senegal, congo republic, ivory coast, guinea, niger |
[ header: network | company | mobile prefixes | mobile examples | landline prefixes | landline examples | notes row 1 : beeline | sotelco ltd | 031 (+ 7 digits) 060 | +855 31 234 5678 +85 | ndc + '46' + | +855 23 461 2346 +85 | None
row 2 : mobitel | camgsm co., lt | 011 (+ 6 digits) 012 | +855 76 234 5678 + | None | None | also known as cellcard incorporates the former
row 3 : cootel | xinwei (cambodia) | 038 (+ 7 digits) | +855 38 383 8380 | ndc + '47' + | +855 23 471 2346 +85 | None
row 4 : excell | gt-tell (cambodia) | 018 (+ 6 digits) | +855 18 234 567 | None | None | None
row 5 : metfone | viettel (cambodia) p | 088 (+ 7 digits) 097 | +855 88 234 5678 + | None | None | None
row 6 : qb | cambodia advance communications co., l | 013 (+ 6 digits) 080 | +855 13 234 567 | None | None | None
row 7 : smart | smart axiata co., l | 010 (+ 6 digits) 015 | +855 96 234 5678 + | ndc + '45' + | +855 23 451 2346 +85 | incorporates the former hello axiata ] Execute this SQL based on the above table: select count ( notes ) where network = 'metfone' | 0 |
[ header: official name | designation | area km2 | population | parish row 1 : moncton | city | 141.17 | 69074 | moncton
row 2 : dieppe | city | 51.17 | 23310 | moncton
row 3 : beaubassin east | rural community | 291.04 | 6200 | shediac
row 4 : shediac | town | 11.97 | 6053 | shediac
row 5 : sackville | town | 74.32 | 5558 | sackville
row 6 : memramcook | village | 185.71 | 4831 | dorchester
row 7 : cap-pele | village | 23.78 | 2256 | botsford
row 8 : salisbury | village | 13.68 | 2208 | salisbury
row 9 : petitcodiac | village | 17.22 | 1429 | salisbury
row 10 : dorchester | village | 5.74 | 1167 | dorchester
row 11 : port elgin | village | 2.61 | 418 | westmorland ] Execute this SQL based on the above table: select ( select population where official name = 'sackville' ) < ( select population where official name = 'salisbury' ) | 0 |
[ header: year | competition | venue | position | event | notes row 1 : 1979 | grandma's marathon | duluth, united states | 1st | marathon | 2:37:37
row 2 : 1980 | grandma's marathon | duluth, united states | 1st | marathon | 2:38:35
row 3 : 1981 | grandma's marathon | duluth, united states | 1st | marathon | 2:29:35
row 4 : 1984 | boston marathon | boston, united states | 1st | marathon | 2:29:28
row 5 : 1984 | olympic games | los angeles, united states | 5th | marathon | 2:28:54
row 6 : 1986 | osaka ladies marathon | osaka, japan | 1st | marathon | 2:30:24
row 7 : 1986 | commonwealth games | edinburgh, scotl | 2nd | marathon | 2:28:17
row 8 : 1987 | osaka ladies marathon | osaka, japan | 1st | marathon | 2:30:40
row 9 : 1987 | world championships | rome, italy | 21st | 10,000 m | 34:07.26
row 10 : 1988 | olympic games | seoul, south korea | 33rd | marathon | 2:37:52
row 11 : 1989 | osaka ladies marathon | osaka, japan | 1st | marathon | 2:30:21
row 12 : 1989 | hokkaido marathon | sapporo, japan | 1st | marathon | 2:36:39
row 13 : 1991 | hokkaido marathon | sapporo, japan | 1st | marathon | 2:33:20
row 14 : 1992 | olympic games | barcelona, spain | 3rd | marathon | 2:33:59
row 15 : 1996 | olympic games | atlanta, united states | 46th | marathon | 2:42:21 ] Execute this SQL based on the above table: select count ( * ) | 15 |
[ 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 site group by site order by count ( result ) desc limit 1 | groves stadium • winston-salem, nc |
[ header: year | tournaments played | cuts made | wins | 2nd | 3rd | top 10s | best finish | earnings (€) | money list rank | scoring average | scoring rank | rolex ranking row 1 : 2004 | 1 | 0 | 0 | 0 | 0 | 0 | cut | None | None | 77.5 | None | None
row 2 : 2006 | 1 | 1 | 0 | 0 | 0 | 0 | t55 | None | None | 73.67 | None | None
row 3 : 2007 | 1 | 1 | 0 | 0 | 0 | 0 | t11 | None | None | 71 | None | 647
row 4 : 2008 | 1 | 1 | 0 | 0 | 0 | 1 | t10 | None | None | 70.33 | None | 703
row 5 : 2009 | 17 | 14 | 0 | 0 | 0 | 1 | t5 | 48893 | 35 | 72.45 | 37 | 274
row 6 : 2010 | 20 | 14 | 0 | 3 | 1 | 7 | t2 | 121959 | 12 | 72.33 | 35 | 118
row 7 : 2011 | 15 | 13 | 1 | 2 | 1 | 6 | 1 | 161172 | 8 | 70.92 | 13 | 63
row 8 : 2012 | 6 | 3 | 2 | 0 | 0 | 2 | 1 | 104884 | 13 | 72 | None | 65 ] Execute this SQL based on the above table: select best finish where wins = 0 and best finish = 't11' | t11 |
[ header: league | league | position | teams | matches | win | lose row 1 : v.league | 7th (2000-01) | 4th | 10 | 18 | 9 | 9
row 2 : v.league | 8th (2001-02) | 4th | 9 | 16 | 14 | 2
row 3 : v.league | 9th (2002-03) | 3rd | 8 | 21 | 12 | 9
row 4 : v.league | 10th (2003-04) | runner-up | 10 | 18 | 13 | 5
row 5 : v.league | 11th (2004-05) | 8th | 10 | 27 | 11 | 16
row 6 : v.league | 12th (2005-06) | 4th | 10 | 27 | 20 | 7
row 7 : v・premier | 2006-07 | 6th | 10 | 27 | 11 | 16
row 8 : v・premier | 2007-08 | champion | 10 | 27 | 23 | 4
row 9 : v・premier | 2008-09 | champion | 10 | 27 | 20 | 7
row 10 : v・premier | 2009-10 | champion | 8 | 28 | 21 | 7
row 11 : v・premier | 2010-11 | runner-up | 8 | 26 | 19 | 7
row 12 : v・premier | 2011-12 | champion | 8 | 21 | 18 | 3
row 13 : v・premier | 2012-13 | runner-up | 8 | 28 | 20 | 8 ] Execute this SQL based on the above table: select matches order by win desc limit 1 | 27 |
[ header: date | opponent | venue | result | attendance | scorers row 1 : 15 august 1998 | wolverhampton wanderers | h | 0-2 | 7521 | None
row 2 : 29 august 1998 | grimsby town | h | 0-0 | 5587 | None
row 3 : 31 august 1998 | barnsley | a | 0-1 | 15328 | None
row 4 : 6 september 1998 | portsmouth | h | 3-0 | 6626 | marsh, windass (2, 1 pen)
row 5 : 9 september 1998 | swindon town | a | 1-4 | 8305 | banger
row 6 : 19 september 1998 | sunderland | a | 0-7 | 34567 | None
row 7 : 26 september 1998 | queens park rangers | h | 4-1 | 7489 | beauchamp, murphy, thom
row 8 : 10 october 1998 | tranmere rovers | h | 1-2 | 5862 | windass
row 9 : 17 october 1998 | bolton wanderers | a | 1-1 | 17064 | thomson
row 10 : 31 october 1998 | crewe alexandra | h | 1-1 | 5607 | windass
row 11 : 21 november 1998 | port vale | h | 2-1 | 5964 | windass (pen), powell
row 12 : 5 december 1998 | bradford city | h | 0-1 | 5969 | None
row 13 : 19 december 1998 | stockport county | a | 0-2 | 6500 | None
row 14 : 28 december 1998 | portsmouth | a | 2-2 | 12604 | banger (2)
row 15 : 9 january 1999 | bristol city | h | 0-0 | 9434 | None
row 16 : 30 january 1999 | barnsley | h | 1-0 | 6174 | windass
row 17 : 6 february 1999 | wolverhampton wanderers | a | 1-1 | 20811 | windass
row 18 : 13 february 1999 | swindon town | h | 2-0 | 8179 | windass (2, 1 pen)
row 19 : 27 february 1999 | sunderland | h | 0-0 | 9044 | None
row 20 : 3 march 1999 | queens park rangers | a | 0-1 | 9040 | None
row 21 : 9 march 1999 | huddersfield town | h | 2-2 | 6034 | cook, beauchamp
row 22 : 13 march 1999 | watford | h | 0-0 | 8137 | None
row 23 : 20 march 1999 | crewe alexandra | a | 1-3 | 4791 | thomson
row 24 : 26 march 1999 | sheffield united | a | 2-1 | 14115 | thomson, banger
row 25 : 3 april 1999 | bolton wanderers | h | 0-0 | 7547 | None
row 26 : 5 april 1999 | tranmere rovers | a | 2-2 | 7837 | weatherstone, gilchrist
row 27 : 17 april 1999 | port vale | a | 0-1 | 7393 | None
row 28 : 24 april 1999 | norwich city | h | 2-4 | 7345 | wilsterman, francis
row 29 : 1 may 1999 | bradford city | a | 0-0 | 15064 | None
row 30 : 9 may 1999 | stockport county | h | 5-0 | 6830 | gilchrist, powell, beauch ] Execute this SQL based on the above table: select result order by attendance limit 1 | 1-3 |
[ 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 : 2001 | cin | 15 | 53 | 41 | 12 | 8.5 | 0 | 0 | 0 | 2 | 28 | 14 | 21 | 0 | 5
row 2 : 2002 | cin | 16 | 59 | 47 | 12 | 6.5 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2
row 3 : 2003 | cin | 16 | 60 | 41 | 19 | 5 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3
row 4 : 2004 | cin | 16 | 70 | 41 | 29 | 8 | 2 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 2
row 5 : 2005 | cin | 16 | 65 | 45 | 20 | 6 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 2
row 6 : 2006 | cin | 16 | 81 | 50 | 31 | 7.5 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 3
row 7 : 2007 | cin | 16 | 78 | 49 | 29 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3
row 8 : 2008 | sf | 16 | 73 | 50 | 23 | 7 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 3
row 9 : 2009 | sf | 16 | 55 | 40 | 15 | 6 | 2 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1
row 10 : 2010 | sf | 16 | 70 | 57 | 13 | 8.5 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1
row 11 : 2011 | sf | 16 | 58 | 45 | 13 | 7.5 | 3 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 2
row 12 : 2012 | sf | 14 | 66 | 47 | 19 | 3 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 2
row 13 : 2013 | sf | 16 | 49 | 32 | 17 | 6.5 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0
row 14 : career | None | 205 | 837 | 585 | 252 | 82 | 15 | 9 | 0 | 3 | 28 | 9 | 21 | 0 | 29 ] Execute this SQL based on the above table: select team order by longest interception return desc limit 1 | cin |
[ header: rank | lane | athlete | time row 1 : None | 5 | olga teresh | 51.86
row 2 : None | 6 | manjeet kaur (ind) | 52.17
row 3 : None | 3 | asami tanno (jpn) | 53.04
row 4 : 4 | 4 | pinki pramanik (ind) | 53.06
row 5 : 5 | 1 | tang xiaoyin (chn | 53.66
row 6 : 6 | 8 | marina maslyonko (kaz | 53.99
row 7 : 7 | 7 | mayu kida (jpn) | 54.27
row 8 : 8 | 2 | chandrika subashini ( | 56.57 ] Execute this SQL based on the above table: select count ( athlete ) where rank < 4 | 0 |
[ header: name | rural municipality (rm) | population (2011) | population (2006) | change (%) | land area (km2) | population density (per km2) row 1 : assiniboia | lake of the rivers no. 72 | 2418 | 2305 | 4.9 | 3.78 | 639.8
row 2 : bengough | bengough no. 40 | 313 | 337 | -7.1 | 1.07 | 292
row 3 : bienfait | coalfields no. 4 | 780 | 748 | 4.3 | 3.09 | 252.4
row 4 : big river | big river no. 555 | 639 | 728 | -12.2 | 2.51 | 255
row 5 : birch hills | birch hills no. 460 | 1064 | 935 | 13.8 | 2.27 | 468.4
row 6 : broadview | elcapo no. 154 | 574 | 611 | -6.1 | 2.45 | 233.8
row 7 : bruno | bayne no. 371 | 574 | 495 | 16 | 0.95 | 606.1
row 8 : churchbridge | churchbridge no. 211 | 743 | 704 | 5.5 | 2.76 | 269.2
row 9 : craik | craik no. 222 | 453 | 408 | 11 | 3.02 | 150
row 10 : govan | last mountain valley no. 250 | 216 | 232 | -6.9 | 1.35 | 159.7
row 11 : kindersley | kindersley no. 290 | 4678 | 4412 | 6 | 12.55 | 372.8
row 12 : kipling | kingsley no. 124 | 1051 | 973 | 8 | 2.15 | 487.9
row 13 : lampman | browning no. 34 | 713 | 634 | 12.5 | 2.23 | 319.9
row 14 : leader | happyland no. 231 | 821 | 881 | -6.8 | 1.71 | 481.2
row 15 : lemberg | abernethy no. 186 | 274 | 255 | 7.5 | 2.67 | 102.7
row 16 : lumsden | lumsden no. 189 | 1631 | 1523 | 7.1 | 4.06 | 402
row 17 : maple creek | maple creek no. 111 | 2176 | 2198 | -1 | 4.42 | 492.1
row 18 : milestone | brock no. 64 | 618 | 562 | 10 | 2.17 | 284.4
row 19 : morse | morse no. 165 | 240 | 236 | 1.7 | 1.45 | 165.7
row 20 : naicam | pleasantdale no. 398 | 686 | 690 | -0.6 | 1.69 | 405.5
row 21 : nipawin | nipawin no. 487 | 4265 | 4076 | 4.6 | 8.71 | 489.4
row 22 : osler | corman park no. 344 | 1088 | 926 | 17.5 | 1.55 | 700.6
row 23 : pilot butte | mcleod no. 185 | 1848 | 1872 | -1.3 | 5.05 | 365.6
row 24 : porcupine plain | porcupine no. 395 | 855 | 783 | 9.2 | 2.27 | 377.2
row 25 : preeceville | preeceville no. 334 | 1070 | 1050 | 1.9 | 3.06 | 350.2
row 26 : rouleau | redburn no. 130 | 453 | 400 | 13.3 | 1.61 | 282.2
row 27 : shaunavon | grassy creek no. 78 | 1756 | 1691 | 3.8 | 5.1 | 344.2
row 28 : springside | st. philips no. | 534 | 513 | 4.1 | 0.68 | 791
row 29 : star city | star city no. 428 | 460 | 428 | 7.5 | 0.7 | 661.1
row 30 : strasbourg | mckillop no. 220 | 752 | 732 | 2.7 | 5.7 | 132 ] Execute this SQL based on the above table: select name order by change (%) asc limit 1 | big river |
[ header: event | gold | silver | bronze | total | ranking row 1 : 1976 winter paralympics | 10 | 1 | 1 | 12 | 2nd
row 2 : 1984 winter paralympics | 4 | 2 | 3 | 9 | 5th
row 3 : 1988 winter paralympics | 5 | 16 | 16 | 37 | 7th
row 4 : 1992 winter paralympics | 3 | 8 | 4 | 15 | 8th
row 5 : 1994 winter paralympics | 2 | 9 | 5 | 16 | 11th
row 6 : 1998 winter paralympics | 10 | 5 | 8 | 23 | 6th
row 7 : 2002 winter paralympics | 6 | 4 | 2 | 12 | 7th
row 8 : 2006 winter paralympics | 0 | 1 | 1 | 2 | 13th
row 9 : 2010 winter paralympics | 1 | 2 | 0 | 3 | 13th ] Execute this SQL based on the above table: select ranking where id = ( select id where ranking = '7th' ) - 1 | 5th |
[ header: year | division | league | regular season | playoffs | open cup row 1 : 2002 | 4 | usl pdl | 3rd, mid atlantic | did not qualify | did not qualify
row 2 : 2003 | 4 | usl pdl | 1st, mid atlantic | conference semifinals | did not qualify
row 3 : 2004 | 4 | usl pdl | 3rd, mid atlantic | did not qualify | did not qualify
row 4 : 2005 | 4 | usl pdl | 1st, mid atlantic | national semifinals | 2nd round
row 5 : 2006 | 4 | usl pdl | 5th, mid atlantic | did not qualify | did not qualify
row 6 : 2007 | 4 | usl pdl | 6th, mid atlantic | did not qualify | did not qualify
row 7 : 2008 | 4 | usl pdl | 6th, mid atlantic | did not qualify | did not qualify ] Execute this SQL based on the above table: select playoffs where open cup = 'did not qualify' | did not qualify, conference semifinals, did not qualify, did not qualify, did not qualify, did not qualify |
[ header: # | temple name | hangul | hanja | period of reign | personal name | relationship | note row 1 : 2 | daru | 다루왕 | 多婁王 | 28-77 | None | first son of onjo | None
row 2 : 3 | giru | 기루왕 | 己婁王 | 77-128 | None | first son of daru | None
row 3 : 5 | chogo | 초고왕 | 肖古王 | 166-214 | None | son of gaeru | also sogo (소고왕, 素古王)
row 4 : 7 | saban | 사반왕 | 沙泮王 | 234 | None | first son of gusu | also sai (사이왕, 沙伊王
row 5 : 9 | chaekgye | 책계왕 | 責稽王 | 286-298 | None | son of goi | also cheonggye (청계왕,
row 6 : 13 | geunchogo | 근초고왕 | 近肖古王 | 346-375 | yeogu | second son of biryu | also chogo (초고왕, 肖古王)
row 7 : 15 | chimnyu | 침류왕 | 枕流王 | 384-385 | None | first son of geungusu | None
row 8 : 16 | jinsa | 진사왕 | 辰斯王 | 385-392 | None | younger brother of chimnyu | also buyeohui (부여휘, 扶餘暉
row 9 : 17 | asin | 아신왕 | 阿莘王 | 392-405 | None | nephew of jinsa; first son | also aha (아화왕, 阿華王)
row 10 : 23 | samgeun | 삼근왕 | 三斤王 | 477-479 | samgeun (삼근, 三斤 | first son of munju | also mun-geun (문근왕, 文斤王
row 11 : 24 | dongseong | 동성왕 | 東城王 | 479-501 | modae (모대, 牟大) or | cousin of samgeum | None ] Execute this SQL based on the above table: select max ( # ) | 31.0 |
[ header: game | day | date | kickoff | opponent | results score | results record | location | attendance row 1 : 1 | saturday | november 9 | 7:05pm | at detroit waza | w 8-7 (ot) | 1-0 | melvindale civic center | 545
row 2 : 2 | sunday | november 10 | 3:05pm | at cleveland freeze | l 3-11 | 1-1 | soccer sportsplex | 703
row 3 : 3 | saturday | november 16 | 7:35pm | detroit waza | l 5-8 | 1-2 | farm show arena | 1605
row 4 : 4 | saturday | november 23 | 7:05pm | cleveland freeze | l 7-10 | 1-3 | farm show arena | 1050
row 5 : 5 | saturday | november 30 | 7:05pm | cincinnati saints | w 8-6 | 2-3 | farm show arena | 1458
row 6 : 6 | saturday | december 21 | 7:05pm | detroit waza | w 9-8 | 3-3 | farm show arena | 1590
row 7 : 7 | sunday | december 22 | 4:05pm | at cleveland freeze | l 4-12 | 3-4 | soccer sportsplex | 431
row 8 : 8 | saturday | december 28 | 7:05pm | cleveland freeze | l 5-12 | 3-5 | farm show arena | 1581
row 9 : 9 | saturday | january 11 | 7:35pm | at cincinnati saints | l 8-9 | 3-6 | tri-county soccerplex | 421
row 10 : 10 | sunday | january 12 | 3:05pm | at detroit waza | l 6-12 | 3-7 | melvindale civic center | 356
row 11 : 11 | saturday | january 18 | 7:05pm | cincinnati saints | w 10-5 | 4-7 | farm show arena | 2209
row 12 : 12 | friday | january 24 | 7:05pm | chicago mustangs | l 7-13 | 4-8 | farm show arena | 1895
row 13 : 13 | saturday | january 25 | 7:05pm | chicago mustangs | l 5-12 | 4-9 | farm show arena | 2373
row 14 : 14 | saturday | february 8 | 8:35pm | at illinois piasa | l 3-4 | 4-10 | the field sports complex | 206
row 15 : 15 | sunday | february 9 | 5:05pm | at chicago mustangs | l 3-14 | 4-11 | grand sports arena | 748
row 16 : 16 | sunday | february 16 | 4:05pm | at dallas sidekicks | l 3-13 | 4-12 | allen event center | 4207 ] Execute this SQL based on the above table: select abs ( attendance - attendance ) where results record = '3-3' | 0.0 |
[ header: name | population (2002 census) | population (2007 estimation) | population (2011 census) | area (km2) | density (pop/km2) row 1 : brasov | 283901 | 277945 | 253200 | 267.32 | 1204
row 2 : codlea | 24256 | 24550 | 21708 | 132.79 | 182
row 3 : sacele | 30044 | 31796 | 30798 | 320 | 93
row 4 : ghimbav | 5100 | 5357 | 4698 | 28.08 | 181.62
row 5 : predeal | 5625 | 5174 | 4755 | 58.4 | 96.14
row 6 : rasnov | 15436 | 16055 | 15022 | 164.36 | 94
row 7 : cristian | 3952 | 4300 | 4490 | 27.73 | 142.51
row 8 : sanpetru | 3401 | 3759 | 4819 | 30.74 | 110.63
row 9 : halchiu | 4072 | 4560 | 4218 | 56.67 | 71.85
row 10 : tarlungeni | 7413 | 7996 | 8320 | 135.66 | 54.65
row 11 : prejmer | 8323 | 8876 | 8472 | 60.48 | 137.61
row 12 : harman | 4437 | 4775 | 5402 | 52.79 | 84.05
row 13 : bod | 3942 | 4173 | 3994 | 33.56 | 117.46
row 14 : total | 399902 | 399316 | 369896 | 1368.58 | 270 ] Execute this SQL based on the above table: select count ( name ) where population (2002 census) <= 301 | 0 |
[ header: season | pitcher | decision | final score | opponent | location row 1 : 1963 | turk farrell | l | 2-9 | san francisco giants | colt stadium
row 2 : 1964 | ken johnson | w | 6-3 | cincinnati reds | crosley field
row 3 : 1965 | bob bruce | l | 0-2 | philadelphia phillies | astrodome
row 4 : 1966 | robin roberts | l | 2-3 | los angeles dodgers | dodger stadium
row 5 : 1968 | larry dierker | w | 5-4 | pittsburgh pirates | astrodome
row 6 : 1970 | larry dierker (2) | w | 8-5 | san francisco giants | candlestick park
row 7 : 1971 | larry dierker (3) | w | 5-2 | los angeles dodgers | astrodome
row 8 : 1973 | dave roberts | nd (w) | 2-1 | atlanta braves | atlanta-fulton county stadium
row 9 : 1976 | j.r. richard | l | 5-11 | cincinnati reds | riverfront stadium
row 10 : 1980 | j.r. richard (5) | w | 3-2 | los angeles dodgers | astrodome
row 11 : 1981 | joe niekro | l | 0-2 | los angeles dodgers | dodger stadium
row 12 : 1982 | nolan ryan | l | 3-14 | st. louis cardinals | astrodome
row 13 : 1983 | joe niekro (2) | nd (l) | 7-16 | los angeles dodgers | astrodome
row 14 : 1984 | joe niekro (3) | l | 2-4 | montreal expos | astrodome
row 15 : 1985 | nolan ryan (2) | w | 2-1 | los angeles dodgers | astrodome
row 16 : 1987 | mike scott | w | 4-3 | los angeles dodgers | astrodome
row 17 : 1988 | mike scott (2) | w | 6-3 | san diego padres | astrodome
row 18 : 1989 | mike scott (3) | w | 10-3 | atlanta braves | astrodome
row 19 : 1992 | pete harnisch | l | 0-2 | atlanta braves | astrodome
row 20 : 1994 | pete harnisch (2) | nd (w) | 6-5 | montreal expos | astrodome
row 21 : 1998 | shane reynolds | nd (l) | 4-9 | san francisco giants | astrodome
row 22 : 1999 | shane reynolds | w | 4-2 | chicago cubs | astrodome
row 23 : 2000 | shane reynolds | w | 5-2 | pittsburgh pirates | three rivers stadium
row 24 : 2001 | scott elarton | w | 11-3 | milwaukee brewers | enron field
row 25 : 2002 | wade miller | l | 3-9 | milwaukee brewers | astros field
row 26 : 2003 | roy oswalt | w | 10-4 | colorado rockies | minute maid park
row 27 : 2004 | roy oswalt (2) | nd (l) | 4-5 | san francisco giants | minute maid park
row 28 : 2005 | roy oswalt (3) | l | 3-7 | st. louis cardinals | minute maid park
row 29 : 2006 | roy oswalt (4) | w | 1-0 | florida marlins | minute maid park ] Execute this SQL based on the above table: select count ( * ) where decision = 'w' | 14 |
[ header: # | date | venue | opponent | score | result | competition row 1 : 2 | 17 february 2002 | healy park, omagh | tyrone | | 2-10 : 0-18 | national football league round 2
row 2 : 3 | 3 march 2002 | parnell park, dublin | westmeath | | 3-13 : 1-16 | national football league round 4
row 3 : 5 | 31 march 2002 | tuam stadium, galway | galway | | 1-12 : 1-12 | national football league round 7
row 4 : 6 | 2 february 2003 | parnell park, dublin | armagh | | 0-7 : 1-15 | national football league round 1
row 5 : 12 | 8 february 2004 | mchale park, castlebar | mayo | | 0-3 : 1-10 | national football league round 2
row 6 : 15 | 21 march 2004 | parnell park, dublin | cork | | 0-9 : 0-9 | national football league round 6
row 7 : 16 | 5 february 2005 | parnell park, dublin | mayo | | 2-13 : 1-15 | national football league round 1
row 8 : 21 | 26 march 2005 | pairc ui rinn, | cork | | 1-6 : 0-18 | national football league round 6
row 9 : 22 | 3 april 2005 | o'connor park, tul | offaly | | 1-13 : 2-6 | national football league round 7
row 10 : 27 | 25 march 2006 | parnell park, dublin | mayo | | 4-10 : 1-10 | national football league round 6
row 11 : 28 | 9 april 2006 | fitzgerald stadium, kerry | kerry | | 0-13 : 0-13 | national football league round 7
row 12 : 30 | 10 february 2007 | gaelic grounds, limerick | limerick | | 0-14 : 1-10 | national football league round 2
row 13 : 31 | 25 february 2007 | ballyshannon, donegal | donegal | | 0-5 : 0-9 | national football league round 3
row 14 : 32 | 10 march 2007 | parnell park, dublin | cork | | 1-13 : 0-7 | national football league round 4
row 15 : 41 | 26 april 2008 | pairc tailteann, meath | westmeath | | 0-10 : 0-15 | national football league division 2 final
row 16 : 42 | 31 january 2009 | croke park, dublin | tyrone | | 1-16 : 1-18 | national football league round 1
row 17 : 43 | 15 february 2009 | pearse stadium, salthill | galway | | 0-13 : 3-12 | national football league round 2
row 18 : 48 | 7 february 2010 | fitzgerald stadium, killarney | kerry | | 1-12 : 1-10 | national football league round 1
row 19 : 50 | 13 march 2010 | parnell park, dublin | monaghan | | 2-11 : 1-9 | national football league round 4 ] Execute this SQL based on the above table: select competition order by # desc limit 1 | national football league round 4 |
[ header: rank | nation | gold | silver | bronze | total row 1 : 1 | russia | 8 | 12 | 10 | 30
row 2 : 2 | china | 7 | 4 | 2 | 13
row 3 : 3 | ukraine | 7 | 1 | 1 | 9
row 4 : 4 | poland | 3 | 4 | 2 | 9
row 5 : 5 | belarus | 2 | 2 | 2 | 6
row 6 : 6 | germany | 2 | 1 | 2 | 5
row 7 : 6 | south africa | 2 | 1 | 2 | 5
row 8 : 7 | australia | 2 | 1 | 1 | 4
row 9 : 8 | japan | 2 | 0 | 1 | 3
row 10 : 9 | france | 1 | 3 | 0 | 4
row 11 : 10 | romania | 1 | 2 | 2 | 5
row 12 : 11 | hungary | 1 | 2 | 1 | 4
row 13 : 12 | great britain | 1 | 1 | 2 | 4
row 14 : 12 | spain | 1 | 1 | 2 | 4
row 15 : 14 | morocco | 1 | 1 | 1 | 3
row 16 : 15 | brazil | 1 | 0 | 3 | 3
row 17 : 16 | czech republic | 1 | 0 | 2 | 3
row 18 : 17 | moldova | 1 | 0 | 0 | 1
row 19 : 18 | finland | 0 | 2 | 1 | 3
row 20 : 19 | estonia | 0 | 1 | 1 | 2
row 21 : 19 | north korea | 0 | 1 | 1 | 2
row 22 : 19 | south korea | 0 | 1 | 1 | 2
row 23 : 22 | denmark | 0 | 1 | 0 | 1
row 24 : 22 | ireland | 0 | 1 | 0 | 1
row 25 : 22 | jamaica | 0 | 1 | 0 | 1
row 26 : 22 | kazakhstan | 0 | 1 | 0 | 1
row 27 : 22 | uganda | 0 | 1 | 0 | 1
row 28 : 27 | croatia | 0 | 0 | 2 | 2
row 29 : 28 | canada | 0 | 0 | 1 | 1
row 30 : 28 | cyprus | 0 | 0 | 1 | 1
row 31 : 28 | italy | 0 | 0 | 1 | 1
row 32 : 28 | switzerland | 0 | 0 | 1 | 1 ] Execute this SQL based on the above table: select count ( nation ) | 32 |
[ header: year | winners | score | score | runners-up | venue | winning captain row 1 : 2000 | meath | 5-14 (29) | 2-10 (16) | carlow | cusack park | None
row 2 : 2001 | kerry | 4-14 (22) | 3-10 (19) | westmeath | croke park | michael 'boxer'
row 3 : 2002 | laois | 1-20 (23) | 2-14 (20) | antrim | semple stadium | john lyons
row 4 : 2003 | antrim | 3-18 (27) | 3-12 (21) | kerry | croke park | None
row 5 : 2004 | down | 5-15 (30) | 3-7 (16) | westmeath | gaelic grounds | simon wilson
row 6 : 2005 | offaly | 6-21 (39) | 4-7 (19) | carlow | semple stadium | barry teehan
row 7 : 2006 | dublin | 0-16 (16) | 1-6 (9) | kerry | semple stadium | philip brennan
row 8 : 2007 | laois | 2-19 (25) | 0-8 (8) | wicklow | semple stadium | joe fitzpatrick
row 9 : 2008 | westmeath | 2-12 (18) | 0-12 (12) | carlow | gaelic grounds | brendan murtagh
row 10 : 2009 | offaly | 1-13 (16) | 0-13 (13) | wexford | semple stadium | ger oakley
row 11 : 2010 | wexford | 1-16 (19) | 2-9 (15) | clare | semple stadium | diarmuid lyng
row 12 : 2011 | limerick | 4-12 (24) | 2-13 (19) | clare | cusack park | gavin o'mahony
row 13 : 2012 | clare | 0-21 (21) | 1-16 (19) | limerick | gaelic grounds | patrick donnellan
row 14 : 2013 | dublin | 1-16 (19) | 1-15 (18) | limerick | semple stadium | tbc ] Execute this SQL based on the above table: select runners-up where year = 2009 | wexford |
[ header: national park | region | land area (km2) | established | visitation (2009) | coordinates row 1 : archipelago | finland proper | 500 | 1982 | 53500 | 59°54′53′′n 21°
row 2 : bothnian sea | None | None | 2011 | None | None
row 3 : ekenas archipelago | uusimaa | 52 | 1989 | 44500 | 59°49′22′′n 23°
row 4 : isojarvi | central finland | 19 | 1982 | 10500 | 61°41′54′′n 25°
row 5 : kolovesi | southern savonia | 23 | 1990 | 7500 | 62°15′27′′n 28°
row 6 : lauhanvuori | southern ostrobothnia | 53 | 1982 | 10000 | 62°09′7′′n 22°
row 7 : linnansaari | southern savonia / northern | 38 | 1956 | 31000 | 62°6′38′′n 28°
row 8 : nuuksio | uusimaa | 45 | 1994 | 179500 | 60°18′27′′n 24°29
row 9 : pyha-hakki | central finland | 13 | 1956 | 17000 | 62°50′44′′n 25°
row 10 : riisitunturi | lapland | 77 | 1982 | 15000 | 66°14′n 28°30′
row 11 : rokua | northern ostrobothnia / | 4.3 | 1956 | 23500 | 64°33′22′′n 26°30
row 12 : sipoonkorpi | uusimaa | 18.6 | 2011 | None | 60°18′54′′n 25°13
row 13 : syote | northern ostrobothnia / | 299 | 2000 | 40000 | 65°44′51′′n 27°54 ] Execute this SQL based on the above table: select count ( * ) where coordinates = '62°50′44′′n 25°28′21′′e / 62.84556°n 25.47250°e' | 1 |
[ header: year | award | category | nominated work | result row 1 : 1979 | olivier award | best actress in a revival | once in a lifetime | won
row 2 : 1981 | tony award | best featured in a play | piaf! | nominated
row 3 : 1981 | drama desk award | outstanding featured actress in a play | piaf! | nominated
row 4 : 1984 | olivier award | best actress in a revival | twelfth night | nominated
row 5 : 1984 | olivier award | best actress in a supporting role | the time of your life | nominated
row 6 : 1985 | olivier award | best performance in a supporting role | mother courage | nominated
row 7 : 1986 | tony award | best featured actress in a play | loot | nominated
row 8 : 1986 | drama desk award | outstanding featured actress in a play | loot | nominated
row 9 : 1989/90 | olivier award | best performance in a supporting role | othello | nominated
row 10 : 1991 | olivier award | best actress in a supporting role | the crucible | nominated
row 11 : 1992 | bafta tv award | best actress | prime suspect | nominated
row 12 : 1993 | bafta tv award | best actress | love hurts | nominated
row 13 : 1996 | olivier award | best actress | the glass menagerie | nominated
row 14 : 1998 | bafta film award | best supporting actress | wilde | nominated
row 15 : 1998 | olivier award | best actress | electra | won
row 16 : 1999 | tony award | best actress in a play | electra | nominated
row 17 : 1999 | drama desk award | outstanding actress in a play | electra | nominated
row 18 : 2002 | olivier award | best actress | boston marriage | nominated
row 19 : 2006 | tony award | best featured actress in a play | awake and sing! | nominated ] Execute this SQL based on the above table: select nominated work order by category asc limit 1 | prime suspect |
[ header: player | games played | minutes played | minutes played per game | rebounds | rebounds per game | assists | assists per game | field goal % | free throw % | 3-point % | points | points per game row 1 : allan houston | 78 | 2858 | 36.6 | 283 | 3.6 | 173 | 2.2 | 0.449 | 0.909 | 0.381 | 1459 | 18.7
row 2 : latrell sprewell | 77 | 3017 | 39.2 | 347 | 4.5 | 269 | 3.5 | 0.43 | 0.783 | 0.304 | 1364 | 17.7
row 3 : glen rice | 75 | 2212 | 29.5 | 307 | 4.1 | 89 | 1.2 | 0.44 | 0.852 | 0.389 | 899 | 12
row 4 : marcus camby | 63 | 2127 | 33.8 | 515 | 11.5 | 52 | 0.8 | 0.524 | 0.667 | 0.125 | 759 | 12
row 5 : kurt thomas | 77 | 2125 | 27.6 | 723 | 6.7 | 63 | 0.8 | 0.511 | 0.814 | 0.333 | 800 | 10.4
row 6 : larry johnson | 65 | 2105 | 32.4 | 363 | 5.6 | 127 | 2 | 0.411 | 0.797 | 0.313 | 645 | 9.9
row 7 : charlie ward | 61 | 1492 | 24.5 | 159 | 2.6 | 273 | 4.5 | 0.416 | 0.8 | 0.383 | 433 | 7.1
row 8 : othella harrington | 30 | 548 | 18.3 | 99 | 3.3 | 20 | 0.7 | 0.554 | 0.729 | None | 185 | 6.2
row 9 : mark jackson | 29 | 786 | 27.1 | 120 | 4.1 | 163 | 5.6 | 0.411 | 0.529 | 0.31 | 170 | 5.9
row 10 : chris childs | 51 | 1309 | 25.7 | 138 | 2.7 | 236 | 4.6 | 0.419 | 0.848 | 0.313 | 245 | 4.8
row 11 : erick strickland | 28 | 421 | 15 | 52 | 1.9 | 29 | 1 | 0.305 | 0.857 | 0.34 | 120 | 4.3
row 12 : lavor postell | 26 | 169 | 6.5 | 25 | 1 | 5 | 0.2 | 0.315 | 0.815 | 0.273 | 59 | 2.3
row 13 : felton spencer | 18 | 113 | 6.3 | 35 | 1.9 | 2 | 0.1 | 0.6 | 0.6 | None | 39 | 2.2
row 14 : luc longley | 25 | 301 | 12 | 66 | 2.6 | 7 | 0.3 | 0.333 | 0.765 | None | 49 | 2
row 15 : rick brunson | 15 | 66 | 4.4 | 12 | 0.8 | 7 | 0.5 | 0.421 | 0.667 | 0 | 20 | 1.3
row 16 : travis knight | 45 | 256 | 5.7 | 53 | 1.2 | 5 | 0.1 | 0.189 | 0.5 | 0 | 29 | 0.6 ] Execute this SQL based on the above table: select points where player = 'larry johnson' | 645 |
[ header: year | derby winner | galaxy | draw | chivas row 1 : 2005 | galaxy | 5 | 0 | 0
row 2 : 2006 | galaxy | 2 | 1 | 1
row 3 : 2007 | chivas | 1 | 1 | 2
row 4 : 2008 | galaxy | 1 | 2 | 0
row 5 : 2009 | galaxy | 3 | 2 | 0
row 6 : 2010 | galaxy | 2 | 0 | 0
row 7 : 2011 | galaxy | 2 | 0 | 0
row 8 : 2012 | galaxy | 2 | 0 | 1
row 9 : 2013 | galaxy | 2 | 1 | 0
row 10 : total | None | 20 | 7 | 4 ] Execute this SQL based on the above table: select derby winner where galaxy < ( select galaxy where derby winner = 'galaxy' ) order by galaxy desc limit 1 | galaxy |
[ header: rank | nation | gold | silver | bronze | total row 1 : 1 | russia | 7 | 3 | 0 | 10
row 2 : 2 | italy | 1 | 3 | 0 | 4
row 3 : 3 | france | 1 | 1 | 2 | 4
row 4 : 4 | austria | 1 | 1 | 0 | 2
row 5 : 4 | germany | 1 | 1 | 0 | 2
row 6 : 4 | iran | 1 | 1 | 0 | 2
row 7 : 4 | israel | 1 | 1 | 0 | 2
row 8 : 8 | poland | 1 | 0 | 5 | 6
row 9 : 9 | netherlands | 1 | 0 | 1 | 2
row 10 : 9 | romania | 1 | 0 | 1 | 2
row 11 : 11 | belgium | 1 | 0 | 0 | 1
row 12 : 11 | mexico | 1 | 0 | 0 | 1
row 13 : 13 | spain | 0 | 2 | 0 | 2
row 14 : 14 | sweden | 0 | 1 | 3 | 4
row 15 : 15 | colombia | 0 | 1 | 1 | 2
row 16 : 15 | ukraine | 0 | 1 | 1 | 2
row 17 : 17 | denmark | 0 | 1 | 0 | 1
row 18 : 17 | switzerland | 0 | 1 | 0 | 1
row 19 : 19 | algeria | 0 | 0 | 1 | 1
row 20 : 19 | greece | 0 | 0 | 1 | 1
row 21 : 19 | kazakhstan | 0 | 0 | 1 | 1
row 22 : 19 | slovenia | 0 | 0 | 1 | 1
row 23 : total | total | 18 | 18 | 18 | 54 ] Execute this SQL based on the above table: select sum ( bronze ) where nation in ( 'sweden' , 'greece' ) | 4.0 |
[ header: number | name | year built | boat builder | current status row 1 : 1 | hilbre | 1958 | williams & nixon | wksc-regularly
row 2 : 4 | hioco | 1959 | enterprise boat company, rock ferry | wksc-regularly
row 3 : 6 | hie | 1959 | williams & nixon | wksc-regularly
row 4 : 9 | hiawatha | 1960 | williams & nixon | wksc-regularly
row 5 : 13 | no boat | None | None | None
row 6 : 15 | hieros | 1961 | turner & son, donegal | understood to be in a garden in chester
row 7 : 16 | high & dry | 1961 | turner & son, donegal | went down in the persian gulf after
row 8 : 17 | hilsa | 1961 | enterprise boat company, rock ferry | wksc-regularly
row 9 : 19 | hilarity | 1960 | williams & nixon | wksc-regularly
row 10 : 20 | hilda | 1960 | enterprise boat company, rock ferry | wksc-regularly
row 11 : 22 | hijack | 1961 | turner & son, donegal | set on fire and destroyed in nevin,
row 12 : 24 | hibiscus | 1961 | enterprise boat company, rock ferry | sunk when it disappeared from its moor
row 13 : 27 | hicotee | 1961 | enterprise boat company, rock ferry | wksc-regularly
row 14 : 33 | hiwmor | 1961 | crossfield successors, arnside | south east england
row 15 : 35 | hilo | 1961 | enterprise boat company, rock ferry | wrecked when escaped moorings
row 16 : 37 | hinden | 1961 | crossfield successors, arnside | destroyed when put in a skip in liverpool
row 17 : 39 | hickory | 1961 | crossfield successors, arnside | burnt on bonfire night
row 18 : 41 | highcrest | 1961 | crossfield successors, arnside | wrecked when came off its mooring
row 19 : 44 | hibrena | 1961 | crossfield successors, arnside | cut up and burnt in 2002 and parts salvage
row 20 : 49 | higgler | 1961 | crossfield successors, arnside | last heard of in polperro
row 21 : 50 | heulwen | 1962 | wirral boat co., rock ferry | porthmadog
row 22 : 54 | hinon | 1964 | crossfield successors, arnside | lying in a garden in buckley, in
row 23 : 55 | hiriver | 1964 | anglesey boat co., beaumaris | sunk in the river mersey
row 24 : 56 | hipparchus | 1966 | anglesey boat co., beaumaris | liverpool maritime museum ] Execute this SQL based on the above table: select name , current status where name = 'hilbre' | hilbre, wksc-regularly sailed |
[ header: year | single | peak chart positions ger | peak chart positions ire | peak chart positions uk | peak chart positions us | peak chart positions us main | peak chart positions us dance | certifications (sales thresholds) | album row 1 : 1970 | "memo from turner" | 23 | None | 32 | None | None | None | | performance (soundtrack)
row 2 : 1978 | "don't look back" (with pe | None | None | 43 | 81 | None | None | | bush doctor (peter tosh album)
row 3 : 1984 | "state of shock" (with the jack | 23 | 8 | 14 | 3 | 3 | None | | victory (the jacksons album)
row 4 : 1985 | "just another night" | 16 | 21 | 32 | 12 | 1 | 11 | | she's the boss
row 5 : 1985 | "lonely at the top" | None | None | None | None | 9 | None | | she's the boss
row 6 : 1985 | "lucky in love" | 44 | None | 91 | 38 | 5 | 11 | | she's the boss
row 7 : 1985 | "hard woman" | 57 | None | None | None | None | None | | she's the boss
row 8 : 1985 | "dancing in the street" (with | 6 | 1 | 1 | 7 | 3 | 4 | | single only
row 9 : 1986 | "ruthless people" | None | None | None | 51 | 14 | 29 | | ruthless people (soundtrack)
row 10 : 1987 | "let's work" | 29 | 24 | 31 | 39 | 7 | 32 | | primitive cool
row 11 : 1987 | "throwaway" | None | None | None | 67 | 7 | None | | primitive cool
row 12 : 1987 | "say you will" | None | None | None | None | 39 | None | | primitive cool
row 13 : 1993 | "sweet thing" | 23 | None | 24 | 84 | 34 | None | | wandering spirit
row 14 : 1993 | "wired all night" | None | None | None | None | 3 | None | | wandering spirit
row 15 : 1993 | "don't tear me up" | 77 | None | 86 | None | 1 | None | | wandering spirit
row 16 : 1993 | "out of focus" | 70 | None | None | None | None | None | | wandering spirit
row 17 : 2001 | "god gave me everything" | 60 | None | None | None | 24 | None | | goddess in the doorway
row 18 : 2002 | "visions of paradise" | 77 | None | 43 | None | None | None | | goddess in the doorway
row 19 : 2004 | "old habits die hard" (with dave | 62 | None | 45 | None | None | None | | alfie (soundtrack)
row 20 : 2008 | "charmed life" | None | None | None | None | None | 18 | | the very best of mick jagger
row 21 : 2011 | "miracle worker" (with superhe | None | None | 136 | None | None | None | | superheavy (superheavy album)
row 22 : 2011 | "t.h.e (the hardest ever | None | 13 | 3 | 36 | None | None | | #willpower (will.i.am album ] Execute this SQL based on the above table: select single where single != '"ruthless people"' order by peak chart positions us dance desc limit 1 | "let's work" |
[ header: rank | title | studio | director | actors | gross row 1 : 1 | the sound of music | 20th century fox | robert wise | julie andrews, christ | $163,214,286
row 2 : 2 | doctor zhivago | metro-goldwyn-mayer | david lean | omar sharif, ju | $111,721,910
row 3 : 4 | those magnificent men in their flying machines | 20th century fox | ken annakin | stuart whitman, sara | $31,111,111
row 4 : 8 | what's new pussycat? | united artists | clive donner | peter sellers, peter o'tool | $18,820,000
row 5 : 9 | shenandoah | universal pictures | andrew v. mclagle | james stewart, doug | $17,268,889
row 6 : 10 | von ryan's express | 20th century fox | mark robson | frank sinatra, trevor | $17,111,111
row 7 : 12 | for a few dollars more | united artists | sergio leone | clint eastwood, lee van | $15,000,000
row 8 : 13 | the sandpiper | metro-goldwyn-mayer | vincente minnelli | elizabeth tay | $13,691,111
row 9 : 16 | help! | united artists | richard lester | john lennon, paul | $12,066,667
row 10 : 19 | the agony and the ecsta | 20th century fox | carol reed | charlton heston, rex | $8,000,000 ] Execute this SQL based on the above table: select director where rank = 4 intersect select director where rank = 4 | ken annakin |
[ header: # | picture | name | took office | left office | party row 1 : 1 | None | johan ferrier | 25 november 1975 | 13 august 1980 (resigned after a febr | independent
row 2 : 2 | None | hendrick chin a s | 15 august 1980 | 4 february 1982 | pnr
row 3 : 3 | None | fred ramdat misier | 8 february 1982 | 25 january 1988 | independent
row 4 : 4 | 60px | ramsewak shankar | 25 january 1988 | 24 december 1990 (deposed) | vhp
row 5 : 5 | 60px | johan kraag | 29 december 1990 | 16 september 1991 | nps
row 6 : 6 | None | ronald venetiaan | 16 september 1991 | 15 september 1996 | nps
row 7 : 7 | None | jules wijdenbosch | 15 september 1996 | 12 august 2000 | ndp
row 8 : (6) | None | ronald venetiaan | 12 august 2000 | 12 august 2010 | nps
row 9 : 8 | None | desi bouterse | 12 august 2010 | incumbent | ndp ] Execute this SQL based on the above table: select party order by picture asc limit 1711 | independent, pnr, independent, nps, ndp, nps, ndp, vhp, nps |
[ header: category | # | name | hanzi | hanyu pinyin | population (2010 census) | area (km2) | density (/km2) row 1 : city proper | 1 | jianghai district | 江海区 | jianghai qu | 254365 | 107 | 2377.24
row 2 : city proper | 2 | pengjiang district | 蓬江区 | pengjiang qu | 719120 | 325 | 2212.67
row 3 : city proper | 3 | xinhui district | 新会区 | xinhui qu | 849155 | 1260 | 673.93
row 4 : satellite cities | 4 | enping | 恩平市 | enping shi | 492814 | 1698 | 290.23
row 5 : satellite cities | 5 | taishan | 台山市 | taishan shi | 941087 | 3286 | 286.39
row 6 : satellite cities | 6 | kaiping | 开平市 | kaiping shi | 697395 | 1659 | 420.37
row 7 : satellite cities | 7 | heshan | 鹤山市 | heshan shi | 494935 | 1108 | 446.69 ] Execute this SQL based on the above table: select # where name = 'taishan' | 5 |
[ header: branding | callsign | frequency | power (kw) | location row 1 : mom's radio 97.9 lao | dwsn-fm | 97.9 mhz | 5 kw | laoag
row 2 : mom's radio 95.9 naga | dzrb-fm | 95.9 mhz | 10 kw | naga
row 3 : mom's radio 90.3 bacolod | dycp-fm | 90.3 mhz | 5 kw | bacolod
row 4 : dyap 88.3 ce | dyap-fm | 88.3 mhz | 5 kw | cebu
row 5 : mom's radio 101.5 tacloban | dyjp-fm | 101.5 mhz | 2.5 kw | tacloban
row 6 : mom's radio 101.9 zamboang | dxjp-fm | 101.9 mhz | 5 kw | zamboanga
row 7 : dxss 97.9 da | dxss | 97.9 mhz | 10 kw | davao ] Execute this SQL based on the above table: select location order by frequency desc limit 1 | zamboanga |
[ header: year | award | category | title | result row 1 : 1955 | academy award | best actor | marty | won
row 2 : 1955 | bafta award | best foreign actor | marty | won
row 3 : 1955 | golden globe award | best actor - motion picture drama | marty | won
row 4 : 1955 | nbr award | best actor | marty | won
row 5 : 1955 | nyfcc award | best actor | marty | won
row 6 : 1962 | emmy award | outstanding continued performance by an actor in a series | mchale's navy | nominated
row 7 : 1979 | emmy award | outstanding supporting actor in a limited series or | all quiet on the western front | nominated
row 8 : 1999 | daytime emmy award | outstanding performer in an animated program | all dogs go to heaven: the series | nominated
row 9 : 2007 | golden globe award | best performance by an actor in a mini- | a grandpa for christmas | nominated
row 10 : 2009 | emmy award | outstanding guest actor - drama | er | nominated
row 11 : 2009 | lifetime achievement award | from the rhode island international film | None | won
row 12 : 2011 | screen actors guild life achievement award | from the screen actors guild | None | won ] Execute this SQL based on the above table: select count ( result ) where year > 1658 | 12 |
[ header: | name | title reign | title recognition | successful defenses row 1 : 1 | joe calzaghe | 10 years, 11 months, 15 days | ibf, wba, | 21
row 2 : 2 | sven ottke | 5 years, 5 months, 3 days | ibf, wba ( | 21
row 3 : 3 | frankie liles | 4 years, 10 months, 0 days | wba | 8
row 4 : 4 | lucian bute | 4 years, 7 months, 7 days | ibf | 9
row 5 : 5 | chris eubank | 4 years, 4 months, 0 days | wbo | 14
row 6 : 6 | andre ward | 4 years, 6 months, 3 weeks and 1 | wba (super), wb | 6
row 7 : 7 | chong-pal park | 3 years, 7 months, 17 days | ibf, wba | 10
row 8 : 8 | nigel benn | 3 years, 4 months, 28 days | wbc | 9
row 9 : 9 | robert stieglitz | 3 years, 0 months, 3 days | wbo | 6
row 10 : 10 | mikkel kessler | 2 years, 11 months, 23 days | wba (super) | 4 ] Execute this SQL based on the above table: select title recognition order by title reign desc limit 1 | ibf, wba, wbo, wbc, the ring |
[ header: rank | group | name | nationality | 2.05 | 2.15 | 2.19 | 2.23 | 2.26 | result | notes row 1 : 1 | a | nicola ciotti | italy | None | o | o | o | o | 2.26 | q
row 2 : 1 | a | linus thornblad | sweden | None | o | o | o | o | 2.26 | q
row 3 : 1 | b | oskari frosen | finland | None | o | o | o | o | 2.26 | q
row 4 : 1 | b | stefan holm | sweden | None | o | o | o | o | 2.26 | q
row 5 : 1 | b | svatoslav ton | czech republic | None | o | o | o | o | 2.26 | q
row 6 : 7 | a | niki palli | israel | o | o | o | o | xo | 2.26 | q
row 7 : 7 | b | yaroslav rybakov | russia | None | o | o | o | xo | 2.26 | q
row 8 : 9 | b | giulio ciotti | italy | None | o | xo | o | xo | 2.26 | q
row 9 : 11 | a | ivan ukhov | russia | None | None | None | o | None | 2.23 | q
row 10 : 11 | a | andrea bettinelli | italy | None | o | o | o | xxx | 2.23 | q
row 11 : 14 | a | martyn bernard | united kingdom | None | o | xxo | xo | xxx | 2.23 | None
row 12 : 15 | b | peter horak | slovakia | None | o | o | xxo | xxx | 2.23 | None
row 13 : 15 | b | normunds pupols | latvia | None | o | o | xxo | xxx | 2.23 | None
row 14 : 17 | a | germaine mason | united kingdom | None | o | o | xxx | None | 2.19 | None
row 15 : 17 | b | rozle prezelj | slovenia | o | o | o | xxx | None | 2.19 | None
row 16 : 19 | a | heikki tanel | finland | None | xo | o | xxx | None | 2.19 | None
row 17 : 19 | b | andriy sokolovskyy | ukraine | None | xo | o | xxx | None | 2.19 | None
row 18 : 21 | b | mickael hanany | france | None | xo | xo | xxx | None | 2.19 | None
row 19 : 22 | b | javier bermejo | spain | o | o | xxx | None | None | 2.15 | None
row 20 : 23 | a | osku torro | finland | None | xo | x- | x | None | 2.15 | None
row 21 : 24 | a | jan-peter larsen | netherlands | o | xxx | None | None | None | 2.05 | None
row 22 : None | b | adam scarr | united kingdom | None | xxx | None | None | None | nm | None ] Execute this SQL based on the above table: select result order by rank - rank desc limit 1 | 2.26 |
[ header: pos | class | no | team | drivers | chassis | engine | laps row 1 : 22 | s 5.0 | 8 | david brown | reg parnell roy salvadori | aston martin db3 | aston martin 2.9l super | 222
row 2 : 26 | s 750 | 58 | automobiles panhard et levass | pierre chancel robert chancel | monopole x88 | panhard 0.6l flat-2 | 157
row 3 : 27 | s 1.5 | 41 | porsche kg | hans herrmann helmut | porsche 550/4 rs 1500 spy | porsche 1.5l flat-4 | 148
row 4 : 31 | s 5.0 | 6 | briggs cunningham | phil walters john fitch | ferrari 375mm | ferrari 4.5l v12 | 120
row 5 : 36 | s 5.0 | 12 | jaguar cars ltd | stirling moss peter walker | jaguar d-type | jaguar 3.4l i6 | 92
row 6 : 37 | s 5.0 | 3 | scuderia ferrari | umberto maglioli paolo | ferrari 375 plus | ferrari 5.0l v12 | 88
row 7 : 41 | s 3.0 | 22 | david brown | carroll shelby paul frere | aston martin db3 | aston martin 2.9l | 74
row 8 : 42 | s 750 | 50 | guy michel et andre | guy michel andre guillard | renault 4cv | renault 0.7l i4 | 73
row 9 : 43 | s 3.0 | 21 | david brown | ian stewart graham whitehead | aston martin db3 | aston martin 2.9l | 64
row 10 : 46 | s 2.0 | 37 | automobiles frazer nash lt | rodney f. peacock ger | frazer nash le mans | bristol 2.0l i6 | 49
row 11 : 47 | s 5.0 | 10 | pierre levegh | pierre levegh lino | talbot-lago t26 | talbot-lago 4.4l | 33
row 12 : 50 | s 750 | 66 | jacques faucher | jacques faucher jean | renault 4cv | renault 0.7l i4 | 20
row 13 : 51 | s 750 | 51 | automobiles deutsch et bonnet | pierre-louis dreyf | db hbr | renault 0.7l i4 | 8
row 14 : 52 | s 750 | 53 | nardi et co | alexandre gacon dr. | nardi 750lm | crosley 0.7l i4 | 7
row 15 : 53 | s 5.0 | 18 | luigi chinetti | porfirio rubirosa innocente | ferrari 375mm berlinetta | ferrari 4.5l v12 | 5
row 16 : 54 | s 750 | 60 | automobiles panhard et levass | lucien pailler jacques dew | panhard x88 | panhard 0.6l flat-2 | 5
row 17 : 55 | s 1.5 | 40 | porsche kg | richard von frankenberg helm | porsche 550/4 rs 1500 spy | porsche 1.5l flat-4 | 4 ] Execute this SQL based on the above table: select ( select count ( * ) where laps = 49 ) - ( select count ( * ) where laps = 157 ) | 0 |
[ header: year | division | league | regular season | playoffs | open cup row 1 : 2002 | 4 | usl pdl | 3rd, mid atlantic | did not qualify | did not qualify
row 2 : 2003 | 4 | usl pdl | 1st, mid atlantic | conference semifinals | did not qualify
row 3 : 2004 | 4 | usl pdl | 3rd, mid atlantic | did not qualify | did not qualify
row 4 : 2005 | 4 | usl pdl | 1st, mid atlantic | national semifinals | 2nd round
row 5 : 2006 | 4 | usl pdl | 5th, mid atlantic | did not qualify | did not qualify
row 6 : 2007 | 4 | usl pdl | 6th, mid atlantic | did not qualify | did not qualify
row 7 : 2008 | 4 | usl pdl | 6th, mid atlantic | did not qualify | did not qualify ] Execute this SQL based on the above table: select open cup where regular season = '3rd, mid atlantic' | did not qualify, did not qualify |
[ header: seasons | team | ch.wins | promotions | relegations row 1 : 10 | aurora basket jesi | 0 | 1 | 1
row 2 : 10 | andrea costa imola | 0 | 0 | 3
row 3 : 9 | nuova pallacanestro pavia | 0 | 0 | 0
row 4 : 9 | scafati basket | 1 | 1 | 0
row 5 : 8 | basket club ferrara | 1 | 1 | 0
row 6 : 8 | pallac. reggiana reggio e | 2 | 2 | 0
row 7 : 7 | novara | 0 | 0 | 3
row 8 : 6 | a.s. junior pallacane | 1 | 1 | 1
row 9 : 5 | rb montecatini terme | 0 | 0 | 1
row 10 : 5 | fabriano basket | 0 | 0 | 1
row 11 : 5 | societa veroli basket | 0 | 0 | 0
row 12 : 5 | pistoia basket 2000 | 0 | 0 | 0
row 13 : 4 | juve caserta basket | 0 | 1 | 0
row 14 : 3 | nuova sebastiani rieti | 1 | 1 | 0
row 15 : 3 | progresso castelmaggiore | 0 | 0 | 0
row 16 : 3 | orlandina basket | 1 | 1 | 1
row 17 : 3 | sutor basket montegranaro | 0 | 1 | 1
row 18 : 3 | virtus ragusa | 0 | 0 | 1
row 19 : 3 | robur basket osimo | 0 | 0 | 1
row 20 : 3 | reyer venezia | 0 | 1 | 0
row 21 : 3 | new basket brindisi | 1 | 2 | 0
row 22 : 2 | pallacanestro messina | 0 | 1 | 0
row 23 : 2 | basket trapani | 0 | 0 | 1
row 24 : 2 | basket draghi castelletto tic | 0 | 0 | 0
row 25 : 2 | pallalcesto amatori udin | 0 | 0 | 0
row 26 : 2 | unione cestistica casalpuster | 0 | 0 | 0
row 27 : 2 | basket barcellona | 0 | 0 | 0
row 28 : 2 | fulgor libertas forl | 0 | 0 | 1
row 29 : 2 | scaligera basket verona | 0 | 0 | 1
row 30 : 1 | societa sportiva basket n | 1 | 1 | 0
row 31 : 1 | centro sportivo borgomanero | 0 | 0 | 0
row 32 : 1 | teramo basket | 1 | 1 | 0
row 33 : 1 | virtus pallacanestro bo | 0 | 1 | 0
row 34 : 1 | victoria libertas pes | 0 | 1 | 0
row 35 : 1 | nuova pallacanestro vige | 0 | 0 | 0
row 36 : 1 | cestistica san sever | 0 | 0 | 1
row 37 : 1 | basket brescia leonessa | 0 | 0 | 0
row 38 : 1 | unione cestistica piacentin | 0 | 0 | 0
row 39 : 1 | ostuni basket | 0 | 0 | 0
row 40 : 1 | biancoblu basket bologna | 0 | 0 | 0 ] Execute this SQL based on the above table: select team where ch.wins = ( select ch.wins where team = 'scafati basket' ) + 1 | pallac. reggiana reggio emilia |
[ header: no. | date/time | aircraft | foe | result | location | notes row 1 : u/c | 14 june 1917 | nieuport 17 | enemy aircraft | None | mount verena | victory originally confirmed, but disallowed postwar
row 2 : 1 | 25 october 1917 @ 0800 | None | enemy aircraft | forced to land | marcesina | None
row 3 : 2 | 7 november 1917 circa 1615 hours | None | enemy aircraft | forced to land | fonsazo | awarded silver medal for military valor
row 4 : 3 | 7 december 1917 @ 1130 hours | None | enemy aircraft | None | val d'assa | None
row 5 : 4 | 13 december 1917 ca. 1130 hours | None | enemy aircraft | None | asiago | None
row 6 : 5 | 30 january 1918 @ 1000 hours | None | enemy two-seater | None | col d'eshele, | awarded silver medal for military valor
row 7 : u/c | 4 february 1918 ca. 1100 hours | None | black enemy fighter craft | None | valstagna | claim shared with antonio reali
row 8 : 6 | 5 february 1918 ca. 0830 hours | None | enemy two-seater | forced to land | case girardi | shared with marziale cerutti
row 9 : 7 | 13 february 1918 @ 0915 hours | None | enemy fighter | None | marcesina | None
row 10 : u/c | 24 february 1918 | None | enemy aircraft | None | mount grappa | None
row 11 : 8 | 4 may 1918 @ 0850 hours | nieuport 27 | enemy aircraft | None | montello | austro-hungarians reported no matching loss
row 12 : 9 | 4 may 1918 @ 1025 hours | nieuport 27 | enemy fighter | None | montello | austro-hungarians reported no matching loss ] Execute this SQL based on the above table: select result where date/time = '25 october 1917 @ 0800 hours' | forced to land |
[ header: date | time | opponent | site | tv | result | attendance | record row 1 : 11/03/2012 | 7:30 pm | central missouri | dunn center • clarksville, | None | w 75-66 | None | None
row 2 : 11/09/2012 | 7:00 pm | samford | dunn center • clarksville, | None | w 75-64 | 2315 | 1-0
row 3 : 11/13/2012 | 7:00 pm | at wku | e. a. diddle arena • | None | l 54-74 | 4160 | 1-1
row 4 : 11/20/2012 | 12:30 pm | vs. western carolina | moon palace resort • cancun, mex | None | w 72-71 | 902 | 2-2
row 5 : 11/28/2012 | 7:00 pm | berea | dunn center • clarksville, | None | w 108-53 | 2023 | 3-3
row 6 : 12/01/2012 | 7:30 pm | fairfield | dunn center • clarksville, | None | l 55-74 | 2208 | 3-4
row 7 : 12/05/2012 | 7:00 pm | oakland city | dunn center • clarksville, | None | w 88-63 | 2012 | 4-4
row 8 : 12/08/2012 | 12:00 pm | at memphis | fedexforum • memphis, t | None | l 65-83 | 15249 | 4-5
row 9 : 12/16/2012 | 2:05 pm | at arkasnas state | convocation center • jonesboro, ar | None | l 57-69 | 2652 | 4-6
row 10 : 12/18/2012 | 7:00 pm | lipscomb | dunn center • clarksville, | None | l 84-87 | 2498 | 4-7
row 11 : 12/28/2012 | 3:30 pm | vs. utah valley | mckenzie arena • chattano | None | l 77-84 | 2568 | 4-9
row 12 : 12/29/2012 | 3:30 pm | vs. high point | mckenzie arena • chattano | None | l 74-76 | 2534 | 4-10
row 13 : 01/03/2013 | 7:00 pm | at southeast missouri state | show me center • cape girardeau | None | l 84-86 | 1845 | 4-11 (0-1)
row 14 : 01/05/2013 | 6:20 pm | at tennessee-martin | skyhawk arena • martin, t | None | l 74-76 ot | 2578 | 4-12 (0-2)
row 15 : 01/12/2013 | 7:30 pm | murray state | dunn center • clarksville, | espn3 | l 68-71 | 4718 | 5-13 (1-3)
row 16 : 01/17/2013 | 7:00 pm | siu edwardsville | dunn center • clarksville, | None | l 53-66 | 2014 | 5-14 (1-4)
row 17 : 01/19/2013 | 7:30 pm | eastern illinois | dunn center • clarksville, | None | l 67-77 | 2517 | 5-15 (1-5)
row 18 : 02/07/2013 | 7:00 pm | tennessee state | dunn center • clarksville, | None | l 82-88 ot | 2186 | 5-19 (1-9)
row 19 : 02/20/2013 | 6:00 pm | at eastern kentucky | alumni coliseum • richmond, | None | l 53-91 | 3400 | 7-21 (3-11) ] Execute this SQL based on the above table: select time order by attendance asc limit 1 | 7:30 pm |
[ header: rank | athlete | time | notes | q row 1 : 1 | habtamu fayisa | 5:38.62 | pb | fa
row 2 : 2 | peter matheka mutuku ( | 5:38.72 | pb | fa
row 3 : 3 | zakaria kiprotich ( | 5:44.51 | pb | fa
row 4 : 4 | waleed elayah (ye | 5:51.58 | pb | fa
row 5 : 5 | bilal tabti (alg) | 5:56.21 | pb | fa
row 6 : 6 | yousif daifalla (su | 5:56.46 | pb | fa
row 7 : 7 | salem attiatalla (eg | 6:03.41 | None | fa
row 8 : 8 | daniel wong (usa | 6:05.92 | pb | fa
row 9 : 9 | david morcillo (esp | 6:10.90 | None | fb
row 10 : 10 | laurentiu rosu (rou | 6:12.77 | None | fb
row 11 : 11 | grant gwynne (aus) | 6:16.83 | None | fb
row 12 : 12 | ioran etchechury (bra | 6:39.87 | None | fb
row 13 : 13 | bacem salhi (tun | 6:43.17 | None | fb
row 14 : None | ahmed burhan (ksa | dsq | None | fb
row 15 : None | zak seddon (gbr | dsq | None | fb ] Execute this SQL based on the above table: select time where time != '5:44.51' and notes = ( select notes where time = '5:44.51' ) | 5:38.62, 5:38.72, 5:51.58, 5:56.21, 5:56.46, 6:05.92 |
[ 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 count ( seats ) where party = 'other' | 1 |
[ header: name | pos. | caps | goals | club row 1 : olle ahlund | mf | 6 | 0 | degerfors if
row 2 : henry andersson | gk | 2 | 0 | ifk goteborg
row 3 : bertil backvall | fw | 1 | 0 | hammarby if stockholm
row 4 : henry "garvis" carls | fw | 5 | 4 | aik solna
row 5 : arvid "emma" eman | mf | 5 | 0 | if elfsborg boras
row 6 : rune "killing" emanu | mf/df | 3 | 0 | ifk goteborg
row 7 : karl-erik grahn | mf | 4 | 1 | if elfsborg boras
row 8 : gunnar "il professore" gren | fw | 6 | 9 | ifk goteborg
row 9 : erik "mulle" holm | fw | 2 | 1 | ifk norrkoping
row 10 : oskar "masse" hol | df | 2 | 0 | ifk norrkoping
row 11 : ove karlsson-wid | df | 1 | 0 | aik solna
row 12 : borje leander | df/mf | 4 | 0 | aik solna
row 13 : gosta malm | df | 2 | 0 | ifk norrkoping
row 14 : malte "svarta bli | fw | 1 | 0 | halsingborgs if
row 15 : harry nilsson | df | 6 | 0 | aik solna
row 16 : stellan nilsson | fw | 2 | 1 | malmo ff
row 17 : bertil nordahl | df/mf | 2 | 0 | degerfors if
row 18 : gunnar nordahl | fw | 5 | 6 | ifk norrkoping
row 19 : knut nordahl | fw | 2 | 0 | ifk norrkoping
row 20 : arne nyberg | fw | 6 | 4 | ifk goteborg
row 21 : stig nystrom | fw | 1 | 1 | djurgardens if stockhol
row 22 : vincent persson | fw | 1 | 1 | degerfors if
row 23 : birger "bian" rosengren | mf | 1 | 0 | ifk norrkoping
row 24 : carl-erik "pigge" | fw | 1 | 0 | malmo ff
row 25 : carl "timpa" simons | fw | 1 | 0 | jonkopings sodra if
row 26 : gustav "gurra" s | gk | 6 | 0 | aik solna
row 27 : borje tapper | fw | 1 | 5 | malmo ff
row 28 : lennart "skinnet" | mf | 1 | 0 | ifk norrkoping ] Execute this SQL based on the above table: select pos. where pos. in ( 'mf' , 'fw' ) order by goals desc limit 1 | fw |
[ header: club | chinese | city | home stadium | capacity | average attendance row 1 : beijing guoanth | 北京国安 | beijing | workers stadium | 62000 | 33342
row 2 : changchun yatai | 长春亚泰 | changchun | development area stadium | 25000 | 10067
row 3 : changsha ginde | 长沙金德 | changsha | helong stadium | 55000 | 10152
row 4 : chongqing lifan | 重庆力帆 | chongqing | chongqing olympic | 58680 | 11433
row 5 : dalian shide | 大连实德 | dalian | jinzhou stadium | 30775 | 12307
row 6 : hangzhou greentown | 杭州绿城 | hangzhou | yellow dragon stadium | 51139 | 14550
row 7 : henan construction | 河南建业 | zhengzhou | hanghai stadium | 29000 | 18630
row 8 : jiangsu sainty | 江苏舜天 | nanjing | nanjing olympic | 61443 | 10667
row 9 : liaoning whowinp | 辽宁宏运 | shenyang | shenyang tiexi stadium | 24000 | 10100
row 10 : nanchang hengyu | 南昌衡源 | nanchang | nanchang bayi stadium | 20000 | 11680
row 11 : qingdao jonoon | 青岛中能 | qingdao | qingdao tianta | 20525 | 6247
row 12 : shaanxi chan-ba | 陕西浐灞 | xi'an | shaanxi province stadium | 47565 | 28053
row 13 : shandong luneng | 山东鲁能 | jinan | shandong provincial stadium | 43700 | 15901
row 14 : shanghai shenhua | 上海申花 | shanghai | hongkou stadium | 33060 | 12963
row 15 : shenzhen ruby | 深圳红钻 | shenzhen | shenzhen stadium | 32500 | 12439
row 16 : tianjin teda | 天津泰达 | tianjin | teda football stadium | 36390 | 14757
row 17 : total | total | total | total | total | 14581 ] Execute this SQL based on the above table: select count ( * ) where home stadium = 'nanjing olympic stadium' | 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 left office where party = 'social credit (coalition)' | 1949 |
[ header: year | single | chart | position row 1 : 1975 | "sun goddess" | black singles | 20
row 2 : 1975 | "sun goddess" | disco singles | 5
row 3 : 1975 | "sun goddess" | pop singles | 44
row 4 : 1976 | "can't hide love" | black singles | 11
row 5 : 1976 | "can't hide love" | pop singles | 39
row 6 : 1976 | "sing a song/gratitude" | club play singles | 1
row 7 : 1976 | "sing a song" | black singles | 1
row 8 : 1976 | "sing a song" | pop singles | 5 ] Execute this SQL based on the above table: select count ( * ) where chart = 'pop singles' | 3 |
[ header: date | series | circuit | city / state | winner | team | car | report row 1 : 23 feb | atcc round 1 | amaroo park | sydney, new south w | mark skaife | winfield team nissan | nissan skyline r32 | None
row 2 : 8 mar | atcc round 2 | sandown international raceway | melbourne, victoria | john bowe | shell ultra-high racing | ford sierra rs500 | None
row 3 : 15 mar | atcc round 3 | symmons plains raceway | launceston, tasmania | glenn seton | peter jackson racing | ford sierra rs500 | None
row 4 : 5 apr | atcc round 4 | winton motor raceway | benalla, victoria | mark skaife | winfield team nissan | nissan skyline r32 | None
row 5 : 3 may | atcc round 5 | lakeside international raceway | brisbane, queensland | tony longhurst | benson & hedges racing | bmw m3 evolution | None
row 6 : 24 may | atcc round 6 | eastern creek raceway | sydney, new south w | john bowe | shell ultra-high racing | ford sierra rs500 | None
row 7 : 31 may | atcc round 7 | mallala motor sport park | mallala, south australia | mark skaife | winfield team nissan | nissan skyline r32 | None
row 8 : 7 jun | atcc round 8 | barbagallo raceway | perth, western australia | john bowe | shell ultra-high racing | ford sierra rs500 | None
row 9 : 21 jun | atcc round 9 | oran park raceway | sydney, new south w | mark skaife | winfield team nissan | nissan skyline r32 | None
row 10 : 13 sep | drink/drive sandown 500 | sandown international raceway | melbourne, victoria | larry perkins steve harrington | bob jane t-mart | holden vl commodore | report
row 11 : 4 oct | tooheys 1000 | mount panorama circuit | bathurst, new south wales | mark skaife jim richard | winfield team nissan | nissan skyline r32 | report
row 12 : 8 nov | clarke shoes group a finale | adelaide street circuit | adelaide, south australia | jim richards | winfield team nissan | nissan skyline r32 | None ] Execute this SQL based on the above table: select count ( * ) where report = 'None' | 0 |
[ 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 note where note = 'q' and bib = 9 | q |
[ 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 count ( placement at miss world ) where year = 2003 | 1 |
[ header: name | pos. | caps | goals | club row 1 : olle ahlund | mf | 1 | 0 | degerfors if
row 2 : sune "mona-lisa | mf | 5 | 0 | aik solna
row 3 : henry "garvis" carls | fw | 2 | 0 | aik solna
row 4 : rune "killing" emanu | mf | 2 | 0 | ifk goteborg
row 5 : thure grahn | df | 1 | 0 | is halmia halmsta
row 6 : gunnar "il professore" gren | fw | 5 | 5 | ifk goteborg
row 7 : sven "jack" jacobs | mf | 1 | 0 | gais goteborg
row 8 : egon "hemliga" jons | fw | 1 | 0 | malmo ff
row 9 : borje leander | mf | 1 | 0 | aik solna
row 10 : nils "lidas"/" | fw | 6 | 5 | ifk norrkoping
row 11 : torsten "lindy" lindberg | gk | 5 | 0 | ifk norrkoping
row 12 : lennart lindskog | fw | 1 | 0 | degerfors if
row 13 : malte "svarta bli | fw | 2 | 0 | halsingborgs if
row 14 : erik nilsson | df | 4 | 0 | malmo ff
row 15 : harry nilsson | df | 2 | 0 | aik solna
row 16 : ove nilsson | gk | 1 | 0 | djurgardens if stockhol
row 17 : stellan nilsson | fw | 4 | 0 | malmo ff
row 18 : bertil nordahl | mf | 4 | 0 | degerfors if
row 19 : gunnar nordahl | fw | 6 | 8 | ifk norrkoping
row 20 : knut nordahl | df | 5 | 0 | ifk norrkoping
row 21 : stig nystrom | fw | 1 | 1 | djurgardens if stockhol
row 22 : kjell rosen | mf/fw | 4 | 0 | malmo ff
row 23 : birger "bian" rosengren | mf | 1 | 0 | ifk norrkoping
row 24 : rolf svensson | fw | 1 | 0 | halsingborgs if
row 25 : borje tapper | fw | 1 | 1 | malmo ff ] Execute this SQL based on the above table: select max ( club ) | malmo ff |
[ header: sheriff | start of term row 1 : josiah hobart | 1683
row 2 : john mulford | 1701
row 3 : hugh gray | 1702
row 4 : john brush | 1710
row 5 : daniel youngs | 1718
row 6 : samuel dayton | 1723
row 7 : william sell | 1728
row 8 : joseph smith | 1730
row 9 : david corrie | 1731
row 10 : jacob conklin | 1734
row 11 : thomas higbe | 1740
row 12 : james muirson | 1774
row 13 : thomas wickes | 1785
row 14 : silas halsey | 1787
row 15 : thomas wickes | 1791
row 16 : phinaes carll | 1799
row 17 : josiah reeve | 1803
row 18 : phinaes smith | 1807
row 19 : josiah reeve | 1808
row 20 : benjamin brewster | 1810
row 21 : josiah reeve | 1811
row 22 : benjamin brewster | 1812
row 23 : nathaniel conklin | 1814
row 24 : josiah reeve | 1815
row 25 : samuel smith | 1826
row 26 : abraham gardiner | 1829
row 27 : richard smith | 1832
row 28 : silas horton | 1835
row 29 : samuel miller | 1838
row 30 : david brush | 1841
row 31 : henry penny | 1844
row 32 : david rose | 1847
row 33 : john clark | 1850
row 34 : samuel phillips | 1855
row 35 : george carman | 1856
row 36 : daniel osborn | 1862
row 37 : george smith | 1868
row 38 : j. henry perkins | 1871
row 39 : egbert lewis | 1874
row 40 : george cooper | 1877
row 41 : robert petty | 1888
row 42 : selah brewster | 1883
row 43 : henry halsey | 1886
row 44 : robert petty | 1888
row 45 : a. m. darling | 1891
row 46 : benjamin wood | 1897
row 47 : j. sheridan wells | 1900
row 48 : henry preston | 1903
row 49 : john wells | 1906
row 50 : charles platt | 1909
row 51 : melville brush | 1912
row 52 : d. henry brown | 1913
row 53 : charles o'dell | 1914
row 54 : john kelly | 1920
row 55 : amza biggs | 1923
row 56 : burton howe | 1926
row 57 : ellis taylor | 1929
row 58 : joseph warta | 1932
row 59 : william mccollom | 1935
row 60 : jacob dreyer | 1938
row 61 : john levy | 1941
row 62 : william mccollom | 1942
row 63 : charles dominy | 1957
row 64 : frank gross | 1962
row 65 : philip corso | 1970
row 66 : donald dilworth | 1976
row 67 : john finnerty | 1977
row 68 : eugene dooley | 1986
row 69 : patrick mahoney | 1990
row 70 : alfred c. tisch | 2002
row 71 : vincent f. demarco | 2006 ] Execute this SQL based on the above table: select count ( distinct sheriff ) where start of term >= 1903 | 23 |
[ header: place | team | played | won | draw | lost | goals scored | goals conceded | +/- | points row 1 : 1 | c.d. aguila | 18 | 9 | 5 | 4 | 24 | 19 | 5 | 32
row 2 : 2 | c.d. fas | 18 | 6 | 8 | 4 | 26 | 17 | 9 | 26
row 3 : 3 | c.d. vista hermosa | 18 | 8 | 2 | 8 | 27 | 22 | 5 | 26
row 4 : 4 | a.d. isidro | 18 | 7 | 5 | 6 | 21 | 22 | -1 | 26
row 5 : 5 | alianza f.c | 18 | 7 | 4 | 7 | 29 | 26 | 3 | 25
row 6 : 6 | c.d. atletico balb | 18 | 6 | 5 | 7 | 26 | 25 | 1 | 23
row 7 : 7 | san salvador f.c | 18 | 6 | 5 | 7 | 28 | 32 | -4 | 23
row 8 : 8 | c.d. chalatenango | 18 | 5 | 7 | 6 | 19 | 26 | -3 | 22
row 9 : 9 | once municipal | 18 | 5 | 6 | 7 | 24 | 30 | -6 | 21
row 10 : 10 | c.d. luis angel fir | 18 | 5 | 5 | 8 | 18 | 23 | -5 | 20 ] Execute this SQL based on the above table: select played where won < 7 and team = 'c.d. chalatenango' order by won limit 1 | 18 |
[ header: year | car | start | qual | rank | finish | laps | led | retired row 1 : 1956 | 14 | 23 | 142.535 | 16 | 7 | 200 | 0 | running
row 2 : 1957 | 7 | 16 | 141.016 | 19 | 9 | 200 | 0 | running
row 3 : 1958 | 14 | 4 | 144.881 | 4 | 26 | 1 | 0 | crash t3
row 4 : 1959 | 74 | 7 | 144.023 | 8 | 12 | 200 | 0 | running
row 5 : 1960 | 44 | 25 | 143.363 | 23 | 8 | 200 | 0 | running
row 6 : 1962 | 96 | 19 | 146.157 | 32 | 33 | 12 | 0 | engine
row 7 : 1963 | 86 | 24 | 148.289 | 26 | 26 | 74 | 0 | valve
row 8 : 1964 | 54 | 23 | 153.381 | 10 | 19 | 88 | 0 | piston
row 9 : 1965 | 54 | 10 | 156.427 | 11 | 24 | 58 | 0 | piston
row 10 : 1967 | 46 | 28 | 162.58 | 32 | 11 | 189 | 0 | flagged
row 11 : 1968 | 16 | 24 | 163.495 | 24 | 11 | 196 | 0 | flagged
row 12 : totals | totals | totals | totals | totals | totals | 1418 | 0 | None ] Execute this SQL based on the above table: select year where retired = 'running' | 1956, 1957, 1959, 1960 |
[ header: seasons | team | ch.wins | promotions | relegations row 1 : 10 | aurora basket jesi | 0 | 1 | 1
row 2 : 10 | andrea costa imola | 0 | 0 | 3
row 3 : 9 | nuova pallacanestro pavia | 0 | 0 | 0
row 4 : 9 | scafati basket | 1 | 1 | 0
row 5 : 8 | basket club ferrara | 1 | 1 | 0
row 6 : 8 | pallac. reggiana reggio e | 2 | 2 | 0
row 7 : 7 | novara | 0 | 0 | 3
row 8 : 6 | a.s. junior pallacane | 1 | 1 | 1
row 9 : 5 | rb montecatini terme | 0 | 0 | 1
row 10 : 5 | fabriano basket | 0 | 0 | 1
row 11 : 5 | societa veroli basket | 0 | 0 | 0
row 12 : 5 | pistoia basket 2000 | 0 | 0 | 0
row 13 : 4 | juve caserta basket | 0 | 1 | 0
row 14 : 3 | nuova sebastiani rieti | 1 | 1 | 0
row 15 : 3 | progresso castelmaggiore | 0 | 0 | 0
row 16 : 3 | orlandina basket | 1 | 1 | 1
row 17 : 3 | sutor basket montegranaro | 0 | 1 | 1
row 18 : 3 | virtus ragusa | 0 | 0 | 1
row 19 : 3 | robur basket osimo | 0 | 0 | 1
row 20 : 3 | reyer venezia | 0 | 1 | 0
row 21 : 3 | new basket brindisi | 1 | 2 | 0
row 22 : 2 | pallacanestro messina | 0 | 1 | 0
row 23 : 2 | basket trapani | 0 | 0 | 1
row 24 : 2 | basket draghi castelletto tic | 0 | 0 | 0
row 25 : 2 | pallalcesto amatori udin | 0 | 0 | 0
row 26 : 2 | unione cestistica casalpuster | 0 | 0 | 0
row 27 : 2 | basket barcellona | 0 | 0 | 0
row 28 : 2 | fulgor libertas forl | 0 | 0 | 1
row 29 : 2 | scaligera basket verona | 0 | 0 | 1
row 30 : 1 | societa sportiva basket n | 1 | 1 | 0
row 31 : 1 | centro sportivo borgomanero | 0 | 0 | 0
row 32 : 1 | teramo basket | 1 | 1 | 0
row 33 : 1 | virtus pallacanestro bo | 0 | 1 | 0
row 34 : 1 | victoria libertas pes | 0 | 1 | 0
row 35 : 1 | nuova pallacanestro vige | 0 | 0 | 0
row 36 : 1 | cestistica san sever | 0 | 0 | 1
row 37 : 1 | basket brescia leonessa | 0 | 0 | 0
row 38 : 1 | unione cestistica piacentin | 0 | 0 | 0
row 39 : 1 | ostuni basket | 0 | 0 | 0
row 40 : 1 | biancoblu basket bologna | 0 | 0 | 0 ] Execute this SQL based on the above table: select count ( team ) where team = 'juve caserta basket' | 1 |
[ header: year | champion | score | runner-up | coach row 1 : 1954 | boston college | 4-1 | harvard | john "snooks" kelley
row 2 : 1956 | boston college | 4-2 | harvard | john "snooks" kelley
row 3 : 1957 | boston college | 5-4 (ot) | boston university | john "snooks" kelley
row 4 : 1959 | boston college | 7-4 | boston university | john "snooks" kelley
row 5 : 1961 | boston college | 4-2 | harvard | john "snooks" kelley
row 6 : 1963 | boston college | 3-1 | harvard | john "snooks" kelley
row 7 : 1964 | boston college | 6-5 | boston university | john "snooks" kelley
row 8 : 1965 | boston college | 5-4 | boston university | john "snooks" kelley
row 9 : 1976 | boston college | 6-3 | boston university | len ceglarski
row 10 : 1983 | boston college | 8-2 | northeastern | len ceglarski
row 11 : 1994 | boston college | 2-1 (ot) | harvard | steve cedorchuck
row 12 : 2001 | boston college | 5-3 | boston university | jerry york
row 13 : 2004 | boston college | 2-1 (ot) | boston university | jerry york
row 14 : 2008 | boston college | 6-5 (ot) | harvard | jerry york
row 15 : 2010 | boston college | 4-3 | boston university | jerry york
row 16 : 2011 | boston college | 7-6 (ot) | northeastern | jerry york
row 17 : 2012 | boston college | 3-2 (ot) | boston university | jerry york
row 18 : 2013 | boston college | 6-3 | northeastern | jerry york
row 19 : 2014 | boston college | 4-1 | northeastern | jerry york ] Execute this SQL based on the above table: select year where score = '2-1 (ot)' | 1994, 2004 |
[ header: res. | record | opponent | method | event | date | round | time | location | notes row 1 : loss | 5-3 | alistair overeem | tko (kick to the body | ufc 141 | december 30, 2011 | 1 | 2:26 | las vegas, united states | announced retirement after fight
row 2 : loss | 5-2 | cain velasquez | tko (punches) | ufc 121 | october 23, 2010 | 1 | 4:12 | anaheim, california | lost ufc heavyweight championship
row 3 : win | 5-1 | shane carwin | submission (arm triangle choke) | ufc 116 | july 3, 2010 | 2 | 2:19 | las vegas, united states | defended ufc heavyweight championship.
row 4 : win | 4-1 | frank mir | tko (punches) | ufc 100 | july 11, 2009 | 2 | 1:48 | las vegas, united states | defended ufc heavyweight championship.
row 5 : win | 3-1 | randy couture | tko (punches) | ufc 91 | november 15, 2008 | 2 | 3:07 | las vegas, united states | won ufc heavyweight championship
row 6 : win | 2-1 | heath herring | decision (unanimous) | ufc 87 | august 9, 2008 | 3 | 5:00 | minneapolis, minnesot | None
row 7 : loss | 1-1 | frank mir | submission (kneebar) | ufc 81 | february 2, 2008 | 1 | 1:30 | las vegas, united states | ufc debut
row 8 : win | 1-0 | min-soo kim | submission (punches) | dynamite!! usa | june 2, 2007 | 1 | 1:09 | los angeles, united states | mma debut ] Execute this SQL based on the above table: select time where date = 'october 23, 2010' | 4 |
[ header: match | team | result points | match status | opposition strength | regional strength | ranking points row 1 : amplistan vs. bestrudi | amplistan bestrudia | 0 3 | 1.0 1.0 | 0.50 1.98 | 0.94 0.94 | 0 558
row 2 : amplistan vs. bestrudi | amplistan bestrudia | 1 1 | 1.0 1.0 | 0.50 1.98 | 0.94 0.94 | 47 186
row 3 : amplistan vs. bestrudi | amplistan bestrudia | 3 0 | 4.0 4.0 | 0.50 1.98 | 0.94 0.94 | 564 0
row 4 : amplistan vs. bestrudi | amplistan bestrudia | 1 2 | 4.0 4.0 | 0.50 1.98 | 0.94 0.94 | 188 1488
row 5 : amplistan vs. conesto | amplistan conesto | 0 3 | 1.0 1.0 | 1.61 1.98 | 0.99 0.99 | 0 588
row 6 : conesto vs. delphi | conesto delphiz | 3 0 | 2.5 2.5 | 1.70 1.61 | 0.96 0.96 | 1224 0
row 7 : conesto vs. delphi | conesto delphiz | 0 3 | 2.5 2.5 | 1.70 1.61 | 0.96 0.96 | 0 1159
row 8 : conesto vs. amplistan | conesto amplistan | 1 2 | 4.0 4.0 | 1.98 1.61 | 0.99 0.99 | 784 1275 ] Execute this SQL based on the above table: select count ( match ) | 8 |
[ 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 venue where venue in ( 'tyencastle park, edinburgh' , 'tyencastle park, edinburgh' ) order by goal desc limit 1 | tyencastle park, edinburgh |
[ 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 avg ( result ) where opponent = 'west bromwich albion' | 1.5 |
[ 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 title order by year desc limit 1 | the hobbit: armies of the third age |
[ header: map (coordinates) | municipality | area (square kilometers) (square miles) | population | mesoregion | microregion row 1 : 6°26′8′′s 36°38 | acari | 608.565 (234.967) | 11035 | central potiguar | serido oriental
row 2 : 6°11′40′′s 35°9 | ares | 112.584 (43.469) | 12931 | leste potiguar | litoral sul
row 3 : 5°41′50′′s 36°31 | fernando pedroza | 322.540 (124.533) | 2850 | central potiguar | angicos
row 4 : 6°8′57′′s 35°26 | lagoa de pedras | 117.660 (45.429) | 6992 | agreste potiguar | agreste potiguar
row 5 : 6°16′44′′s 35°22 | passagem | 41.235 (15.921) | 2899 | agreste potiguar | agreste potiguar
row 6 : 6°6′36′′s 37°18 | patu | 319.932 (123.526) | 11964 | oeste potiguar | umarizal
row 7 : 5°4′4′′s 36°46 | porto do mangue | 418.636 (161.635) | 5217 | oeste potiguar | vale do acu
row 8 : 5°58′30′′s 38°9 | sao francisco do o | 75.550 (29.170) | 3874 | oeste potiguar | pau dos ferros
row 9 : 6°6′36′′s 37°57 | serrinha dos pintos | 122.644 (47.353) | 4538 | oeste potiguar | umarizal
row 10 : 6°20′53′′s 35°22 | varzea | 67.245 (25.963) | 5227 | agreste potiguar | agreste potiguar ] Execute this SQL based on the above table: select count ( mesoregion ) where map (coordinates) = '5°41′50′′s 36°31′52′′w / 5.69722°s 36.53111°w' | 1 |
[ header: year | crystal bicycle (best professional cyclist) | best young rider | best manager | crystal drop of sweat (best helper) row 1 : 1992 | dirk de wolf | not awarded | not awarded | not awarded
row 2 : 1993 | johan museeuw | not awarded | not awarded | not awarded
row 3 : 1994 | paul herygers | kristof trouve | not awarded | not awarded
row 4 : 1995 | johan museeuw | leif hoste | not awarded | not awarded
row 5 : 1996 | johan museeuw | glenn d'hollander | not awarded | not awarded
row 6 : 1997 | johan museeuw | sven nys | not awarded | not awarded
row 7 : 1998 | tom steels | sven nys | not awarded | not awarded
row 8 : 1999 | frank vandenbroucke | kevin hulsmans | not awarded | not awarded
row 9 : 2000 | andrei tchmil | jurgen van goolen | patrick lefevere & jo | not awarded
row 10 : 2001 | rik verbrugghe | tom boonen | jef braeckevelt | not awarded
row 11 : 2002 | johan museeuw | kevin de weert | johan bruyneel | not awarded
row 12 : 2003 | peter van petegem | johan vansummeren | johan bruyneel | not awarded
row 13 : 2004 | tom boonen | niels albert | patrick lefevere | not awarded
row 14 : 2005 | tom boonen | niels albert | jose de cauwer | kevin hulsmans
row 15 : 2006 | tom boonen | dominique cornu | patrick lefevere | gert steegmans
row 16 : 2007 | sven nys | niels albert | johan bruyneel | johan vansummeren
row 17 : 2008 | philippe gilbert | jan bakelants | johan bruyneel | mario aerts
row 18 : 2009 | philippe gilbert | kris boeckmans | johan bruyneel | stijn vandenbergh
row 19 : 2010 | philippe gilbert | yannick eijssen | marc sergeant | mario aerts
row 20 : 2011 | philippe gilbert | tosh van der sande | john lelangue | jelle vanendert
row 21 : 2012 | tom boonen | gijs van hoecke | carlo bomans | kevin de weert
row 22 : 2013 | sven nys | igor decraene | patrick lefevere | stijn vandenbergh ] Execute this SQL based on the above table: select crystal bicycle (best professional cyclist) where year > 1459 and year = 1996 | johan museeuw |
[ header: year | original title | english title | role | notes row 1 : 1955 | ordet | the word | morten borgen | directed by carl th. dre
row 2 : 1942 | med forenede kræf | None | None | propaganda film
row 3 : 1938 | bolettes brudefærd | None | carpenter kristiansen | based on malberg's play
row 4 : 1938 | kongen bød | None | jeppe | None
row 5 : 1937 | kloge mand, den | the clever man | shoemaker | None
row 6 : 1936 | sol over danmark | sun over denmark | pastor nicolaj jacobs | None
row 7 : 1933 | kobberbryllup | None | handelsgartner johans | None
row 8 : 1932 | paustians uhr | paustian's clock | mayor | None
row 9 : 1931 | præsten i vejlby | the vicar of vejlby | præsten søren quist | first danish sound film
row 10 : 1930 | hr. tell og s | william tell and son | uncle jokum | fy & bi film
row 11 : 1929 | højt paa en | None | None | fy & bi film
row 12 : 1925 | grønkøbings glade | pat and patachon are millionaires | bank director | fy & bi film
row 13 : 1924 | der mann um mitternacht | the man at midnight | knut hammerdal | None
row 14 : 1921 | det største i | love that lives | thomas ward | directed by holger-madsen
row 15 : 1920 | gudernes yndling | the penalty of fame | pommel | None
row 16 : 1919 | krigsmillionæren | the parvenu | jensen | directed by emanuel greg
row 17 : 1916 | udenfor loven | outside the law | brown | None
row 18 : 1914 | tre indvendige jom | three maidens | None | None
row 19 : 1914 | lejla | lejla | horse trainer | None
row 20 : 1913 | lille klaus og | None | lille klaus | None
row 21 : 1910 | dorian grays portræt | the picture of dorian gray | None | None ] Execute this SQL based on the above table: select count ( * ) where year > 1782 | 21 |
[ header: year | car | start | qual | rank | finish | laps | led | retired row 1 : 1961 | 98 | 5 | 146.08 | 7 | 12 | 192 | 27 | flagged
row 2 : 1962 | 98 | 1 | 150.37 | 1 | 7 | 200 | 120 | running
row 3 : 1963 | 98 | 1 | 151.153 | 1 | 1 | 200 | 167 | running
row 4 : 1964 | 98 | 4 | 155.099 | 4 | 23 | 55 | 7 | pit fire
row 5 : 1965 | 98 | 5 | 158.625 | 5 | 2 | 200 | 0 | running
row 6 : 1966 | 98 | 4 | 162.484 | 4 | 14 | 87 | 0 | wheel bearing
row 7 : 1967 | 40 | 6 | 166.075 | 6 | 6 | 196 | 171 | bearing
row 8 : totals | totals | totals | totals | totals | totals | 1130 | 492 | None ] Execute this SQL based on the above table: select car where year = 1966 | 98 |
[ header: | year | name | city | country | guests of honor | size row 1 : 1st | 1939 | nycon i | new york, new york | united states | frank r. paul | 200
row 2 : 3rd | 1941 | denvention i | denver, colorado | united states | robert a. hein | 90
row 3 : 7th | 1949 | cinvention | cincinnati, ohio | united states | lloyd a. e | 190
row 4 : 9th | 1951 | nolacon i | new orleans, louisiana | united states | fritz leiber | 190
row 5 : 18th | 1960 | pittcon | pittsburgh, pennsyl | united states | james blish | 568
row 6 : 21st | 1963 | discon i | washington, d.c | united states | murray leinster | 600
row 7 : 32nd | 1974 | discon ii | washington, d.c | united states | roger zelazny ( | 3587
row 8 : 35th | 1977 | suncon | miami beach, florida | united states | jack williamson (pro) | 3,240 (4,200)
row 9 : 42nd | 1984 | l.a.con ii | anaheim, california | united states | gordon r. dickson | 8365
row 10 : 46th | 1988 | nolacon ii | new orleans, louisiana | united states | donald a. wollheim ( | 5300
row 11 : 50th | 1992 | magicon | orlando, florida | united states | jack vance (pro) vincent | 5,319 (6,368)
row 12 : 51st | 1993 | confrancisco | san francisco, califor | united states | larry niven alicia | 6602
row 13 : 64th | 2006 | l.a.con iv | anaheim, california | united states | connie willis (author) james | 5,738 (6,291)
row 14 : 66th | 2008 | denvention 3 | denver, colorado | united states | lois mcmaster bujold ( | 3752 ] Execute this SQL based on the above table: select guests of honor where year > ( select year where guests of honor = 'fritz leiber' ) | james blish, murray leinster, roger zelazny (pro) jay kay klein (fan), jack williamson (pro) robert a. madle (fan), gordon r. dickson (pro) dick eney (fan), donald a. wollheim (pro) roger sims (fan), jack vance (pro) vincent di fate (artist) walter a. willis (fan), larry niven alicia austin tom digby (fan) jan howard finder mark twain (dead goh), connie willis (author) james gurney (artist) howard devore (fan) frankie thomas (special), lois mcmaster bujold (pro) tom whitmore (fan) rick sternbach (artist) |
[ header: pos | class | no | team | drivers | chassis | engine row 1 : 32 | s 2.0 | 27 | societe roc | laurent ferrier xavier la | lola t294 | roc-simca 2.0l i
row 2 : 33 | s 2.0 | 29 | societe roc | pierre-marie painvin franz | lola t292 | roc-simca 2.0l i
row 3 : 34 | s 3.0 | 3 | christian poirot | christian poirot gerard | porsche 908/2 | porsche 3.0l flat-8
row 4 : 35 | gt | 59 | gelo racing team | tim schenken howden ganley | porsche 911 carrera rsr | porsche 3.0l flat-6
row 5 : 36 | s 3.0 | 1 | wicky racing team | max cohen-olivar philippe | porsche 908/2 | porsche 3.0l flat-8
row 6 : 39 | t | 98 | auto mazda claude bouche | claude bouchet jean rondeau | mazda rx-3 | mazda 12a 1.2l 2-
row 7 : 40 | gt | 57 | ganto racing | john rulon-miller tom | porsche 911 carrera rsr | porsche 3.0l flat-6
row 8 : 41 | gt | 60 | gelo racing team | toine hezemans manfred | porsche 911 carrera rsr | porsche 3.0l flat-6
row 9 : 42 | gt | 68 | guy verrier | guy verrier florian vetsch jean- | porsche 911 carrera rs | porsche 3.0l flat-6
row 10 : 43 | gt | 7 | beurlys international auto | pietro polese "willer" | de tomaso pantera | ford 5.8l v8
row 11 : 45 | s 2.0 | 26 | elf switzerland | marie-claude charmasson | renault-alpine a44 | renault 2.0l v6
row 12 : 46 | s 3.0 | 18 | sigma automotive co. ltd | hiroshi fushida har | sigma mc75 | toyota 2.3l turbo
row 13 : 47 | gt | 16 | joest racing / teber | clemens schickentanz hartwig | porsche 911 carrera rsr | porsche 3.0l flat-6
row 14 : 48 | gt | 96 | bonnemaison - thiaw | lucien nageotte gerard pic | porsche 911 carrera rsr | porsche 3.0l flat-6
row 15 : 50 | s 3.0 | 97 | gitanes automobiles ligier | jean-pierre beltoise | ligier js2 | maserati 3.0l v6
row 16 : 52 | s 2.0 | 40 | philippe mettetal | jean ragnotti michel latest | tecma 755 | ford 1.8l i4
row 17 : 53 | gt ser | 83 | jean-yves gadal | jean-yves gadal " | porsche 911 carrera rs | porsche 2.6l flat-6 ] Execute this SQL based on the above table: select pos - pos where chassis = 'porsche 911 carrera rsr' | 0.0, 0.0, 0.0, 0.0, 0.0 |
[ header: year | award | category | nominated work | result row 1 : 2005 | mbc drama awards | best new actor | be strong, geum-soon! | won
row 2 : 2005 | mbc drama awards | excellence award, actor | be strong, geum-soon! | won
row 3 : 2007 | kbs drama awards | best couple award with han ji- | capital scandal | won
row 4 : 2007 | kbs drama awards | excellence award, actor in a miniseries | capital scandal | won
row 5 : 2008 | 44th baeksang arts awards | popularity award | hong gil-dong | won
row 6 : 2008 | 28th korean association of film critic | best new actor | rough cut | won
row 7 : 2008 | 29th blue dragon film awards | best new actor | rough cut | won
row 8 : 2008 | 7th korean film awards | best new actor | rough cut | won
row 9 : 2008 | kbs drama awards | best couple award with sung yu | hong gil-dong | won
row 10 : 2008 | kbs drama awards | netizen award | hong gil-dong | won
row 11 : 2009 | 45th baeksang arts awards | best new actor | rough cut | won
row 12 : 2009 | 10th pusan film critics awards | best new actor | rough cut | won
row 13 : 2009 | 46th grand bell awards | best new actor | my girlfriend is an agent | won
row 14 : 2009 | 5th university film festival of korea | best new actor | my girlfriend is an agent | won
row 15 : 2011 | 6th seoul international drama awards | outstanding korean actor | coffee house | nominated
row 16 : 2011 | sbs drama awards | excellence award, actor in a special planning drama | lie to me | nominated
row 17 : 2013 | sbs drama awards | top excellence award, actor in a drama special | incarnation of money | nominated
row 18 : 2014 | 9th asia model festival awards | asia star award | None | won ] Execute this SQL based on the above table: select award where year > ( select year where award = '6th seoul international drama awards' ) order by year asc limit 1 | sbs drama awards |
[ header: year | date | winner | result | loser | attendance | location row 1 : 1980 | oct 19 | chicago bears | 24-7 | detroit lions | None | chicago, illinois
row 2 : 1980 | nov 27 | chicago bears | 23-17 (ot) | detroit lions | 58508 | pontiac, michigan
row 3 : 1981 | oct 19 | detroit lions | 48-17 | chicago bears | 75397 | pontiac, michigan
row 4 : 1981 | nov 22 | detroit lions | 23-7 | chicago bears | 71273 | chicago, illinois
row 5 : 1982 | sept 12 | detroit lions | 17-10 | chicago bears | 50082 | pontiac, michigan
row 6 : 1982 | nov 21 | chicago bears | 20-17 | detroit lions | 46783 | chicago, illinois
row 7 : 1983 | oct 16 | detroit lions | 31-17 | chicago bears | 66709 | pontiac, michigan
row 8 : 1983 | oct 30 | detroit lions | 38-17 | chicago bears | 58764 | chicago, illinois
row 9 : 1984 | nov 18 | chicago bears | 16-14 | detroit lions | 54911 | chicago, illinois
row 10 : 1984 | dec 16 | chicago bears | 30-13 | detroit lions | 53252 | pontiac, michigan
row 11 : 1985 | nov 10 | chicago bears | 24-3 | detroit lions | 53467 | chicago, illinois
row 12 : 1985 | dec 22 | chicago bears | 37-17 | detroit lions | 74042 | pontiac, michigan
row 13 : 1986 | oct 26 | chicago bears | 13-7 | detroit lions | 62064 | chicago, illinois
row 14 : 1986 | dec 15 | chicago bears | 16-13 | detroit lions | 75602 | pontiac, michigan
row 15 : 1987 | nov 22 | chicago bears | 30-10 | detroit lions | 63357 | chicago, illinois
row 16 : 1988 | oct 9 | chicago bears | 24-7 | detroit lions | 64526 | pontiac, michigan
row 17 : 1988 | dec 11 | chicago bears | 13-12 | detroit lions | 55010 | chicago, illinois
row 18 : 1989 | sept 24 | chicago bears | 47-27 | detroit lions | 71418 | pontiac, michigan
row 19 : 1989 | dec 10 | detroit lions | 27-17 | chicago bears | 52650 | chicago, illinois ] Execute this SQL based on the above table: select count ( result ) where year > 734 | 19 |
[ header: rnd. | pick # | nfl team | player | pos. | college | conf. | notes row 1 : 1 | 29 | chicago bears | marc colombo | ot | boston college | big east | None
row 2 : 2 | 56 | washington redskins | ladell betts | rb | iowa | big ten | from baltimore
row 3 : 2 | 58 | philadelphia eagles | michael lewis | s | colorado | big 12 | None
row 4 : 2 | 61 | buffalo bills | ryan denney | de | byu | mwc | from san francisco
row 5 : 3 | 69 | san francisco 49ers | saleem rasheed | lb | alabama | sec | from buffalo
row 6 : 3 | 78 | new york giants | jeff hatch | ot | penn | ivy | None
row 7 : 3 | 80 | atlanta falcons | will overstreet | lb | tennessee | sec | None
row 8 : 3 | 88 | new york jets | chris baker | te | michigan state | big ten | None
row 9 : 3 | 95 | st. louis rams | eric crouch | wr | nebraska | big 12 | 2001 heisman trophy winner
row 10 : 4 | 106 | indianapolis colts | david thornton | lb | north carolina | acc | None
row 11 : 4 | 120 | seattle seahawks | terreal bierria | ss | georgia | sec | None
row 12 : 4 | 125 | new orleans saints | keyuo craver | cb | nebraska | big 12 | from miami
row 13 : 4 | 130 | st. louis rams | travis scott | g | arizona state | pac-10 | None
row 14 : 5 | 148 | atlanta falcons | kevin mccadam | s | virginia tech | big east | None
row 15 : 5 | 156 | green bay packers | aaron kampman | de | iowa | big ten | from seattle
row 16 : 5 | 158 | atlanta falcons | kurt kittner | qb | illinois | big ten | from oakland
row 17 : 5 | 159 | washington redskins | andre lott | s | tennessee | sec | from baltimore
row 18 : 5 | 162 | philadelphia eagles | freddie milons | wr | alabama | sec | None
row 19 : 5 | 169 | seattle seahawks | ryan hannam | te | northern iowa | gateway | None
row 20 : 6 | 178 | san diego chargers | matt anderle | ot | minnesota | big ten | None
row 21 : 6 | 195 | baltimore ravens | lamont brightful | cb | eastern washington | big sky | None
row 22 : 6 | 196 | new orleans saints | john gilmore | te | penn state | big ten | from ny jets
row 23 : 7 | 233 | tampa bay buccaneers | tim wansley | cb | georgia | sec | None
row 24 : 7 | 258 | carolina panthers | brad franklin | cb | louisiana-lafayette | sun belt | None ] Execute this SQL based on the above table: select count ( distinct notes ) where pick # >= 1865 and rnd. <= 1143 | 0 |
[ header: game | date | visitor | score | home | decision | attendance | record | points row 1 : 34 | january 3 | ny rangers | 2 - 4 | philadelphia | parent | 17007 | 22-8-4 | 48
row 2 : 35 | january 5 | philadelphia | 3 - 3 | minnesota | parent | 15296 | 22-8-5 | 49
row 3 : 36 | january 7 | philadelphia | 1 - 2 | montreal | parent | 19040 | 22-9-5 | 49
row 4 : 37 | january 10 | minnesota | 4 - 7 | philadelphia | parent | 17007 | 23-9-5 | 51
row 5 : 38 | january 11 | philadelphia | 7 - 6 | atlanta | taylor | 5141 | 24-9-5 | 53
row 6 : 39 | january 13 | atlanta | 0 - 1 | philadelphia | parent | 17007 | 25-9-5 | 55
row 7 : 40 | january 17 | buffalo | 2 - 7 | philadelphia | parent | 17007 | 26-9-5 | 57
row 8 : 41 | january 19 | los angeles | 0 - 2 | philadelphia | parent | 17007 | 27-9-5 | 59
row 9 : 42 | january 20 | pittsburgh | 5 - 3 | philadelphia | parent | 17007 | 27-10-5 | 59
row 10 : 43 | january 22 | philadelphia | 3 - 2 | vancouver | taylor | 15570 | 28-10-5 | 61
row 11 : 44 | january 24 | philadelphia | 4 - 4 | los angeles | parent | 14343 | 28-10-6 | 62
row 12 : 45 | january 25 | philadelphia | 5 - 0 | california | parent | 10776 | 29-10-6 | 64
row 13 : 46 | january 27 | philadelphia | 3 - 5 | boston | taylor | 15003 | 29-11-6 | 64
row 14 : 47 | january 31 | buffalo | 3 - 4 | philadelphia | parent | 17007 | 30-11-6 | 66 ] Execute this SQL based on the above table: select home where home in ( 'philadelphia' , 'vancouver' ) order by decision limit 1 | philadelphia |
[ header: year | competition | venue | position | event | notes row 1 : 1996 | world junior championships | sydney, australia | 8th | 200 m | 23.89
row 2 : 1996 | olympic games | atlanta, united states | 11th (sf) | 4x100 m relay | 44.21
row 3 : 1997 | european junior championships | ljubljana, s | 1st | 100 m | 11.39
row 4 : 1997 | european junior championships | ljubljana, s | 3rd | 200 m | 23.43
row 5 : 1997 | world championships | athens, greece | 36th (h) | 100 m | 11.59
row 6 : 1998 | world junior championships | annecy, france | 8th (sf) | 100 m | 11.75
row 7 : 1998 | european championships | budapest, hungary | 27th (h) | 200 m | 24.1
row 8 : 1998 | european championships | budapest, hungary | 6th | 4x100 m relay | 44.1
row 9 : 1999 | european junior championships | riga, latvia | 2nd | 100 m | 11.47
row 10 : 1999 | european junior championships | riga, latvia | 2nd | 200 m | 23.26
row 11 : 1999 | european junior championships | riga, latvia | 2nd | 4x100 m relay | 44.4
row 12 : 1999 | world championships | seville, spain | 24th (qf) | 100 m | 11.45
row 13 : 1999 | world championships | seville, spain | 10th (h) | 4x100 m relay | 43.86
row 14 : 2000 | european indoor championships | ghent, belgium | 21st (h) | 60 m | 7.4
row 15 : 2000 | european indoor championships | ghent, belgium | 12th (sf) | 200 m | 23.83
row 16 : 2000 | olympic games | sydney, australia | 12th (sf) | 4x100 m relay | 43.5
row 17 : 2001 | european u23 championships | amsterdam, netherlands | 1st | 100 m | 11.61
row 18 : 2001 | european u23 championships | amsterdam, netherlands | 1st | 4x100 m relay | 44.76
row 19 : 2001 | world championships | edmonton, canada | 12th (sf) | 100 m | 11.46
row 20 : 2002 | european championships | munich, germany | 20th (h) | 100 m | 11.58
row 21 : 2003 | world championships | paris, france | 23rd (qf) | 200 m | 23.42
row 22 : 2004 | world indoor championships | budapest, hungary | 13th (sf) | 60 m | 7.3
row 23 : 2004 | world indoor championships | budapest, hungary | 10th (h) | 200 m | 23.79
row 24 : 2006 | european championships | gothenburg, sweden | 11th (h) | 4x100 m relay | 44.32
row 25 : 2007 | european indoor championships | birmingham, united kingdom | 5th (sf) | 60 m | 7.24
row 26 : 2007 | universiade | bangkok, thailand | 1st | 100 m | 11.46
row 27 : 2007 | universiade | bangkok, thailand | 1st | 4x100 m relay | 43.48
row 28 : 2007 | world championships | osaka, japan | 32nd (h) | 100 m | 11.52
row 29 : 2007 | world championships | osaka, japan | 10th (h) | 4x100 m relay | 43.41 ] Execute this SQL based on the above table: select competition where year >= 2001 and year <= 2007 order by year asc limit 1 | european u23 championships |
[ 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 sum ( run 1 ) where athlete in ( 'martin vrablik' , 'aronne pieruz' ) | 103.16 |
[ header: # | date | venue | opponent | score | result | competition row 1 : 1 | september 29, 2006 | lionel roberts park | bermuda | 1-3 | 1-3 | 2007 caribbean cup qualifier
row 2 : 2 | october 1, 2006 | lionel roberts park | u.s. virgin islands | 2-1 | 6-1 | 2007 caribbean cup qualifier
row 3 : 3 | october 1, 2006 | lionel roberts park | u.s. virgin islands | 3-1 | 6-1 | 2007 caribbean cup qualifier
row 4 : 4 | october 1, 2006 | lionel roberts park | u.s. virgin islands | 4-1 | 6-1 | 2007 caribbean cup qualifier
row 5 : 5 | october 1, 2006 | lionel roberts park | u.s. virgin islands | 5-1 | 6-1 | 2007 caribbean cup qualifier
row 6 : 6 | july 8, 2011 | estadio panamericano, | anguilla | 2-0 | 2-0 | 2014 fifa world cup qualifier
row 7 : 7 | july 10, 2011 | estadio panamericano, | anguilla | 4-0 | 4-0 | 2014 fifa world cup qualifier
row 8 : 8 | october 11, 2011 | andre kamperveen stadion | suriname | 1-0 | 3-1 | 2014 fifa world cup qualifier
row 9 : 9 | september 27, 2012 | kensington oval, bridgetown | dominica | 1-1 | 2-1 | 2012 caribbean cup qualifier
row 10 : 10 | september 27, 2012 | kensington oval, bridgetown | dominica | 2-1 | 2-1 | 2012 caribbean cup qualifier
row 11 : 11 | october 23, 2012 | stade rene serge naba | guadeloupe | 1-0 | 2-0 | 2012 caribbean cup qualifier
row 12 : 12 | october 23, 2012 | stade rene serge naba | guadeloupe | 2-0 | 2-0 | 2012 caribbean cup qualifier
row 13 : 13 | october 27, 2012 | stade rene serge naba | puerto rico | 1-0 | 3-1 | 2012 caribbean cup qualifier
row 14 : 14 | october 27, 2012 | stade rene serge naba | puerto rico | 2-0 | 3-1 | 2012 caribbean cup qualifier
row 15 : 15 | december 7, 2012 | antigua recreation ground, st. | antigua and barbuda | 2-1 | 2-1 | 2012 caribbean cup
row 16 : 16 | march 24, 2013 | estadio panamericano, | haiti | 2-0 | 3-1 | friendly ] Execute this SQL based on the above table: select score order by # desc limit 1 | 1-1 |
[ header: season | series | team | races | wins | poles | f/laps | podiums | points | position row 1 : 2003 | formula renault 2.0 italy | cram competition | 12 | 0 | 1 | 1 | 3 | 118 | 7th
row 2 : 2003 | formula renault 2000 masters season | cram competition | 8 | 0 | 0 | 0 | 0 | 0 | 28th
row 3 : 2003 | formula renault 2.0 germany | cram competition | 2 | 0 | 0 | 0 | 0 | 3 | 43rd
row 4 : 2003 | formula renault 2.0 italy winter cup | cram competition | None | None | None | None | None | None | 1st
row 5 : 2004 | formula renault 2.0 italy | cram competition | 17 | 8 | 6 | 11 | 12 | 326 | 1st
row 6 : 2004 | formula renault 2000 eurocup | cram competition | 15 | 2 | 0 | 1 | 3 | 134 | 8th
row 7 : 2004 | formula renault v6 eurocup | cram competition | 2 | 0 | 0 | 0 | 0 | 12 | 21st
row 8 : 2004 | formula one | minardi | test driver | test driver | test driver | test driver | test driver | test driver | test driver
row 9 : 2005 | world series by renault | dams | 8 | 0 | 0 | 0 | 0 | 4 | 25th
row 10 : 2005 | italian formula 3000 | sighinolfi auto racing | 4 | 1 | 1 | 1 | 1 | 14 | 9th
row 11 : 2006 | world series by renault | draco racing | 17 | 3 | 5 | 6 | 5 | 103 | 3rd
row 12 : 2007 | gp2 series | trident racing | 13 | 1 | 1 | 0 | 2 | 25 | 11th
row 13 : 2007 | euroseries 3000 | g-tec | 2 | 1 | 1 | 1 | 1 | 12 | 10th
row 14 : 2007 | formula 3000 italy | g-tec | 2 | 1 | 1 | 1 | 1 | 12 | 8th
row 15 : 2008 | gp2 series | piquet sports | 20 | 1 | 2 | 3 | 6 | 60 | 5th
row 16 : 2008 | international gt open - gt | scuderia latorre | 2 | 0 | 0 | 0 | 1 | 8 | 22nd
row 17 : 2008 | euroseries 3000 | gp racing | 1 | 1 | 0 | 1 | 1 | 11 | 12th
row 18 : 2008 | international gt open | scuderia latorre | None | None | None | None | None | 18 | 32nd
row 19 : 2008-09 | gp2 asia series | art grand prix | 5 | 0 | 0 | 0 | 1 | 7 | 15th
row 20 : 2009 | euroseries 3000 | teamcraft motorsport | 2 | 1 | 0 | 0 | 1 | 10 | 10th
row 21 : 2009 | gp2 series | art grand prix | 20 | 2 | 0 | 0 | 2 | 36 | 6th
row 22 : 2010 | gp2 series | rapax team | 20 | 6 | 0 | 5 | 8 | 87 | 1st
row 23 : 2011 | formula one | at&t williams | 19 | 0 | 0 | 0 | 0 | 1 | 18th
row 24 : 2012 | formula one | williams f1 team | 20 | 1 | 1 | 0 | 1 | 45 | 15th
row 25 : 2013 | formula one | williams f1 team | 19 | 0 | 0 | 0 | 0 | 1 | 18th
row 26 : 2014 | formula one | lotus f1 team | 2 | 0 | 0 | 0 | 0 | 0 | nc ] Execute this SQL based on the above table: select count ( position ) where position = '21st' | 1 |
[ header: name | japanese | distance (km) | connections | location row 1 : okayama | 岡山 | 0 | sanyo shinkansen | kita-ku, okayama
row 2 : bizen-mikado | 備前三門 | 1.9 | None | kita-ku, okayama
row 3 : daianji | 大安寺 | 3.3 | None | kita-ku, okayama
row 4 : bizen-ichinomiya | 備前一宮 | 6.5 | None | kita-ku, okayama
row 5 : kibitsu | 吉備津 | 8.4 | None | kita-ku, okayama
row 6 : bitchu-takamatsu | 備中高松 | 11 | None | kita-ku, okayama
row 7 : ashimori | 足守 | 13.4 | None | kita-ku, okayama
row 8 : hattori | 服部 | 16.2 | None | soja
row 9 : higashi-soja | 東総社 | 18.8 | None | soja
row 10 : soja | 総社 | 20.4 | hakubi line ibara railway | soja ] Execute this SQL based on the above table: select count ( connections ) where distance (km) = 51 | 0 |
[ header: year | competition | venue | position | event | notes row 1 : 2001 | beijing marathon | beijing, pr china | 7th | marathon | 2:10:46
row 2 : 2002 | beijing marathon | beijing, pr china | 1st | marathon | 2:13:09
row 3 : 2004 | olympic games | athens, greece | 31st | marathon | 2:19:26
row 4 : 2007 | xiamen international marathon | xiamen, pr china | 1st | marathon | 2:13:17
row 5 : 2007 | world championships | osaka, japan | 43rd | marathon | 2:32:44
row 6 : 2008 | olympic games | beijing, pr china | 51st | marathon | 2:24:08 ] Execute this SQL based on the above table: select competition where year = 2004 | olympic games |
[ header: # | date | film | gross | top ten places row 1 : 1 | january 5, 2014 | frozen | $2,441,278 | paranormal activity: the marked ones (#2)
row 2 : 2 | january 12, 2014 | frozen | $1,193,153 | the wolf of wall street (#3)
row 3 : 3 | january 19, 2014 | ¿que le dijiste a | $1,607,603 | jack ryan: shadow recruit (#
row 4 : 4 | january 26, 2014 | i, frankenstein | $2,017,410 | grudge match (#10)
row 5 : 5 | february 2, 2014 | 47 ronin | $1,916,620 | devil's due (#2)
row 6 : 6 | february 9, 2014 | the lego movie | $3,823,198 | the legend of hercules (#4)
row 7 : 7 | february 16, 2014 | casese quien pueda | $3,287,643 | robocop (#2), the monuments
row 8 : 8 | february 23, 2014 | casese quien pueda | $2,228,705 | pompeii (#3), 12 years
row 9 : 9 | march 2, 2014 | mr. peabody & she | $2,687,778 | fachon models (#6), august:
row 10 : 10 | march 9, 2014 | 300: rise of an empire | $5,468,513 | homefront (#8), zip &
row 11 : 11 | march 16, 2014 | 300: rise of an empire | $2,891,351 | el crimen del cacaro
row 12 : 12 | march 23, 2014 | noah | $5,743,388 | muppets most wanted (#3)
row 13 : 13 | march 30, 2014 | captain america: the winter soldier | $8,596,889 | None ] Execute this SQL based on the above table: select min ( # ) | 1.0 |
[ header: composer | born | died | nationality | notable works for piano | remarks row 1 : malcolm arnold | 1921 | 2006 | english | sonata for piano (1942) variations on | None
row 2 : york bowen | 1884 | 1961 | english | None | romantic
row 3 : alberto ginastera | 1916 | 1983 | argentine | None | earlier works often integrate argentine folk themes;
row 4 : alexander glazunov | 1865 | 1936 | russian | None | romantic
row 5 : enrique granados | 1867 | 1916 | spanish | None | distinctly spanish
row 6 : dmitri kabalevsky | 1904 | 1987 | russian, soviet | None | None
row 7 : viktor kosenko | 1896 | 1938 | ukrainian | None | None
row 8 : constant lambert | 1905 | 1951 | english | piano sonata (1928-1929) suite | None
row 9 : nikolai medtner | 1880 | 1951 | russian | None | None
row 10 : walter niemann | 1876 | 1953 | german | None | impressionist and exotic influences
row 11 : ignacy jan paderewski | 1860 | 1941 | polish | None | None
row 12 : john palm | 1885 | 1925 | curacao-born | None | None
row 13 : selim palmgren | 1878 | 1951 | finnish | None | None
row 14 : sergei prokofiev | 1891 | 1953 | russian | sonata no. 6 in a major | None
row 15 : arnold schoenberg | 1874 | 1951 | austrian, american | drei klavierstucke, | serial (mature/late career), late-
row 16 : james scott | 1885 | 1938 | american, african-american | None | ragtime
row 17 : alexander scriabin | 1872 | 1915 | russian | 10 piano sonatas | late-romantic (early); at
row 18 : alexei stanchinsky | 1888 | 1914 | russian | None | post-romantic, modal
row 19 : richard strauss | 1864 | 1949 | german | None | None
row 20 : toru takemitsu | 1930 | 1996 | japanese | None | eclectic, with influences ranging from jazz, popular
row 21 : galina ustvolskaya | 1919 | 2006 | russian | None | eclectic
row 22 : heitor villa-lobos | 1887 | 1959 | brazilian | bachianas brasileiras no | None
row 23 : angel villoldo | 1861 | 1919 | argentine | None | tango ] Execute this SQL based on the above table: select nationality where nationality in ( 'ukrainian' , 'english' ) order by born desc limit 1 | english |
[ 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 count ( score ) where away team = 'preston north end' | 1 |
[ header: season | date | driver | team | chassis | engine | race distance laps | race distance miles (km) | race time | average speed (mph) | report row 1 : 2005 | july 17 | sebastien bourdais | newman/haas racing | lola | ford-cosworth | 88 | 173.624 (279.42) | 1:38:55 | 105.302 | report
row 2 : 2006 | july 23 | justin wilson | rusport | lola | ford-cosworth | 85 | 167.705 (269.895) | 1:40:30 | 100.112 | report
row 3 : 2007 | july 22 | sebastien bourdais | newman/haas/lanigan racing | panoz | cosworth | 96 | 189.408 (304.822) | 1:45:41 | 107.517 | report
row 4 : 2008 | july 26 | scott dixon | chip ganassi racing | dallara | honda | 91 | 179.543 (288.946) | 1:51:06 | 96.967 | report
row 5 : 2009 | july 26 | will power | penske racing | dallara | honda | 95 | 187.435 (301.647) | 1:42:42 | 109.498 | report
row 6 : 2010 | july 25 | scott dixon | chip ganassi racing | dallara | honda | 95 | 187.435 (301.647) | 1:50:37 | 101.666 | report
row 7 : 2011 | july 24 | will power | penske racing | dallara | honda | 80 | 180.48 (290.454) | 1:57:23 | 90.949 | report
row 8 : 2012 | july 22 | helio castroneves | penske racing | dallara | chevrolet | 75 | 169.2 (272.301) | 1:38:51 | 101.246 | report ] Execute this SQL based on the above table: select report order by race distance laps desc limit 1 | report |
[ header: date | result | opponent | event | location | method | round | time row 1 : 2013-12-14 | loss | mohamed diaby | victory, semi finals | paris, france | decision | 3 | 3:00
row 2 : 2013-03-09 | None | juanma chacon | enfusion live: barcelona | barcelona, spain | None | None | None
row 3 : 2012-05-27 | loss | murthel groenhart | k-1 world max 2012 world championship tournament final | madrid, spain | ko (punches) | 3 | 3:00
row 4 : 2012-02-11 | win | francesco tadiello | sporthal de zandbergen | sint-job-in-'t- | ko | 1 | None
row 5 : 2012-01-28 | win | chris ngimbi | it's showtime 2012 in leeu | leeuwarden, netherlands | tko (cut) | 2 | 1:22
row 6 : 2011-09-24 | loss | andy souwer | bfn group & music hall presents | brussels, belgium | extra round decision (split) | 4 | 3:00
row 7 : 2011-04-09 | win | lahcen ait ouss | le grande ko xi | liege, belgium | ko | 1 | None
row 8 : 2011-02-12 | win | henri van opstal | war of the ring | amsterdam, netherlands | decision (unanimous) | 3 | 3:00
row 9 : 2010-09-10 | win | edson fortes | ring sensation gala | utrecht, netherlands | decision | 3 | 3:00
row 10 : 2010-03-21 | loss | mohamed khamal | k-1 world max 2010 west europe tournament | utrecht, netherlands | ko (punch) | 2 | None
row 11 : 2009-11-21 | win | seo doo won | it's showtime 2009 barneveld | barneveld, netherlands | tko (referee stop | 1 | None
row 12 : 2009-09-24 | win | chris ngimbi | it's showtime 2009 lommel | lommel, belgium | extra round decision | 4 | 4:00
row 13 : 2009-04-11 | win | farid riffi | almelo fight for delight | almelo, netherlands | tko | None | None
row 14 : 2009-03-14 | win | viktor sarezki | war of the ring | belgium | ko (punch to the body) | 1 | None
row 15 : 2009-02-21 | win | pedro sedarous | turnhout gala | turnhout, belgium | decision | 5 | 3:00
row 16 : 2009-01-31 | win | dahou naim | tielrode gala | tielrode, belgium | 2nd extra round decision | 5 | 3:00
row 17 : 2008-09-20 | win | abdallah mabel | s-cup europe 2008, reserve bout | gorinchem, netherlands | decision | 3 | 3:00
row 18 : 2008-09-14 | win | jordy sloof | the outland rumble | rotterdam, netherlands | ko (right cross) | 1 | None
row 19 : 2008-03-08 | win | naraim ruben | lommel gala | lommel, belgium | tko (retirement) | 3 | None
row 20 : 2008-02-23 | win | pierre petit | st. job gala | st. job, belgium | ko (right punch) | 2 | None ] Execute this SQL based on the above table: select opponent where opponent != 'mohamed khamal' and result = ( select result where opponent = 'mohamed khamal' ) | mohamed diaby, murthel groenhart, andy souwer |
[ header: rank | team | athletes | run 1 | run 2 | run 3 | run 4 | final row 1 : silver | italy (ita) italy | eugenio monti, | 1:17.69 | 1:17.97 | 1:18.13 | 1:18.31 | 5:12.10
row 2 : bronze | united states (usa) usa i | arthur tyler, william | 1:17.75 | 1:17.87 | 1:18.25 | 1:18.52 | 5:12.39
row 3 : 4 | switzerland (sui) | max angst, aby gar | 1:17.41 | 1:17.85 | 1:18.68 | 1:20.33 | 5:14.27
row 4 : 7 | austria (aut) austria i | kurt loserth, wil | 1:19.37 | 1:19.12 | 1:20.08 | 1:19.72 | 5:18.29
row 5 : 8 | germany (ger) germany ii | franz schelle, jako | 1:19.03 | 1:18.84 | 1:19.31 | 1:21.35 | 5:18.50
row 6 : 9 | spain (esp) spain | alfonso de portago, | 1:18.87 | 1:19.27 | 1:21.37 | 1:19.08 | 5:19.49
row 7 : 11 | norway (nor) norway i | arne røgden, ar | 1:20.96 | 1:20.08 | 1:20.45 | 1:20.01 | 5:21.50
row 8 : 13 | sweden (swe) s | kjell holmstrom, | 1:20.58 | 1:20.32 | 1:21.15 | 1:21.13 | 5:23.18
row 9 : 16 | sweden (swe) s | olle axelsson, | 1:18.95 | 1:19.98 | 1:22.75 | 1:21.86 | 5:23.54
row 10 : 18 | france (fra) france | andre robin, pierre bouvier | 1:20.00 | 1:21.25 | 1:20.95 | 1:21.63 | 5:23.83
row 11 : 21 | poland (pol) poland | aleksy konieczny | None | None | None | None | 5:28.40 ] Execute this SQL based on the above table: select rank where rank = 'silver' order by rank limit 1078 | silver |
[ header: round | pick | player | nationality | college/junior/club team row 1 : 1 | 3 | rick hampton | canada | st. catharines black hawk
row 2 : 1 | 17 | ron chipperfield | canada | brandon wheat kings (wchl
row 3 : 2 | 21 | bruce affleck | canada | university of denver pioneers (wcha)
row 4 : 3 | 39 | charlie simmer | canada | sault ste. marie greyhound
row 5 : 4 | 57 | tom price | canada | ottawa 67's (
row 6 : 5 | 75 | jim warden | united states | michigan tech huskies (wcha
row 7 : 6 | 93 | tom sundberg | united states | st. paul vulcans
row 8 : 7 | 111 | tom anderson | united states | st. paul vulcans
row 9 : 8 | 128 | jim mccabe | canada | welland sabres (so ] Execute this SQL based on the above table: select college/junior/club team order by round desc limit 1 | welland sabres (sojhl) |
[ header: year | cast (nabucco, abigaille, zaccaria, ismaele, fenena) | conductor, opera house and orchestra | label row 1 : 1951 | paolo silveri, caterina | fernando previtali, orchestra | audio cd: warner fon
row 2 : 1965 | tito gobbi, | lamberto gardelli, vienn | audio cd: decca cat: 4
row 3 : 1977-78 | matteo manuguerra, renat | riccardo muti, phil | audio cd: emi records
row 4 : 1982 | piero cappuccilli, | giuseppe sinopoli, | audio cd: dg cat:
row 5 : 1987 | renato bruson, g | riccardo muti, la | dvd: warner cat: 5050467
row 6 : 2002 | juan pons, maria | james levine, metropolitan opera | dvd: dg, live recording cat:
row 7 : 2004 | alberto gazzale, susan | riccardo frizza, teatr | dvd: dynamic, live recording cat: 334
row 8 : 2004 | renato bruson, mauri | paolo carignani, teat | dvd: brilliant classics, live recording cat:
row 9 : 2007 | leo nucci, maria guleg | daniel oren, arena di | dvd: decca, live recording cat: ] Execute this SQL based on the above table: select count ( distinct label ) | 9 |
[ header: version | length | album | remixed by | year | comment row 1 : album/single version | 4:30 | avant que l'ombre | None | 2005 | see the previous sections
row 2 : radio edit | 3:55 | None | None | 2005 | the musical introduction is almost fully deleted, as well
row 3 : instrumental | 4:32 | None | laurent boutonnat | 2005 | this instrumental version is identical to the album version,
row 4 : the martyr's remix | 5:20 | None | y-front | 2005 | this version contains all the lyrics of the album version
row 5 : mother f... dub mix | 7:50 | None | joachim garraud | 2005 | all the lyrics from the original version are deleted,
row 6 : mother f... vocal club mix | 8:30 | None | joachim garraud | 2005 | devoted to the nightclubs, this techno
row 7 : music video | 5:02 | music videos iv | None | 2005 | None
row 8 : live version (recorded in 2006) | 6:42 (audio) 8:18 ( | avant que l'ombre... a | None | 2006 | this version is similar to the album one, with ] Execute this SQL based on the above table: select count ( distinct album ) | 3 |
[ header: date | position | name | from | fee row 1 : 5 july 2001 | mf | andy hughes | notts county | £250,000 by a tribunal
row 2 : 5 july 2001 | df | adrian whitbread | portsmouth | free
row 3 : 18 july 2001 | df | alex smith | port vale | free
row 4 : 30 november 2001 | gk | antony malessa | oxford united | free
row 5 : 28 january 2002 | mf | john salako | charlton athletic | £50,000
row 6 : 13 march 2002 | gk | frank talia | sheffield united | free
row 7 : 15 march 2002 | mf | kevin watson | charlton athletic | £150,000 ] Execute this SQL based on the above table: select date where id = ( select id where date = '30 november 2001' ) + 1 | 28 january 2002 |
[ header: position | team | points | played | won | drawn | lost | for | against | difference row 1 : 1 | paulistano | 30 | 18 | 14 | 2 | 2 | 62 | 19 | 43
row 2 : 2 | palestra italia-sp | 29 | 18 | 14 | 1 | 3 | 59 | 21 | 38
row 3 : 3 | corinthians | 26 | 18 | 12 | 2 | 4 | 51 | 16 | 35
row 4 : 4 | ypiranga-sp | 25 | 18 | 11 | 3 | 4 | 56 | 34 | 22
row 5 : 5 | aa sao bento | 16 | 18 | 7 | 2 | 9 | 38 | 44 | -6
row 6 : 6 | santos | 13 | 18 | 6 | 1 | 11 | 36 | 43 | -7
row 7 : 7 | sc internacional de sa | 11 | 15 | 3 | 5 | 7 | 26 | 44 | -18
row 8 : 8 | minas gerais | 10 | 15 | 4 | 2 | 9 | 18 | 49 | -31
row 9 : 9 | aa das palmeiras | 6 | 15 | 3 | 0 | 12 | 27 | 57 | -30
row 10 : 10 | mackenzie | 2 | 15 | 1 | 0 | 14 | 11 | 57 | -46 ] Execute this SQL based on the above table: select team where against > ( select against where team = 'santos' ) order by against limit 1 | aa sao bento |
[ header: polling firm | month | link | favor | oppose row 1 : rutgers-eagleton | march 2014 | None | 64 | 28
row 2 : quinnipiac | july 2013 | None | 60 | 31
row 3 : rutgers-eagleton | june 2013 | None | 59 | 30
row 4 : quinnipiac | march 2013 | None | 64 | 30
row 5 : public policy polling | november 2012 | None | 53 | 36
row 6 : quinnipiac | february 2012 | None | 57 | 37
row 7 : rutgers-eagleton | february 2012 | None | 54 | 35
row 8 : quinnipiac | january 2012 | None | 52 | 42
row 9 : rutgers-eagleton | october 2011 | None | 52 | 39
row 10 : rutgers-eagleton | august 2011 | None | 52 | 32
row 11 : public policy polling | july 2011 | None | 47 | 42
row 12 : quinnipiac | november 2009 | None | 46 | 49
row 13 : rutgers-eagleton | november 2009 | None | 50 | 42
row 14 : quinnipiac | april 2009 | None | 49 | 43
row 15 : zogby international | august 2008 | None | 50 | 42
row 16 : zogby international | august 2007 | None | 48.1 | 44.6
row 17 : rasmussen reports | july 2006 | None | 42 | 54
row 18 : rutgers-eagleton | june 2006 | pdf | 49 | 44
row 19 : zogby international | february 2006 | None | 56 | 39
row 20 : zogby international | april 2005 | html | 54.5 | 40.1
row 21 : rutgers-eagleton | september 2003 | pdf | 43 | 50
row 22 : zogby international | july 2003 | None | 55 | 41 ] Execute this SQL based on the above table: select count ( * ) where favor >= 5 | 22 |
[ header: year | film | role | language | notes row 1 : 2004 | kyun! ho gaya na | diya's sister | hindi | None
row 2 : 2007 | lakshmi kalyanam | lakshmi | telugu | None
row 3 : 2007 | chandamama | mahalakshmi | telugu | None
row 4 : 2008 | pourudu | samyukhta | telugu | None
row 5 : 2008 | pazhani | deepti | tamil | None
row 6 : 2008 | aatadista | sunnanda | telugu | None
row 7 : 2008 | saroja | pooja | tamil | cameo appearance
row 8 : 2008 | bommalattam | anitha | tamil | None
row 9 : 2009 | modhi vilayadu | easwari laksh | tamil | None
row 10 : 2009 | magadheera | yuvarani mithravind | telugu | dual role nominated- filmfare award
row 11 : 2009 | ganesh just ganes | divya | telugu | None
row 12 : 2009 | arya 2 | geethanjali | telugu | None
row 13 : 2010 | om shanti | meghana | telugu | None
row 14 : 2010 | darling | nandini | telugu | nominated- filmfare award for best
row 15 : 2010 | naan mahaan alla | priya sudharsan | tamil | None
row 16 : 2010 | brindaavanam | bhoomi | telugu | cinemaa award for best actress (telugu
row 17 : 2011 | mr. perfect | priya | telugu | nominated- filmfare award for best
row 18 : 2011 | veera | chitti | telugu | None
row 19 : 2011 | singham | kavya bhosle | hindi | nominated- filmfare award for best
row 20 : 2011 | dhada | rhea | telugu | None
row 21 : 2012 | businessman | chitra | telugu | None
row 22 : 2012 | maattrraan | anjali | tamil | None
row 23 : 2012 | thuppakki | nisha | tamil | cinemaa award for best actress (tamil
row 24 : 2012 | sarocharu | sandhya | telugu | None
row 25 : 2013 | naayak | madhu | telugu | None
row 26 : 2013 | special 26 | priya chauhan | hindi | None
row 27 : 2013 | baadshah | janaki | telugu | None
row 28 : 2013 | all in all azhagu raj | chitra devi priya | tamil | None
row 29 : 2014 | jilla | shanthi | tamil | None
row 30 : 2014 | yevadu | deepthi | telugu | special appearance
row 31 : 2014 | govindudu andarivadele | None | telugu | filming
row 32 : 2014 | 'untitled balaji mohan project | None | tamil | pre-production ] Execute this SQL based on the above table: select count ( language ) where language != 'telugu' and year >= ( select year where language = 'telugu' ) | 12 |
[ header: rank | player | points | points defending | points won | new points | withdrew due to row 1 : 5 | juan martin del potr | 5115 | 720 | 0 | 4395 | right wrist surgery
row 2 : 6 | nikolay davydenko | 5145 | 360 | 0 | 4785 | broken wrist
row 3 : 20 | radek stepanek | 1705 | 90 | 0 | 1615 | fatigue
row 4 : 23 | tommy haas | 1660 | 180 | 0 | 1480 | right hip surgery
row 5 : 32 | gilles simon | 1395 | 90 | 0 | 1305 | right knee injury
row 6 : 36 | ivo karlovic | 1295 | 10 | 0 | 1285 | right foot injury
row 7 : 10 | kim clijsters | 3890 | 0 | 0 | 3890 | left foot injury ] Execute this SQL based on the above table: select player order by points defending - new points desc limit 1 | gilles simon |
[ 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 province where province in ( '1.4' , 'quebec' ) order by change in % 2006-2011 asc limit 1 | quebec |
[ header: season | club | country | competition | apps. | goals row 1 : 1997/98 | rapide club lebbeke | belgium | fourth division | None | None
row 2 : 1998/99 | ksc eendracht a | belgium | jupiler league | 30 | 7
row 3 : 1999/00 | ksc eendracht a | belgium | jupiler league | 31 | 7
row 4 : 2000/01 | ksc eendracht a | belgium | jupiler league | 30 | 6
row 5 : 2001/02 | omonia nicosia | cyprus | cypriot first division | 22 | 8
row 6 : 2002/03 | fc denderleeuw | belgium | belgian second division | 32 | 23
row 7 : 2003/04 | 1. fc saarbrucken | germany | regionalliga sud | 33 | 16
row 8 : 2004/05 | 1. fc saarbrucken | germany | 2. bundesliga | 14 | 7
row 9 : 2005/06 | 1. fc saarbrucken | germany | 2. bundesliga | 10 | 0
row 10 : 2005/06 | s.v. zulte | belgium | jupiler league | 14 | 1
row 11 : 2006/07 | fcv dender eh | belgium | belgian second division | 33 | 21
row 12 : 2007/08 | mvv | netherlands | eerste divisie | 33 | 22
row 13 : 2008/09 | mvv | netherlands | eerste divisie | 32 | 20
row 14 : total | None | None | None | 302 | 132 ] Execute this SQL based on the above table: select competition where apps. = ( select apps. where competition = 'regionalliga sud' ) - 1 | belgian second division, eerste divisie |
[ header: national park | region | land area (km2) | established | visitation (2009) | coordinates row 1 : archipelago | finland proper | 500 | 1982 | 53500 | 59°54′53′′n 21°
row 2 : bothnian sea | None | None | 2011 | None | None
row 3 : ekenas archipelago | uusimaa | 52 | 1989 | 44500 | 59°49′22′′n 23°
row 4 : isojarvi | central finland | 19 | 1982 | 10500 | 61°41′54′′n 25°
row 5 : kolovesi | southern savonia | 23 | 1990 | 7500 | 62°15′27′′n 28°
row 6 : lauhanvuori | southern ostrobothnia | 53 | 1982 | 10000 | 62°09′7′′n 22°
row 7 : linnansaari | southern savonia / northern | 38 | 1956 | 31000 | 62°6′38′′n 28°
row 8 : nuuksio | uusimaa | 45 | 1994 | 179500 | 60°18′27′′n 24°29
row 9 : pyha-hakki | central finland | 13 | 1956 | 17000 | 62°50′44′′n 25°
row 10 : riisitunturi | lapland | 77 | 1982 | 15000 | 66°14′n 28°30′
row 11 : rokua | northern ostrobothnia / | 4.3 | 1956 | 23500 | 64°33′22′′n 26°30
row 12 : sipoonkorpi | uusimaa | 18.6 | 2011 | None | 60°18′54′′n 25°13
row 13 : syote | northern ostrobothnia / | 299 | 2000 | 40000 | 65°44′51′′n 27°54 ] Execute this SQL based on the above table: select coordinates where land area (km2) <= 149 | 59°49′22′′n 23°27′15′′e / 59.82278°n 23.45417°e, 61°41′54′′n 25°0′39′′e / 61.69833°n 25.01083°e, 62°15′27′′n 28°49′0′′e / 62.25750°n 28.81667°e, 62°09′7′′n 22°10′30′′e / 62.15194°n 22.17500°e, 62°6′38′′n 28°30′34′′e / 62.11056°n 28.50944°e, 60°18′27′′n 24°29′57′′e / 60.30750°n 24.49917°e, 62°50′44′′n 25°28′21′′e / 62.84556°n 25.47250°e, 66°14′n 28°30′e / 66.233°n 28.500°e, 64°33′22′′n 26°30′36′′e / 64.55611°n 26.51000°e, 60°18′54′′n 25°13′8′′e / 60.31500°n 25.21889°e |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.