question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
What is the name of the player who is Sco and moving to greenock morton in the summer? | columns:
- name: name
type: VARCHAR
- name: moving_to
type: VARCHAR
- name: nat
type: VARCHAR
- name: transfer_window
type: VARCHAR
table: table_name_83
| SELECT name FROM table_name_83 WHERE nat = "sco" AND transfer_window = "summer" AND moving_to = "greenock morton" |
Who had the placekicker position with a round above 10? | columns:
- name: name
type: VARCHAR
- name: round
type: VARCHAR
- name: position
type: VARCHAR
table: table_name_64
| SELECT name FROM table_name_64 WHERE round > 10 AND position = "placekicker" |
What is the 2-person dive that has 2 as the surface? | columns:
- name: surface
type: VARCHAR
table: table_name_86
| SELECT "2" AS _person_dive FROM table_name_86 WHERE surface = "2" |
I want the driver for Laps more than 8 and ferrari with Grid of 8 | columns:
- name: driver
type: VARCHAR
- name: grid
type: VARCHAR
- name: laps
type: VARCHAR
- name: constructor
type: VARCHAR
table: table_name_45
| SELECT driver FROM table_name_45 WHERE laps > 8 AND constructor = "ferrari" AND grid = 8 |
What is the time of Yuliya Yefimova? | columns:
- name: time
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_53
| SELECT time FROM table_name_53 WHERE name = "yuliya yefimova" |
What Week has a Result of l 17-14? | columns:
- name: week
type: INTEGER
- name: result
type: VARCHAR
table: table_name_52
| SELECT SUM(week) FROM table_name_52 WHERE result = "l 17-14" |
How many games had a record of 16-17? | columns:
- name: game
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_83
| SELECT COUNT(game) FROM table_name_83 WHERE record = "16-17" |
Which Tonnage (GRT) is the highest one that has a Date of 16 june 1940? | columns:
- name: tonnage__grt_
type: INTEGER
- name: date
type: VARCHAR
table: table_name_52
| SELECT MAX(tonnage__grt_) FROM table_name_52 WHERE date = "16 june 1940" |
What is the track that from lcd soundsystem? | columns:
- name: track
type: VARCHAR
- name: artist
type: VARCHAR
table: table_name_28
| SELECT track FROM table_name_28 WHERE artist = "lcd soundsystem" |
What season had a downhill of 35 and overall greater than 21? | columns:
- name: season
type: VARCHAR
- name: downhill
type: VARCHAR
- name: overall
type: VARCHAR
table: table_name_53
| SELECT COUNT(season) FROM table_name_53 WHERE downhill = "35" AND overall > 21 |
What are the original air dates for episodes directed by fred toye? | columns:
- name: original_air_date
type: VARCHAR
- name: directed_by
type: VARCHAR
table: table_27969432_3
| SELECT original_air_date FROM table_27969432_3 WHERE directed_by = "Fred Toye" |
Who was the outgoing manager of the team in 15th position that was sacked? | columns:
- name: outgoing_manager
type: VARCHAR
- name: manner_of_departure
type: VARCHAR
- name: position_in_table
type: VARCHAR
table: table_27374004_4
| SELECT outgoing_manager FROM table_27374004_4 WHERE manner_of_departure = "Sacked" AND position_in_table = "15th" |
What is Team 1, when Team 2 is Saint Louis? | columns:
- name: team_1
type: VARCHAR
- name: team_2
type: VARCHAR
table: table_name_84
| SELECT team_1 FROM table_name_84 WHERE team_2 = "saint louis" |
What was the total number for March with less than 8.77 in January, more than 1.69 in December, an average monthly addition less than 5.35, and before 2004? | columns:
- name: march
type: VARCHAR
- name: year
type: VARCHAR
- name: average_monthly_additions_in_millions_
type: VARCHAR
- name: january
type: VARCHAR
- name: december
type: VARCHAR
table: table_name_83
| SELECT COUNT(march) FROM table_name_83 WHERE january < 8.77 AND december > 1.69 AND average_monthly_additions_in_millions_ < 5.35 AND year < 2004 |
what tournament had sam querrey as the opponent? | columns:
- name: tournament
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_51
| SELECT tournament FROM table_name_51 WHERE opponent = "sam querrey" |
What week were there 56,023 people in attendance? | columns:
- name: week
type: VARCHAR
- name: attendance
type: VARCHAR
table: table_name_29
| SELECT COUNT(week) FROM table_name_29 WHERE attendance = 56 OFFSET 023 |
Name the least point for mv agusta and rank of 13th for wins less than 0 | columns:
- name: points
type: INTEGER
- name: wins
type: VARCHAR
- name: team
type: VARCHAR
- name: rank
type: VARCHAR
table: table_name_52
| SELECT MIN(points) FROM table_name_52 WHERE team = "mv agusta" AND rank = "13th" AND wins < 0 |
What is Score when Team is @ Kansas City-Omaha Kings? | columns:
- name: score
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_35
| SELECT score FROM table_name_35 WHERE team = "@ kansas city-omaha kings" |
Who did they lose to on may 9? | columns:
- name: loss
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_83
| SELECT loss FROM table_name_83 WHERE date = "may 9" |
What is the genre of Super Mario Galaxy? | columns:
- name: genre
type: VARCHAR
- name: game
type: VARCHAR
table: table_name_50
| SELECT genre FROM table_name_50 WHERE game = "super mario galaxy" |
What is the Other b when the FA Cup shows 3 (17)? | columns:
- name: other_b
type: VARCHAR
- name: fa_cup
type: VARCHAR
table: table_name_96
| SELECT other_b FROM table_name_96 WHERE fa_cup = "3 (17)" |
Which position had a pick of 50? | columns:
- name: position
type: VARCHAR
- name: pick
type: VARCHAR
table: table_name_35
| SELECT position FROM table_name_35 WHERE pick = 50 |
What is the largest number of gold medals for Canada with more than 7 bronze medals? | columns:
- name: gold
type: INTEGER
- name: nation
type: VARCHAR
- name: bronze
type: VARCHAR
table: table_name_31
| SELECT MAX(gold) FROM table_name_31 WHERE nation = "canada" AND bronze > 7 |
What is the total number of against when they had 14 losses and more than 0 byes? | columns:
- name: against
type: INTEGER
- name: losses
type: VARCHAR
- name: byes
type: VARCHAR
table: table_name_34
| SELECT SUM(against) FROM table_name_34 WHERE losses = 14 AND byes > 0 |
What team is in the city of Rock Island? | columns:
- name: team_name
type: VARCHAR
- name: city
type: VARCHAR
table: table_27961684_1
| SELECT team_name FROM table_27961684_1 WHERE city = "Rock Island" |
What is the average year for releases on Friday and weeks larger than 2 days? | columns:
- name: year
type: INTEGER
- name: day_in_release
type: VARCHAR
- name: day_of_week
type: VARCHAR
table: table_name_28
| SELECT AVG(year) FROM table_name_28 WHERE day_in_release = "friday" AND day_of_week > 2 |
What was the home town of Bob Geren, picked by the San Diego Padres? | columns:
- name: hometown_school
type: VARCHAR
- name: team
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_18
| SELECT hometown_school FROM table_name_18 WHERE team = "san diego padres" AND player = "bob geren" |
What is the lowest earnings of Vijay Singh who had more than 24 wins? | columns:
- name: earnings___
type: INTEGER
- name: player
type: VARCHAR
- name: wins
type: VARCHAR
table: table_name_34
| SELECT MIN(earnings___) AS $__ FROM table_name_34 WHERE player = "vijay singh" AND wins > 24 |
Which NFL team chose a position of DE when the pick was larger than 9, after round 5, and the overal was larger than 118? | columns:
- name: nfl_team
type: VARCHAR
- name: position
type: VARCHAR
- name: round
type: VARCHAR
- name: overall
type: VARCHAR
- name: pick
type: VARCHAR
table: table_name_91
| SELECT nfl_team FROM table_name_91 WHERE overall > 118 AND pick > 9 AND round > 5 AND position = "de" |
Name the team classification for stage of 6 | columns:
- name: team_classification
type: VARCHAR
- name: stage
type: VARCHAR
table: table_name_47
| SELECT team_classification FROM table_name_47 WHERE stage = "6" |
What is the time of ufc 154? | columns:
- name: time
type: VARCHAR
- name: event
type: VARCHAR
table: table_name_44
| SELECT time FROM table_name_44 WHERE event = "ufc 154" |
What is the average end year of the player from swe and a summer transfer window? | columns:
- name: ends
type: INTEGER
- name: nat
type: VARCHAR
- name: transfer_window
type: VARCHAR
table: table_name_81
| SELECT AVG(ends) FROM table_name_81 WHERE nat = "swe" AND transfer_window = "summer" |
What is Team, when Rank is greater than 2, and when Points are greater than 259? | columns:
- name: team
type: VARCHAR
- name: rank
type: VARCHAR
- name: points
type: VARCHAR
table: table_name_12
| SELECT team FROM table_name_12 WHERE rank > 2 AND points > 259 |
What was the record for July 26? | columns:
- name: record
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_16
| SELECT record FROM table_name_16 WHERE date = "july 26" |
What's the smallest draw of Warrnambool when the against was less than 1299, more than 7 wins, and less than 2 losses? | columns:
- name: draws
type: INTEGER
- name: losses
type: VARCHAR
- name: club
type: VARCHAR
- name: against
type: VARCHAR
- name: wins
type: VARCHAR
table: table_name_29
| SELECT MIN(draws) FROM table_name_29 WHERE against < 1299 AND wins > 7 AND club = "warrnambool" AND losses < 2 |
Which player plays for the college of manitoba? | columns:
- name: player
type: VARCHAR
- name: college
type: VARCHAR
table: table_name_96
| SELECT player FROM table_name_96 WHERE college = "manitoba" |
What group was sunline in when he was at moonee valley? | columns:
- name: group
type: VARCHAR
- name: venue
type: VARCHAR
table: table_2581397_2
| SELECT group FROM table_2581397_2 WHERE venue = "Moonee Valley" |
What is the lwoest round of wild bill's fight night 21 at 5:00? | columns:
- name: round
type: INTEGER
- name: time
type: VARCHAR
- name: event
type: VARCHAR
table: table_name_8
| SELECT MIN(round) FROM table_name_8 WHERE time = "5:00" AND event = "wild bill's fight night 21" |
What is the time for the race with the United States? | columns:
- name: time
type: VARCHAR
- name: country
type: VARCHAR
table: table_name_63
| SELECT time FROM table_name_63 WHERE country = "united states" |
Which Enrollment has a Mascot of norsemen? | columns:
- name: enrollment
type: INTEGER
- name: mascot
type: VARCHAR
table: table_name_5
| SELECT SUM(enrollment) FROM table_name_5 WHERE mascot = "norsemen" |
What country has a total larger than 293, and a to par less than 17? | columns:
- name: country
type: VARCHAR
- name: total
type: VARCHAR
- name: to_par
type: VARCHAR
table: table_name_79
| SELECT country FROM table_name_79 WHERE total > 293 AND to_par < 17 |
What is the score of team chicago? | columns:
- name: score
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_64
| SELECT score FROM table_name_64 WHERE team = "chicago" |
How many different titles does the episode originally aired on September 27, 1984 have? | columns:
- name: title
type: VARCHAR
- name: original_air_date
type: VARCHAR
table: table_2818164_2
| SELECT COUNT(title) FROM table_2818164_2 WHERE original_air_date = "September 27, 1984" |
Which average money has a Place of t10, and a Player of denny shute, and a To par larger than 12? | columns:
- name: money___
type: INTEGER
- name: to_par
type: VARCHAR
- name: place
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_76
| SELECT AVG(money___) AS $__ FROM table_name_76 WHERE place = "t10" AND player = "denny shute" AND to_par > 12 |
What mobile markets have cvt hd? | columns:
- name: cvt_hd
type: VARCHAR
- name: market
type: VARCHAR
table: table_25839957_5
| SELECT cvt_hd FROM table_25839957_5 WHERE market = "Mobile" |
Which Draw is the lowest one that has Champs smaller than 0? | columns:
- name: draw
type: INTEGER
- name: champs
type: INTEGER
table: table_name_40
| SELECT MIN(draw) FROM table_name_40 WHERE champs < 0 |
Who was the opponent at the game with a score of 42-28 after week 4? | columns:
- name: opponent
type: VARCHAR
- name: week
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_91
| SELECT opponent FROM table_name_91 WHERE week > 4 AND score = "42-28" |
What is the name of the member with a costume Role of monster? | columns:
- name: name
type: VARCHAR
- name: costume_role
type: VARCHAR
table: table_name_9
| SELECT name FROM table_name_9 WHERE costume_role = "monster" |
What's the original NFL team when the POS is S and college is Georgia Tech? | columns:
- name: original_nfl_team
type: VARCHAR
- name: pos
type: VARCHAR
- name: college
type: VARCHAR
table: table_name_31
| SELECT original_nfl_team FROM table_name_31 WHERE pos = "s" AND college = "georgia tech" |
What is the mean number of against when the position is less than 1? | columns:
- name: against
type: INTEGER
- name: position
type: INTEGER
table: table_name_92
| SELECT AVG(against) FROM table_name_92 WHERE position < 1 |
What was the Outcome of the game with a Score of 3–6, 4–6? | columns:
- name: outcome
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_67
| SELECT outcome FROM table_name_67 WHERE score = "3–6, 4–6" |
Which Loss has a Score of 6–5? | columns:
- name: loss
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_20
| SELECT loss FROM table_name_20 WHERE score = "6–5" |
What weight has one rupee as the denomination? | columns:
- name: weight
type: VARCHAR
- name: denomination
type: VARCHAR
table: table_name_88
| SELECT weight FROM table_name_88 WHERE denomination = "one rupee" |
What is the male incarceration rate of maule? | columns:
- name: incarceration_rate_male
type: INTEGER
- name: region
type: VARCHAR
table: table_25042332_31
| SELECT MAX(incarceration_rate_male) FROM table_25042332_31 WHERE region = "Maule" |
How many races were there when Sigachev had 38 points? | columns:
- name: races
type: INTEGER
- name: points
type: VARCHAR
table: table_25421463_1
| SELECT MIN(races) FROM table_25421463_1 WHERE points = "38" |
What is the sum of the games before January 19 with a 27-6-6 record? | columns:
- name: game
type: INTEGER
- name: january
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_11
| SELECT SUM(game) FROM table_name_11 WHERE january < 19 AND record = "27-6-6" |
Which FA Cup has a Total smaller than 1? | columns:
- name: fa_cup
type: INTEGER
- name: total
type: INTEGER
table: table_name_24
| SELECT AVG(fa_cup) FROM table_name_24 WHERE total < 1 |
Which province includes Axel Heiberg Island? | columns:
- name: province
type: VARCHAR
- name: mountain_range
type: VARCHAR
table: table_name_25
| SELECT province FROM table_name_25 WHERE mountain_range = "axel heiberg island" |
Name the written by for 16.32 million viewers | columns:
- name: written_by
type: VARCHAR
- name: us_viewers__millions_
type: VARCHAR
table: table_14845640_1
| SELECT written_by FROM table_14845640_1 WHERE us_viewers__millions_ = "16.32" |
What is the earliest quarterfinal week when the genre is dancing and the act is 32? | columns:
- name: qtr_final__week_
type: INTEGER
- name: genre
type: VARCHAR
- name: age_s_
type: VARCHAR
table: table_27529608_21
| SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE genre = "Dancing" AND age_s_ = "32" |
Who was dissolved that was elected in 1553? | columns:
- name: dissolved
type: VARCHAR
- name: elected
type: VARCHAR
table: table_name_95
| SELECT dissolved FROM table_name_95 WHERE elected = "1553" |
What is the attendance in a week earlier than 4, and result is w 31-20? | columns:
- name: attendance
type: INTEGER
- name: week
type: VARCHAR
- name: result
type: VARCHAR
table: table_name_5
| SELECT AVG(attendance) FROM table_name_5 WHERE week < 4 AND result = "w 31-20" |
How many picks played Tight end? | columns:
- name: pick__number
type: VARCHAR
- name: position
type: VARCHAR
table: table_14650162_1
| SELECT COUNT(pick__number) FROM table_14650162_1 WHERE position = "Tight End" |
What is the pick number for tulane university? | columns:
- name: pick
type: INTEGER
- name: school
type: VARCHAR
table: table_name_23
| SELECT SUM(pick) FROM table_name_23 WHERE school = "tulane university" |
Name the 2007 for 2005 of a and 003 of a with 2009 of sf | columns:
- name: Id
type: VARCHAR
table: table_name_17
| SELECT 2007 FROM table_name_17 WHERE 2005 = "a" AND 2003 = "a" AND 2009 = "sf" |
When mount gauttier is the peak what is the highest prominence in meters? | columns:
- name: prominence__m_
type: INTEGER
- name: peak
type: VARCHAR
table: table_18946749_1
| SELECT MAX(prominence__m_) FROM table_18946749_1 WHERE peak = "Mount Gauttier" |
On which date was the opponent lamine ouahab? | columns:
- name: date
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_92
| SELECT date FROM table_name_92 WHERE opponent = "lamine ouahab" |
On what Date were the Results¹ 4:0? | columns:
- name: date
type: VARCHAR
- name: "results\xB9"
type: VARCHAR
table: table_name_56
| SELECT date FROM table_name_56 WHERE results¹ = "4:0" |
When the second intermediate period of egypt is the ubaid period in mesopotamia how many early calcolithics are there? | columns:
- name: early_chalcolithic
type: VARCHAR
- name: ubaid_period_in_mesopotamia
type: VARCHAR
table: table_23537091_1
| SELECT COUNT(early_chalcolithic) FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = "Second Intermediate Period of Egypt" |
How many tries against were there with points of 150? | columns:
- name: tries_against
type: VARCHAR
- name: points_for
type: VARCHAR
table: table_17941032_2
| SELECT tries_against FROM table_17941032_2 WHERE points_for = "150" |
What is Constellation, when HD Designation is "HD197076"? | columns:
- name: constellation
type: VARCHAR
- name: hd_designation
type: VARCHAR
table: table_name_82
| SELECT constellation FROM table_name_82 WHERE hd_designation = "hd197076" |
When 21' 05.83 107.304mph is Wednesday August 25th what is Friday August 27th? | columns:
- name: fri_27_aug
type: VARCHAR
- name: wed_25_aug
type: VARCHAR
table: table_26986076_5
| SELECT fri_27_aug FROM table_26986076_5 WHERE wed_25_aug = "21' 05.83 107.304mph" |
What is the score of the game on January 18? | columns:
- name: score
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_85
| SELECT score FROM table_name_85 WHERE date = "january 18" |
what is the title for director p.j. hogan? | columns:
- name: title
type: VARCHAR
- name: director
type: VARCHAR
table: table_name_15
| SELECT title FROM table_name_15 WHERE director = "p.j. hogan" |
What day is the grand prix de trois-rivières? | columns:
- name: date
type: VARCHAR
- name: race_title
type: VARCHAR
table: table_name_30
| SELECT date FROM table_name_30 WHERE race_title = "grand prix de trois-rivières" |
What is the total of the first elected year of the incumbent from the washington 8 district? | columns:
- name: first_elected
type: VARCHAR
- name: district
type: VARCHAR
table: table_name_91
| SELECT COUNT(first_elected) FROM table_name_91 WHERE district = "washington 8" |
What was the result of the game held at the As-Salt venue? | columns:
- name: result
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_28
| SELECT result FROM table_name_28 WHERE venue = "as-salt" |
What is the earliest game played at the TD Waterhouse Centre? | columns:
- name: game
type: INTEGER
- name: location
type: VARCHAR
table: table_name_99
| SELECT MIN(game) FROM table_name_99 WHERE location = "td waterhouse centre" |
Which Quarterfinal has a Rank larger than 9? | columns:
- name: quarterfinal
type: VARCHAR
- name: rank
type: INTEGER
table: table_name_28
| SELECT quarterfinal FROM table_name_28 WHERE rank > 9 |
Which team hosted the Kansas City Chiefs? | columns:
- name: host_team
type: VARCHAR
- name: visiting_team
type: VARCHAR
table: table_name_53
| SELECT host_team FROM table_name_53 WHERE visiting_team = "kansas city chiefs" |
COunt the average Enrollment in hope? | columns:
- name: enrollment
type: INTEGER
- name: location
type: VARCHAR
table: table_name_32
| SELECT AVG(enrollment) FROM table_name_32 WHERE location = "hope" |
Which Physical property has a Helium of 0.0693? | columns:
- name: physical_property
type: VARCHAR
- name: helium
type: VARCHAR
table: table_name_13
| SELECT physical_property FROM table_name_13 WHERE helium = "0.0693" |
Name the date with works number less than 1673 and number less than 3 | columns:
- name: date
type: VARCHAR
- name: works_number
type: VARCHAR
- name: number
type: VARCHAR
table: table_name_42
| SELECT date FROM table_name_42 WHERE works_number < 1673 AND number < 3 |
What is Ballymurphy North's civil parish? | columns:
- name: civil_parish
type: VARCHAR
- name: townland
type: VARCHAR
table: table_30120633_1
| SELECT civil_parish FROM table_30120633_1 WHERE townland = "Ballymurphy North" |
What is the score for the tie number 15? | columns:
- name: score
type: VARCHAR
- name: tie_no
type: VARCHAR
table: table_name_13
| SELECT score FROM table_name_13 WHERE tie_no = "15" |
What is the lowest number of events a tournament with more than 1 top-10 and more than 0 wins has? | columns:
- name: events
type: INTEGER
- name: top_10
type: VARCHAR
- name: wins
type: VARCHAR
table: table_name_77
| SELECT MIN(events) FROM table_name_77 WHERE top_10 > 1 AND wins > 0 |
Which Week has an Attendance of 20,112? | columns:
- name: week
type: INTEGER
- name: attendance
type: VARCHAR
table: table_name_91
| SELECT MAX(week) FROM table_name_91 WHERE attendance = 20 OFFSET 112 |
Who's the owner of Sanam Pao as the broadcasting area? | columns:
- name: owner
type: VARCHAR
- name: broadcasting_area
type: VARCHAR
table: table_name_33
| SELECT owner FROM table_name_33 WHERE broadcasting_area = "sanam pao" |
What is the most silver won by Norway? | columns:
- name: silver
type: INTEGER
- name: nation
type: VARCHAR
table: table_name_76
| SELECT MAX(silver) FROM table_name_76 WHERE nation = "norway" |
What was the yield of the K-4 explosion? | columns:
- name: yield__approximate_
type: VARCHAR
- name: explosion
type: VARCHAR
table: table_148578_1
| SELECT yield__approximate_ FROM table_148578_1 WHERE explosion = "K-4" |
What was the total fertility rate that had a death rate larger than 7.8? | columns:
- name: total_fertility_rate
type: VARCHAR
- name: deaths
type: INTEGER
table: table_name_60
| SELECT total_fertility_rate FROM table_name_60 WHERE deaths > 7.8 |
What was the crowd size at Arden Street Oval? | columns:
- name: crowd
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_51
| SELECT crowd FROM table_name_51 WHERE venue = "arden street oval" |
How many sales had a peak position of 1 and a certification of 6x platinum? | columns:
- name: sales
type: VARCHAR
- name: peak_position
type: VARCHAR
- name: certification
type: VARCHAR
table: table_name_31
| SELECT COUNT(sales) FROM table_name_31 WHERE peak_position = 1 AND certification = "6x platinum" |
What was the largest number of people in attendance of the game with a W 14-3 result after week 10? | columns:
- name: attendance
type: INTEGER
- name: result
type: VARCHAR
- name: week
type: VARCHAR
table: table_name_10
| SELECT MAX(attendance) FROM table_name_10 WHERE result = "w 14-3" AND week > 10 |
What are the number of storms where fog is lower than 74, and sunshine is 2 668? | columns:
- name: storms__days_year_
type: VARCHAR
- name: fog__days_year_
type: VARCHAR
- name: sunshine__hrs_year_
type: VARCHAR
table: table_name_74
| SELECT COUNT(storms__days_year_) FROM table_name_74 WHERE fog__days_year_ < 74 AND sunshine__hrs_year_ = "2 668" |
What is the total amount of points that Christy has in the years before 1954? | columns:
- name: points
type: INTEGER
- name: entrant
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_59
| SELECT SUM(points) FROM table_name_59 WHERE entrant = "christy" AND year < 1954 |
In the games at corio oval, what was the highest crowd? | columns:
- name: crowd
type: INTEGER
- name: venue
type: VARCHAR
table: table_name_62
| SELECT MAX(crowd) FROM table_name_62 WHERE venue = "corio oval" |
What is Time, when Ground is Waverley Park, and when Away Team is Footscray? | columns:
- name: time
type: VARCHAR
- name: ground
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_69
| SELECT time FROM table_name_69 WHERE ground = "waverley park" AND away_team = "footscray" |
Who was the opponent for the game with a score of w 94–88 (ot)? | columns:
- name: team
type: VARCHAR
- name: score
type: VARCHAR
table: table_27713030_11
| SELECT team FROM table_27713030_11 WHERE score = "W 94–88 (OT)" |
Which Team has a round 1 CONMEBOL 1995? | columns:
- name: team
type: VARCHAR
- name: conmebol_1995
type: VARCHAR
table: table_name_28
| SELECT team FROM table_name_28 WHERE conmebol_1995 = "round 1" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.