question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
What is the lowest Polish Cup, when Position is "Midfielder", when Player is "Miroslav Radović", and when Ekstraklasa is less than 1? | columns:
- name: polish_cup
type: INTEGER
- name: ekstraklasa
type: VARCHAR
- name: position
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_47
| SELECT MIN(polish_cup) FROM table_name_47 WHERE position = "midfielder" AND player = "miroslav radović" AND ekstraklasa < 1 |
When was the earliest game date in March where the match ended with a record of 25-29-10? | columns:
- name: march
type: INTEGER
- name: record
type: VARCHAR
table: table_name_32
| SELECT MIN(march) FROM table_name_32 WHERE record = "25-29-10" |
What is Second Vice President, when Third Vice President is "Gen. Juan Alonso", and when Inaugurated is "15 March 1940"? | columns:
- name: second_vice_president
type: VARCHAR
- name: third_vice_president
type: VARCHAR
- name: inaugurated
type: VARCHAR
table: table_name_74
| SELECT second_vice_president FROM table_name_74 WHERE third_vice_president = "gen. juan alonso" AND inaugurated = "15 march 1940" |
What was the largest founded year for schools having enrollment of exactly 696? | columns:
- name: founded
type: INTEGER
- name: enrollment
type: VARCHAR
table: table_2076608_1
| SELECT MAX(founded) FROM table_2076608_1 WHERE enrollment = "696" |
What is the event where there are 10 score points? | columns:
- name: event
type: VARCHAR
- name: score_points
type: VARCHAR
table: table_name_10
| SELECT event FROM table_name_10 WHERE score_points = "10" |
What is the number of runner-up results for the years (won in bold) 1984, 2010? | columns:
- name: _number_runner_up
type: INTEGER
- name: years__won_in_bold_
type: VARCHAR
table: table_1463332_2
| SELECT MAX(_number_runner_up) FROM table_1463332_2 WHERE years__won_in_bold_ = "1984, 2010" |
When Bob Dole had 26%, and Pete du Pont had 0%, what did Pat Robertson have? | columns:
- name: pat_robertson
type: VARCHAR
- name: bob_dole
type: VARCHAR
- name: pete_du_pont
type: VARCHAR
table: table_name_43
| SELECT pat_robertson FROM table_name_43 WHERE bob_dole = "26%" AND pete_du_pont = "0%" |
What is Tournament, when 2006 is "A", and when 2009 is "A"? | columns:
- name: tournament
type: VARCHAR
table: table_name_93
| SELECT tournament FROM table_name_93 WHERE 2006 = "a" AND 2009 = "a" |
How did Hamza Kramou fare in the semifinals? | columns:
- name: semifinals
type: VARCHAR
- name: athlete
type: VARCHAR
table: table_17427004_7
| SELECT semifinals FROM table_17427004_7 WHERE athlete = "Hamza Kramou" |
Name the result for first elected of 1920 | columns:
- name: result
type: VARCHAR
- name: first_elected
type: VARCHAR
table: table_1342149_24
| SELECT result FROM table_1342149_24 WHERE first_elected = 1920 |
Which Reason for termination has Appointed by of eisenhower category:articles with hcards? | columns:
- name: reason_for_termination
type: VARCHAR
- name: appointed_by
type: VARCHAR
table: table_name_14
| SELECT reason_for_termination FROM table_name_14 WHERE appointed_by = "eisenhower category:articles with hcards" |
When is the winner olympiacos, the venue is georgios karaiskakis stadium and the runner-up is iraklis? | columns:
- name: year
type: VARCHAR
- name: runner_up
type: VARCHAR
- name: winner
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_12
| SELECT year FROM table_name_12 WHERE winner = "olympiacos" AND venue = "georgios karaiskakis stadium" AND runner_up = "iraklis" |
Name the fourth district for beverly bodem | columns:
- name: fourth_district
type: VARCHAR
- name: first_district
type: VARCHAR
table: table_15442974_1
| SELECT fourth_district FROM table_15442974_1 WHERE first_district = "Beverly Bodem" |
What year was the downy woodpecker coin created? | columns:
- name: year
type: INTEGER
- name: animal
type: VARCHAR
table: table_name_46
| SELECT SUM(year) FROM table_name_46 WHERE animal = "downy woodpecker" |
What was the date of the game attended by 45,122? | columns:
- name: date
type: VARCHAR
- name: attendance
type: VARCHAR
table: table_name_39
| SELECT date FROM table_name_39 WHERE attendance = "45,122" |
What is the release date of the mm series which has the title confederate honey? | columns:
- name: release_date
type: VARCHAR
- name: series
type: VARCHAR
- name: title
type: VARCHAR
table: table_name_92
| SELECT release_date FROM table_name_92 WHERE series = "mm" AND title = "confederate honey" |
How many games were recorded when the team was @ Memphis? | columns:
- name: game
type: VARCHAR
- name: team
type: VARCHAR
table: table_17326036_6
| SELECT COUNT(game) FROM table_17326036_6 WHERE team = "@ Memphis" |
How high is Macedonia's highest point? | columns:
- name: height__ft_
type: VARCHAR
- name: country
type: VARCHAR
table: table_name_53
| SELECT height__ft_ FROM table_name_53 WHERE country = "macedonia" |
What are that status(es) of saint-jacques? | columns:
- name: status
type: VARCHAR
- name: official_name
type: VARCHAR
table: table_171250_2
| SELECT status FROM table_171250_2 WHERE official_name = "Saint-Jacques" |
Which church was built in 1600? | columns:
- name: church_name
type: VARCHAR
- name: year_built
type: VARCHAR
table: table_name_38
| SELECT church_name FROM table_name_38 WHERE year_built = 1600 |
Who owned the team Jeremy Mayfield raced for? | columns:
- name: listed_owner_s_
type: VARCHAR
- name: driver_s_
type: VARCHAR
table: table_1529793_1
| SELECT listed_owner_s_ FROM table_1529793_1 WHERE driver_s_ = "Jeremy Mayfield" |
What is the month and year less than 106005 were sunk by aircraft and 61857 were sunk by warship or raider? | columns:
- name: month
type: VARCHAR
- name: _year
type: VARCHAR
- name: sunk_by_aircraft
type: VARCHAR
- name: sunk_by_warship_or_raider
type: VARCHAR
table: table_name_73
| SELECT month, _year FROM table_name_73 WHERE sunk_by_aircraft < 106005 AND sunk_by_warship_or_raider = 61857 |
What is the year for the United Arab Emirates? | columns:
- name: year
type: VARCHAR
- name: country
type: VARCHAR
table: table_name_19
| SELECT COUNT(year) FROM table_name_19 WHERE country = "united arab emirates" |
What day in November has the game less than 12? | columns:
- name: november
type: VARCHAR
- name: game
type: INTEGER
table: table_name_55
| SELECT november FROM table_name_55 WHERE game < 12 |
Where was the player from se missouri state drafted? | columns:
- name: pick__number
type: VARCHAR
- name: school
type: VARCHAR
table: table_24540893_6
| SELECT COUNT(pick__number) FROM table_24540893_6 WHERE school = "SE Missouri State" |
What is the lowest Place, when Points are greater than 2? | columns:
- name: place
type: INTEGER
- name: points
type: INTEGER
table: table_name_17
| SELECT MIN(place) FROM table_name_17 WHERE points > 2 |
What is the longest Time (seconds), when the Nation - athlete(s) is Sylke Otto - Germany? | columns:
- name: time__seconds_
type: INTEGER
- name: nation___athlete_s_
type: VARCHAR
table: table_name_99
| SELECT MAX(time__seconds_) FROM table_name_99 WHERE nation___athlete_s_ = "sylke otto - germany" |
What are the years of TeBe career for the players whose league matches are exactly 163? | columns:
- name: tebe_career
type: VARCHAR
- name: league_matches
type: VARCHAR
table: table_28730459_3
| SELECT tebe_career FROM table_28730459_3 WHERE league_matches = 163 |
What is the average drop zone time in the N drop zone for the 1st Pathfinder Prov.? | columns:
- name: drop_zone
type: INTEGER
- name: troop_carrier_group
type: VARCHAR
table: table_name_22
| SELECT AVG(drop_zone) AS Time FROM table_name_22 WHERE drop_zone = "n" AND troop_carrier_group = "1st pathfinder prov." |
What is John Flatters' nationality? | columns:
- name: nationality
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_10
| SELECT nationality FROM table_name_10 WHERE player = "john flatters" |
What was the smallest crowd size for away team st kilda? | columns:
- name: crowd
type: INTEGER
- name: away_team
type: VARCHAR
table: table_name_25
| SELECT MIN(crowd) FROM table_name_25 WHERE away_team = "st kilda" |
What is the Total of the Player with a To par of 6 and Year won after 1993? | columns:
- name: total
type: INTEGER
- name: year_won
type: VARCHAR
- name: to_par
type: VARCHAR
table: table_name_87
| SELECT MIN(total) FROM table_name_87 WHERE year_won > 1993 AND to_par = 6 |
Which Lead has a Third of jeanne ellegaard? | columns:
- name: lead
type: VARCHAR
- name: third
type: VARCHAR
table: table_name_56
| SELECT lead FROM table_name_56 WHERE third = "jeanne ellegaard" |
What is the adjusted GDP when the nominal GDP per capita is 2874? | columns:
- name: gdp_adjusted__$_billions_
type: VARCHAR
- name: gdp_per_capita_nominal__$_
type: VARCHAR
table: table_1610496_3
| SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE gdp_per_capita_nominal__$_ = 2874 |
Name the episode for jenny bicks and cindy chupack nominees in 2004 | columns:
- name: episode
type: VARCHAR
- name: year
type: VARCHAR
- name: nominee_s_
type: VARCHAR
table: table_name_16
| SELECT episode FROM table_name_16 WHERE year = 2004 AND nominee_s_ = "jenny bicks and cindy chupack" |
Who scored 67-73-70=210? | columns:
- name: player
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_93
| SELECT player FROM table_name_93 WHERE score = 67 - 73 - 70 = 210 |
What is the highest opening week net gross of the movie ranked higher than 5 from Reliance Entertainment? | columns:
- name: opening_week_nett_gross
type: INTEGER
- name: rank
type: VARCHAR
- name: studio_s_
type: VARCHAR
table: table_name_42
| SELECT MAX(opening_week_nett_gross) FROM table_name_42 WHERE rank < 5 AND studio_s_ = "reliance entertainment" |
What date was the Home team fitzroy? | columns:
- name: date
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_18
| SELECT date FROM table_name_18 WHERE home_team = "fitzroy" |
How many golds have a bronze greater than 1, a silver greater than 1, with total as the rank? | columns:
- name: gold
type: VARCHAR
- name: rank
type: VARCHAR
- name: bronze
type: VARCHAR
- name: silver
type: VARCHAR
table: table_name_61
| SELECT COUNT(gold) FROM table_name_61 WHERE bronze > 1 AND silver > 1 AND rank = "total" |
What was the score of the game with a record of 18-22-13? | columns:
- name: score
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_18
| SELECT score FROM table_name_18 WHERE record = "18-22-13" |
Which City has mandalay bay resort | columns:
- name: city
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_29
| SELECT city FROM table_name_29 WHERE venue = "mandalay bay resort" |
What happened in week 14 when week 11's result was Michigan (7-2)? | columns:
- name: week_14_dec_3
type: VARCHAR
- name: week_11_nov_12
type: VARCHAR
table: table_name_17
| SELECT week_14_dec_3 FROM table_name_17 WHERE week_11_nov_12 = "michigan (7-2)" |
How many goals are associated with 75 games? | columns:
- name: goals
type: INTEGER
- name: games
type: VARCHAR
table: table_name_51
| SELECT MAX(goals) FROM table_name_51 WHERE games = 75 |
What is the current tournament name for the event in Tampa? | columns:
- name: also_currently_known_as
type: VARCHAR
- name: tournament
type: VARCHAR
table: table_20630462_1
| SELECT also_currently_known_as FROM table_20630462_1 WHERE tournament = "Tampa" |
What is the match report from the game played on 28 february 2009? | columns:
- name: match_report
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_23
| SELECT match_report FROM table_name_23 WHERE date = "28 february 2009" |
what is the minimum pos with clubs being 16 | columns:
- name: pos
type: INTEGER
- name: clubs
type: VARCHAR
table: table_14460937_2
| SELECT MIN(pos) FROM table_14460937_2 WHERE clubs = "16" |
What Position has a Level of tier 4 with a Season smaller than 2003? | columns:
- name: position
type: VARCHAR
- name: level
type: VARCHAR
- name: season
type: VARCHAR
table: table_name_85
| SELECT position FROM table_name_85 WHERE level = "tier 4" AND season < 2003 |
What is the average number played that has fewer than 11 wins, more than 42 goals, more than 22 points, and 11 losses? | columns:
- name: played
type: INTEGER
- name: losses
type: VARCHAR
- name: points
type: VARCHAR
- name: wins
type: VARCHAR
- name: goals_for
type: VARCHAR
table: table_name_91
| SELECT AVG(played) FROM table_name_91 WHERE wins < 11 AND goals_for > 42 AND points > 22 AND losses = 11 |
Who is the general classification leader for stage 3? | columns:
- name: general_classification
type: VARCHAR
- name: stage
type: VARCHAR
table: table_14710984_2
| SELECT general_classification FROM table_14710984_2 WHERE stage = 3 |
When the Flap is less than 15 and the podium is larger than 11, what is the pole? | columns:
- name: pole
type: VARCHAR
- name: flap
type: VARCHAR
- name: podium
type: VARCHAR
table: table_name_95
| SELECT pole FROM table_name_95 WHERE flap < 15 AND podium > 11 |
What was the average Chorley for the Labour party that had a Rossendale greater than 0 and a Pendle less than 1? | columns:
- name: chorley
type: INTEGER
- name: pendle
type: VARCHAR
- name: rossendale
type: VARCHAR
- name: party
type: VARCHAR
table: table_name_96
| SELECT AVG(chorley) FROM table_name_96 WHERE rossendale > 0 AND party = "labour" AND pendle < 1 |
What was the date for renato ferreira? | columns:
- name: date
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_9
| SELECT date FROM table_name_9 WHERE opponent = "renato ferreira" |
I want to know the condition with Prothrombin time of unaffected and bleeding time of prolonged with partial thromboplastin time of unaffected with platelet count of decreased or unaffected | columns:
- name: condition
type: VARCHAR
- name: platelet_count
type: VARCHAR
- name: partial_thromboplastin_time
type: VARCHAR
- name: prothrombin_time
type: VARCHAR
- name: bleeding_time
type: VARCHAR
table: table_name_75
| SELECT condition FROM table_name_75 WHERE prothrombin_time = "unaffected" AND bleeding_time = "prolonged" AND partial_thromboplastin_time = "unaffected" AND platelet_count = "decreased or unaffected" |
What reverse has a color of green? | columns:
- name: reverse
type: VARCHAR
- name: color
type: VARCHAR
table: table_name_33
| SELECT reverse FROM table_name_33 WHERE color = "green" |
In what venue was the away team South Melbourne? | columns:
- name: venue
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_62
| SELECT venue FROM table_name_62 WHERE away_team = "south melbourne" |
How many years were there albums by heat wave? | columns:
- name: year
type: INTEGER
- name: from_album
type: VARCHAR
table: table_name_84
| SELECT SUM(year) FROM table_name_84 WHERE from_album = "heat wave" |
What was the date when the home team was Dallas? | columns:
- name: date
type: VARCHAR
- name: home
type: VARCHAR
table: table_name_28
| SELECT date FROM table_name_28 WHERE home = "dallas" |
What was the low number of draws for Levante Ud when their goal difference was smaller than 6? | columns:
- name: draws
type: INTEGER
- name: club
type: VARCHAR
- name: goal_difference
type: VARCHAR
table: table_name_14
| SELECT MIN(draws) FROM table_name_14 WHERE club = "levante ud" AND goal_difference < 6 |
What shows for 2nd round when the team 1 was Rc Strasbourg (d1)? | columns:
- name: team_1
type: VARCHAR
table: table_name_63
| SELECT 2 AS nd_round FROM table_name_63 WHERE team_1 = "rc strasbourg (d1)" |
What is the signal power for JOAB-DTV? | columns:
- name: signal_power
type: VARCHAR
- name: callsign
type: VARCHAR
table: table_2638104_1
| SELECT signal_power FROM table_2638104_1 WHERE callsign = "JOAB-DTV" |
When Oscar Míguez had over 107 goals, what was the lowest he ranked? | columns:
- name: rank
type: INTEGER
- name: name
type: VARCHAR
- name: goals
type: VARCHAR
table: table_name_21
| SELECT MIN(rank) FROM table_name_21 WHERE name = "oscar míguez" AND goals > 107 |
From what series is Peck Up Your Troubles? | columns:
- name: series
type: VARCHAR
- name: title
type: VARCHAR
table: table_name_66
| SELECT series FROM table_name_66 WHERE title = "peck up your troubles" |
Which Position has a Nationality of canada, and a Player of pat janostin? | columns:
- name: position
type: VARCHAR
- name: nationality
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_81
| SELECT position FROM table_name_81 WHERE nationality = "canada" AND player = "pat janostin" |
What is the lowest game number that has a Record of 3–33? | columns:
- name: game
type: INTEGER
- name: record
type: VARCHAR
table: table_name_93
| SELECT MIN(game) FROM table_name_93 WHERE record = "3–33" |
Which is the highest bronze with gold less than 0? | columns:
- name: bronze
type: INTEGER
- name: gold
type: INTEGER
table: table_name_17
| SELECT MAX(bronze) FROM table_name_17 WHERE gold < 0 |
What clubs had 608 points against? | columns:
- name: club
type: VARCHAR
- name: points_against
type: VARCHAR
table: table_1676073_12
| SELECT club FROM table_1676073_12 WHERE points_against = "608" |
Name the Surface that of Tournament of valencia , spain? | columns:
- name: surface
type: VARCHAR
- name: tournament
type: VARCHAR
table: table_name_92
| SELECT surface FROM table_name_92 WHERE tournament = "valencia , spain" |
What is the sum of the run 1 of athlete matthias guggenberger, who has a run 2 greater than 55.24? | columns:
- name: run_1
type: INTEGER
- name: run_2
type: VARCHAR
- name: athlete
type: VARCHAR
table: table_name_40
| SELECT SUM(run_1) FROM table_name_40 WHERE run_2 > 55.24 AND athlete = "matthias guggenberger" |
What was the score when the team played at the bobcats? | columns:
- name: score
type: VARCHAR
- name: home
type: VARCHAR
table: table_name_92
| SELECT score FROM table_name_92 WHERE home = "bobcats" |
When 22 is the tries for what is the lost? | columns:
- name: lost
type: VARCHAR
- name: tries_for
type: VARCHAR
table: table_17941032_1
| SELECT lost FROM table_17941032_1 WHERE tries_for = "22" |
Which attendance has 9 as the tie no.? | columns:
- name: attendance
type: VARCHAR
- name: tie_no
type: VARCHAR
table: table_name_43
| SELECT attendance FROM table_name_43 WHERE tie_no = 9 |
How many years as tallest building was Independence Hall? | columns:
- name: years_as_tallest
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_6
| SELECT years_as_tallest FROM table_name_6 WHERE name = "independence hall" |
Name the venue when the away team was richmond | columns:
- name: venue
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_6
| SELECT venue FROM table_name_6 WHERE away_team = "richmond" |
What is the name of the player if the innings is 82? | columns:
- name: player
type: VARCHAR
- name: innings
type: VARCHAR
table: table_23316034_16
| SELECT player FROM table_23316034_16 WHERE innings = 82 |
What was the away team score at kardinia park? | columns:
- name: away_team
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_40
| SELECT away_team AS score FROM table_name_40 WHERE venue = "kardinia park" |
What is every conformity to original design if registration is HB-DAI? | columns:
- name: conformity_to_original_design
type: VARCHAR
- name: registration
type: VARCHAR
table: table_22180353_1
| SELECT conformity_to_original_design FROM table_22180353_1 WHERE registration = "HB-DAI" |
Which position had 5 games played and a record of 1-2-2? | columns:
- name: position
type: VARCHAR
- name: games_played
type: VARCHAR
- name: w_l_d
type: VARCHAR
table: table_name_63
| SELECT position FROM table_name_63 WHERE games_played = 5 AND w_l_d = "1-2-2" |
Name the team for december 18 | columns:
- name: team
type: VARCHAR
- name: date
type: VARCHAR
table: table_27712180_7
| SELECT team FROM table_27712180_7 WHERE date = "December 18" |
What song was written after 1976 and directed by Rahul Dev Burman? | columns:
- name: song
type: VARCHAR
- name: year
type: VARCHAR
- name: music_director_s_
type: VARCHAR
table: table_name_23
| SELECT song FROM table_name_23 WHERE year > 1976 AND music_director_s_ = "rahul dev burman" |
Who's the shooter with a total of 25? | columns:
- name: shooter
type: VARCHAR
- name: total
type: VARCHAR
table: table_name_57
| SELECT shooter FROM table_name_57 WHERE total = "25" |
What is the highest round of a player from Sweden who plays right wing? | columns:
- name: round
type: INTEGER
- name: nationality
type: VARCHAR
- name: position
type: VARCHAR
table: table_name_59
| SELECT MAX(round) FROM table_name_59 WHERE nationality = "sweden" AND position = "right wing" |
Which venue hosted South Melbourne? | columns:
- name: venue
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_50
| SELECT venue FROM table_name_50 WHERE away_team = "south melbourne" |
Who won Funny Car when Jim Yates won Pro Stock, in years after 1996? | columns:
- name: funny_car
type: VARCHAR
- name: pro_stock
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_57
| SELECT funny_car FROM table_name_57 WHERE pro_stock = "jim yates" AND year > 1996 |
Which event had Edson Claas Vieira as an opponent? | columns:
- name: event
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_55
| SELECT event FROM table_name_55 WHERE opponent = "edson claas vieira" |
What beer won a silver medal at the camra reading branch beer festival in 2008? | columns:
- name: beer_name
type: VARCHAR
- name: year
type: VARCHAR
- name: prize
type: VARCHAR
- name: competition
type: VARCHAR
table: table_name_33
| SELECT beer_name FROM table_name_33 WHERE prize = "silver medal" AND competition = "camra reading branch beer festival" AND year = 2008 |
Who was the visitor at 5:00 pm? | columns:
- name: visitor
type: VARCHAR
- name: time
type: VARCHAR
table: table_name_42
| SELECT visitor FROM table_name_42 WHERE time = "5:00 pm" |
yes or no for the sydney with yes for melbourne, no for perth, no for auckland and no for gold coast? | columns:
- name: sydney
type: VARCHAR
- name: gold_coast
type: VARCHAR
- name: auckland
type: VARCHAR
- name: melbourne
type: VARCHAR
- name: perth
type: VARCHAR
table: table_name_43
| SELECT sydney FROM table_name_43 WHERE melbourne = "yes" AND perth = "no" AND auckland = "no" AND gold_coast = "no" |
Who had the most rebounds in the game against the team with a 5-2 record against the Hawks? | columns:
- name: high_rebounds
type: VARCHAR
- name: record
type: VARCHAR
table: table_23248910_5
| SELECT high_rebounds FROM table_23248910_5 WHERE record = "5-2" |
What is the average number of points for places over 7 and having a draw order of 4? | columns:
- name: points
type: INTEGER
- name: place
type: VARCHAR
- name: draw
type: VARCHAR
table: table_name_49
| SELECT AVG(points) FROM table_name_49 WHERE place > 7 AND draw = 4 |
What is the larges week for the date august 9, 1968 and less than 64,020 in attendance? | columns:
- name: week
type: INTEGER
- name: date
type: VARCHAR
- name: attendance
type: VARCHAR
table: table_name_14
| SELECT MAX(week) FROM table_name_14 WHERE date = "august 9, 1968" AND attendance < 64 OFFSET 020 |
Texas Rate smaller than 32.9, and a U.S. Rate larger than 5.6 is what highest killeen rate? | columns:
- name: killeen_rate
type: INTEGER
- name: texas_rate
type: VARCHAR
- name: us_rate
type: VARCHAR
table: table_name_89
| SELECT MAX(killeen_rate) FROM table_name_89 WHERE texas_rate < 32.9 AND us_rate > 5.6 |
How big was the crowd size, at the Junction Oval venue? | columns:
- name: crowd
type: INTEGER
- name: venue
type: VARCHAR
table: table_name_30
| SELECT SUM(crowd) FROM table_name_30 WHERE venue = "junction oval" |
Which rounds did the team Walther participate in? | columns:
- name: rounds
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_77
| SELECT rounds FROM table_name_77 WHERE team = "walther" |
What is the week number with attendance of 44,132? | columns:
- name: week
type: VARCHAR
- name: attendance
type: VARCHAR
table: table_name_2
| SELECT COUNT(week) FROM table_name_2 WHERE attendance = 44 OFFSET 132 |
What is the score for Sandy Lyle? | columns:
- name: score
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_93
| SELECT score FROM table_name_93 WHERE player = "sandy lyle" |
What is the air date when the U.S. viewers was 5.50 million? | columns:
- name: original_airdate
type: VARCHAR
- name: us_viewers__million_
type: VARCHAR
table: table_17467447_1
| SELECT original_airdate FROM table_17467447_1 WHERE us_viewers__million_ = "5.50" |
How may championships were won by the team that started in 1950? | columns:
- name: championships_in_st_louis
type: VARCHAR
- name: began_in_st_louis
type: VARCHAR
table: table_21564794_3
| SELECT championships_in_st_louis FROM table_21564794_3 WHERE began_in_st_louis = 1950 |
What is the result of the game after week 5 against the st. louis rams? | columns:
- name: result
type: VARCHAR
- name: week
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_52
| SELECT result FROM table_name_52 WHERE week > 5 AND opponent = "st. louis rams" |
How many episodes were directed by Sarah Pia Anderson? | columns:
- name: title
type: VARCHAR
- name: directed_by
type: VARCHAR
table: table_23287683_1
| SELECT COUNT(title) FROM table_23287683_1 WHERE directed_by = "Sarah Pia Anderson" |
Which stage has a mountains classification of Mariano Piccoli, a points classification of Mario Cipollini and was won by Laudelino Cubino? | columns:
- name: stage
type: VARCHAR
- name: winner
type: VARCHAR
- name: mountains_classification
type: VARCHAR
- name: points_classification
type: VARCHAR
table: table_name_93
| SELECT stage FROM table_name_93 WHERE mountains_classification = "mariano piccoli" AND points_classification = "mario cipollini" AND winner = "laudelino cubino" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.