question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
Name the hdtv for sky famiglia and dar 16:9 for mydeejay | columns:
- name: hdtv
type: VARCHAR
- name: television_service
type: VARCHAR
- name: package_option
type: VARCHAR
- name: dar
type: VARCHAR
table: table_15887683_10
| SELECT hdtv FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND dar = "16:9" AND television_service = "myDeejay" |
Which freq currently has 0 684? | columns:
- name: freq_currently
type: VARCHAR
- name: frequency
type: VARCHAR
table: table_name_7
| SELECT freq_currently FROM table_name_7 WHERE frequency = "0 684" |
Which School did Player Tyrone Johnson attend? | columns:
- name: school
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_41
| SELECT school FROM table_name_41 WHERE player = "tyrone johnson" |
What is English Translation, when Lyricist(s) is "Giorgos Moukidis", and when Original Album is "Ena (New Edition)" | columns:
- name: english_translation
type: VARCHAR
- name: lyricist_s_
type: VARCHAR
- name: original_album
type: VARCHAR
table: table_name_23
| SELECT english_translation FROM table_name_23 WHERE lyricist_s_ = "giorgos moukidis" AND original_album = "ena (new edition)" |
What is the constructor for Jackie Stewart's car? | columns:
- name: constructor
type: VARCHAR
- name: driver
type: VARCHAR
table: table_name_3
| SELECT constructor FROM table_name_3 WHERE driver = "jackie stewart" |
What are all classes for the position SLB? | columns:
- name: class
type: VARCHAR
- name: position
type: VARCHAR
table: table_14624447_24
| SELECT class FROM table_14624447_24 WHERE position = "SLB" |
Which Name has an Intra-molecular structure of no, and a Link of webserver, and a Comparative of no? | columns:
- name: name
type: VARCHAR
- name: comparative
type: VARCHAR
- name: intra_molecular_structure
type: VARCHAR
- name: link
type: VARCHAR
table: table_name_63
| SELECT name FROM table_name_63 WHERE intra_molecular_structure = "no" AND link = "webserver" AND comparative = "no" |
What is the total number of Rank for 1996–2007, when there are more than 108 goals? | columns:
- name: rank
type: VARCHAR
- name: years
type: VARCHAR
- name: goals
type: VARCHAR
table: table_name_51
| SELECT COUNT(rank) FROM table_name_51 WHERE years = "1996–2007" AND goals > 108 |
What type of engine does the model with model designation 97100 have? | columns:
- name: engine
type: VARCHAR
- name: model_designation
type: VARCHAR
table: table_20866024_3
| SELECT engine FROM table_20866024_3 WHERE model_designation = "97100" |
Which Week had a Result of w 10-0, and an Attendance smaller than 58,571? | columns:
- name: week
type: VARCHAR
- name: result
type: VARCHAR
- name: attendance
type: VARCHAR
table: table_name_5
| SELECT COUNT(week) FROM table_name_5 WHERE result = "w 10-0" AND attendance < 58 OFFSET 571 |
What is 1999, when 1998 is 2R? | columns:
- name: Id
type: VARCHAR
table: table_name_18
| SELECT 1999 FROM table_name_18 WHERE 1998 = "2r" |
Who is the opponent in the final with a clay surface at the Tournament of Lyneham? | columns:
- name: opponent_in_the_final
type: VARCHAR
- name: surface
type: VARCHAR
- name: tournament
type: VARCHAR
table: table_name_20
| SELECT opponent_in_the_final FROM table_name_20 WHERE surface = "clay" AND tournament = "lyneham" |
What is the total of the cultural and educational panel when the industrial and commercial panel is 0 and the agricultural panel is greater than 0? | columns:
- name: cultural_and_educational_panel
type: INTEGER
- name: industrial_and_commercial_panel
type: VARCHAR
- name: agricultural_panel
type: VARCHAR
table: table_name_90
| SELECT SUM(cultural_and_educational_panel) FROM table_name_90 WHERE industrial_and_commercial_panel = 0 AND agricultural_panel > 0 |
For top-25 values under 2, what is the average number of cuts made? | columns:
- name: cuts_made
type: INTEGER
- name: top_25
type: INTEGER
table: table_name_54
| SELECT AVG(cuts_made) FROM table_name_54 WHERE top_25 < 2 |
Who was the Cover model on 11-03? | columns:
- name: cover_model
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_96
| SELECT cover_model FROM table_name_96 WHERE date = "11-03" |
How many goal differences have Played larger than 44? | columns:
- name: goal_difference
type: INTEGER
- name: played
type: INTEGER
table: table_name_99
| SELECT SUM(goal_difference) FROM table_name_99 WHERE played > 44 |
What is European Release Date, when North American Release Date is "2013-03-05"? | columns:
- name: european_release_date
type: VARCHAR
- name: north_american_release_date
type: VARCHAR
table: table_name_50
| SELECT european_release_date FROM table_name_50 WHERE north_american_release_date = "2013-03-05" |
What's the Proto-Germanic when the Old English is /d/? | columns:
- name: proto_germanic
type: VARCHAR
- name: old_english
type: VARCHAR
table: table_name_3
| SELECT proto_germanic FROM table_name_3 WHERE old_english = "/d/" |
How many release dates has Canada had? | columns:
- name: release_date
type: VARCHAR
- name: country
type: VARCHAR
table: table_name_7
| SELECT COUNT(release_date) FROM table_name_7 WHERE country = "canada" |
What date did the episode with a production code of 60072 originally air? | columns:
- name: original_air_date
type: VARCHAR
- name: production_code
type: VARCHAR
table: table_28140590_1
| SELECT original_air_date FROM table_28140590_1 WHERE production_code = 60072 |
what is the lowest apparent magnitude when the object type is spiral galaxy, the constellation is leo minor and the ngc number is more than 3021? | columns:
- name: apparent_magnitude
type: INTEGER
- name: ngc_number
type: VARCHAR
- name: object_type
type: VARCHAR
- name: constellation
type: VARCHAR
table: table_name_66
| SELECT MIN(apparent_magnitude) FROM table_name_66 WHERE object_type = "spiral galaxy" AND constellation = "leo minor" AND ngc_number > 3021 |
How much Total has a Rank smaller than 10, and a Silver larger than 3, and a Gold larger than 3? | columns:
- name: total
type: INTEGER
- name: gold
type: VARCHAR
- name: rank
type: VARCHAR
- name: silver
type: VARCHAR
table: table_name_87
| SELECT SUM(total) FROM table_name_87 WHERE rank < 10 AND silver > 3 AND gold > 3 |
What were the ratings for host Chris Economaki who had 12.3 million viewers? | columns:
- name: ratings
type: VARCHAR
- name: host
type: VARCHAR
- name: viewers
type: VARCHAR
table: table_name_83
| SELECT ratings FROM table_name_83 WHERE host = "chris economaki" AND viewers = "12.3 million" |
Name the high rebounds for january 14 | columns:
- name: high_rebounds
type: VARCHAR
- name: date
type: VARCHAR
table: table_27755603_8
| SELECT high_rebounds FROM table_27755603_8 WHERE date = "January 14" |
Where did the competition take place that had a 4-2 result? | columns:
- name: venue
type: VARCHAR
- name: result
type: VARCHAR
table: table_name_46
| SELECT venue FROM table_name_46 WHERE result = "4-2" |
What is the trans 2 duration if the biking stage is covered within 58:20? | columns:
- name: trans_2
type: VARCHAR
- name: bike__40km_
type: VARCHAR
table: table_17085947_32
| SELECT trans_2 FROM table_17085947_32 WHERE bike__40km_ = "58:20" |
What is the average number of students for schools with a pupil to teacher ratio of 25.1? | columns:
- name: students
type: INTEGER
- name: pupil_teacher_ratio
type: VARCHAR
table: table_name_25
| SELECT AVG(students) FROM table_name_25 WHERE pupil_teacher_ratio = 25.1 |
What is the sum of the appearances at the league cup for the defender who had less than 10 appearances at the UEFA cup? | columns:
- name: league_cup
type: INTEGER
- name: position
type: VARCHAR
- name: UEfa_cup
type: VARCHAR
table: table_name_29
| SELECT SUM(league_cup) FROM table_name_29 WHERE position = "defender" AND UEfa_cup < 10 |
Name the total of Loss which has an Avg/G of 8.4? | columns:
- name: loss
type: VARCHAR
- name: avg_g
type: VARCHAR
table: table_name_37
| SELECT COUNT(loss) FROM table_name_37 WHERE avg_g = 8.4 |
how many times did Casey Martin win? | columns:
- name: wins
type: INTEGER
table: table_1697190_2
| SELECT MAX(wins) FROM table_1697190_2 |
What is every control site condition and owner if launch site condition and owner is Lakefront Office Buildings? | columns:
- name: control_site_condition_owner
type: VARCHAR
- name: launch_site_condition_owner
type: VARCHAR
table: table_22282917_26
| SELECT control_site_condition_owner FROM table_22282917_26 WHERE launch_site_condition_owner = "lakefront office buildings" |
What was the winning score of the Valero Texas Open? | columns:
- name: winning_score
type: VARCHAR
- name: tournament
type: VARCHAR
table: table_name_99
| SELECT winning_score FROM table_name_99 WHERE tournament = "valero texas open" |
What is the sum of the Performance/Return on Capital (Score) when the Score (Iran) is less than 3, and the Score (Global) is 266? | columns:
- name: performance_return_on_capital__score_
type: VARCHAR
- name: score__iran_
type: VARCHAR
- name: score__global_
type: VARCHAR
table: table_name_11
| SELECT COUNT(performance_return_on_capital__score_) FROM table_name_11 WHERE score__iran_ < 3 AND score__global_ = 266 |
What is the average weeks of a song with a larger than 3 position after 1977? | columns:
- name: weeks_on_chart
type: INTEGER
- name: position
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_40
| SELECT AVG(weeks_on_chart) FROM table_name_40 WHERE position > 3 AND year > 1977 |
What is the least amount of yards when the average is less than 2.6? | columns:
- name: yards
type: INTEGER
- name: average
type: INTEGER
table: table_name_65
| SELECT MIN(yards) FROM table_name_65 WHERE average < 2.6 |
What is the Max Aggregate bandwidth with a HyperTransport of 2? | columns:
- name: max_aggregate_bandwidth__bi_directional_
type: VARCHAR
- name: hypertransport_version
type: VARCHAR
table: table_name_17
| SELECT max_aggregate_bandwidth__bi_directional_ FROM table_name_17 WHERE hypertransport_version = 2 |
in riyadh, saudi arabia, what is the score? | columns:
- name: score
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_12
| SELECT score FROM table_name_12 WHERE venue = "riyadh, saudi arabia" |
Which is the largest area in Greenville County, by square mile? | columns:
- name: area__sq_mi_
type: INTEGER
- name: county
type: VARCHAR
table: table_name_88
| SELECT MAX(area__sq_mi_) FROM table_name_88 WHERE county = "greenville county" |
What is the average sales in billions of walmart, which has more than 15.7 billion in profits? | columns:
- name: sales__billion_
type: INTEGER
- name: company
type: VARCHAR
- name: profits__billion_$_
type: VARCHAR
table: table_name_5
| SELECT AVG(sales__billion_) AS $_ FROM table_name_5 WHERE company = "walmart" AND profits__billion_$_ > 15.7 |
What is the main use for the structure listed in walker city, iowa? | columns:
- name: main_use
type: VARCHAR
- name: town
type: VARCHAR
table: table_name_25
| SELECT main_use FROM table_name_25 WHERE town = "walker city, iowa" |
What is his record at ufc 67? | columns:
- name: record
type: VARCHAR
- name: event
type: VARCHAR
table: table_name_20
| SELECT record FROM table_name_20 WHERE event = "ufc 67" |
What was the Result F–A on 21 February 2009, when the league position was 1st? | columns:
- name: result_f_a
type: VARCHAR
- name: league_position
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_55
| SELECT result_f_a FROM table_name_55 WHERE league_position = "1st" AND date = "21 february 2009" |
What is the Place, when the Player is Chris Dimarco? | columns:
- name: place
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_8
| SELECT place FROM table_name_8 WHERE player = "chris dimarco" |
How much Gold has a Bronze smaller than 2, and a Silver of 0, and a Rank larger than 3? | columns:
- name: gold
type: INTEGER
- name: rank
type: VARCHAR
- name: bronze
type: VARCHAR
- name: silver
type: VARCHAR
table: table_name_78
| SELECT SUM(gold) FROM table_name_78 WHERE bronze < 2 AND silver = 0 AND rank > 3 |
Which Qualifying score had hoop as an apparatus? | columns:
- name: score_qualifying
type: VARCHAR
- name: apparatus
type: VARCHAR
table: table_name_94
| SELECT score_qualifying FROM table_name_94 WHERE apparatus = "hoop" |
What venue held with game with a score of 3-2? | columns:
- name: venue
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_42
| SELECT venue FROM table_name_42 WHERE score = "3-2" |
Which stage was being played in Romania? | columns:
- name: stage
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_34
| SELECT stage FROM table_name_34 WHERE venue = "romania" |
What is the engine code for the Xdrive25i? | columns:
- name: engine_code
type: VARCHAR
- name: model
type: VARCHAR
table: table_name_76
| SELECT engine_code FROM table_name_76 WHERE model = "xdrive25i" |
what type of school is the institution nicknamed seminoles? | columns:
- name: school_type
type: VARCHAR
- name: nickname
type: VARCHAR
table: table_28744929_1
| SELECT school_type FROM table_28744929_1 WHERE nickname = "Seminoles" |
What was the Record on Week 13 at the Hoosier Dome? | columns:
- name: record
type: VARCHAR
- name: game_site
type: VARCHAR
- name: week
type: VARCHAR
table: table_name_97
| SELECT record FROM table_name_97 WHERE game_site = "hoosier dome" AND week = 13 |
What was the total number of Laps for the rider whose time was +7.951? | columns:
- name: laps
type: VARCHAR
- name: time
type: VARCHAR
table: table_name_2
| SELECT COUNT(laps) FROM table_name_2 WHERE time = "+7.951" |
Player of corey pavin, and a Rank larger than 4 involved which highest earnings ($)? | columns:
- name: earnings___
type: INTEGER
- name: player
type: VARCHAR
- name: rank
type: VARCHAR
table: table_name_72
| SELECT MAX(earnings___) AS $__ FROM table_name_72 WHERE player = "corey pavin" AND rank > 4 |
What location is nicknamed the 49ers? | columns:
- name: location
type: VARCHAR
- name: nickname
type: VARCHAR
table: table_255188_3
| SELECT location FROM table_255188_3 WHERE nickname = "49ers" |
What is the D 43 √ with a D 49 √ with d 49 √? | columns:
- name: "d_43_\u221A"
type: VARCHAR
- name: "d_49_\u221A"
type: VARCHAR
table: table_name_64
| SELECT d_43_√ FROM table_name_64 WHERE d_49_√ = "d 49 √" |
What is the sum of a rank whose nation is West Germany and has bronze larger than 0? | columns:
- name: rank
type: INTEGER
- name: nation
type: VARCHAR
- name: bronze
type: VARCHAR
table: table_name_45
| SELECT SUM(rank) FROM table_name_45 WHERE nation = "west germany" AND bronze > 0 |
What is the June 21 ncaat baseball record for Fresno State Bulldogs? | columns:
- name: ncaat_record
type: VARCHAR
- name: date
type: VARCHAR
table: table_18025024_7
| SELECT ncaat_record FROM table_18025024_7 WHERE date = "June 21" |
The plural word of hands uses what singular word? | columns:
- name: singular_word
type: VARCHAR
- name: plural_word
type: VARCHAR
table: table_name_24
| SELECT singular_word FROM table_name_24 WHERE plural_word = "hands" |
What time was achieved on Saturday 29th August by the rider who recorded 24' 17.26 93.208mph on Monday 24th August? | columns:
- name: sat_29_aug
type: VARCHAR
- name: mon_24_aug
type: VARCHAR
table: table_23465864_4
| SELECT sat_29_aug FROM table_23465864_4 WHERE mon_24_aug = "24' 17.26 93.208mph" |
Which Stop # has a Platform of [2777] mciver station platforms? | columns:
- name: stop_no
type: VARCHAR
- name: platform
type: VARCHAR
table: table_name_50
| SELECT stop_no FROM table_name_50 WHERE platform = "[2777] mciver station platforms" |
Name the segment c with episode less than 179 and segment b of s sticker | columns:
- name: segment_c
type: VARCHAR
- name: episode
type: VARCHAR
- name: segment_b
type: VARCHAR
table: table_name_63
| SELECT segment_c FROM table_name_63 WHERE episode < 179 AND segment_b = "s sticker" |
What is the greatest position when the points are less than 21, and the played greater than 14? | columns:
- name: position
type: INTEGER
- name: points
type: VARCHAR
- name: played
type: VARCHAR
table: table_name_78
| SELECT MAX(position) FROM table_name_78 WHERE points < 21 AND played > 14 |
Which Points have a Time/Retired of +49.222 secs? | columns:
- name: points
type: INTEGER
- name: time_retired
type: VARCHAR
table: table_name_5
| SELECT MAX(points) FROM table_name_5 WHERE time_retired = "+49.222 secs" |
How many votes did McCain get in the county where Obama got 50.7% of the votes? | columns:
- name: mccain_number
type: INTEGER
- name: obama_percentage
type: VARCHAR
table: table_20350118_1
| SELECT MAX(mccain_number) FROM table_20350118_1 WHERE obama_percentage = "50.7%" |
Which class City of license of ferrum, virginia? | columns:
- name: class
type: VARCHAR
- name: city_of_license
type: VARCHAR
table: table_name_83
| SELECT class FROM table_name_83 WHERE city_of_license = "ferrum, virginia" |
What day did the team play week 13? | columns:
- name: date
type: VARCHAR
- name: week
type: VARCHAR
table: table_name_87
| SELECT date FROM table_name_87 WHERE week = 13 |
What is the highest year with a formula of Grand Prix? | columns:
- name: year
type: INTEGER
- name: formula
type: VARCHAR
table: table_name_25
| SELECT MAX(year) FROM table_name_25 WHERE formula = "grand prix" |
What year were the election results tom loeffler (r) 80.6% joe sullivan (d) 19.4%? | columns:
- name: first_elected
type: INTEGER
- name: candidates
type: VARCHAR
table: table_1341598_44
| SELECT MIN(first_elected) FROM table_1341598_44 WHERE candidates = "Tom Loeffler (R) 80.6% Joe Sullivan (D) 19.4%" |
What year was the school opened that has a size of 10 acres and students of na? | columns:
- name: year_opened
type: VARCHAR
- name: students
type: VARCHAR
- name: size
type: VARCHAR
table: table_name_76
| SELECT year_opened FROM table_name_76 WHERE students = "na" AND size = "10 acres" |
Which Attendance has a Result of w 51-21? | columns:
- name: attendance
type: VARCHAR
- name: result
type: VARCHAR
table: table_name_70
| SELECT attendance FROM table_name_70 WHERE result = "w 51-21" |
What status has 18 as the against? | columns:
- name: status
type: VARCHAR
- name: against
type: VARCHAR
table: table_name_34
| SELECT status FROM table_name_34 WHERE against = 18 |
What's the total number that had a rank larger than 17 and a gold greater than 0? | columns:
- name: total
type: VARCHAR
- name: rank
type: VARCHAR
- name: gold
type: VARCHAR
table: table_name_73
| SELECT COUNT(total) FROM table_name_73 WHERE rank > 17 AND gold > 0 |
What was the Winning Score on May 29, 1977? | columns:
- name: winning_score
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_2
| SELECT winning_score FROM table_name_2 WHERE date = "may 29, 1977" |
what is the length (miles) when the name is l-56g? | columns:
- name: length__miles_
type: INTEGER
- name: name
type: VARCHAR
table: table_name_19
| SELECT MAX(length__miles_) FROM table_name_19 WHERE name = "l-56g" |
What is the score when the team is @ dallas? | columns:
- name: score
type: VARCHAR
- name: team
type: VARCHAR
table: table_27755784_10
| SELECT score FROM table_27755784_10 WHERE team = "@ Dallas" |
What is the highest Density for the independencia province, with an area smaller than 2,007.4? | columns:
- name: density
type: INTEGER
- name: province
type: VARCHAR
- name: area
type: VARCHAR
table: table_name_88
| SELECT MAX(density) FROM table_name_88 WHERE province = "independencia" AND area < 2 OFFSET 007.4 |
Name the ezhavas and syrian christians being 26.2 | columns:
- name: ezhavas
type: VARCHAR
- name: syrian_christians
type: VARCHAR
table: table_23214055_2
| SELECT ezhavas FROM table_23214055_2 WHERE syrian_christians = "26.2" |
What was segment C when segment D was fluorescent tubes? | columns:
- name: segment_c
type: VARCHAR
- name: segment_d
type: VARCHAR
table: table_15187735_1
| SELECT segment_c FROM table_15187735_1 WHERE segment_d = "Fluorescent Tubes" |
What is the Visitor with a Series with 3 – 2? | columns:
- name: visitor
type: VARCHAR
- name: series
type: VARCHAR
table: table_name_50
| SELECT visitor FROM table_name_50 WHERE series = "3 – 2" |
What is Date, when Status is Second Test? | columns:
- name: date
type: VARCHAR
- name: status
type: VARCHAR
table: table_name_34
| SELECT date FROM table_name_34 WHERE status = "second test" |
Which award show nominated Cole Sprouse for the Favorite TV Actor category? | columns:
- name: award
type: VARCHAR
- name: category
type: VARCHAR
- name: recipient
type: VARCHAR
table: table_name_49
| SELECT award FROM table_name_49 WHERE category = "favorite tv actor" AND recipient = "cole sprouse" |
what is the number of passengers when the capacity is 81.2%? | columns:
- name: total_passengers
type: INTEGER
- name: capacity_in_use
type: VARCHAR
table: table_name_88
| SELECT SUM(total_passengers) FROM table_name_88 WHERE capacity_in_use = "81.2%" |
What is the club when the shirt sponsor is e-lotto.be? | columns:
- name: club
type: VARCHAR
- name: shirt_sponsor
type: VARCHAR
table: table_27374004_2
| SELECT club FROM table_27374004_2 WHERE shirt_sponsor = "e-lotto.be" |
How many goals were scored on November 22, 1994? | columns:
- name: goal
type: INTEGER
- name: date
type: VARCHAR
table: table_name_13
| SELECT SUM(goal) FROM table_name_13 WHERE date = "november 22, 1994" |
What date was Leeds United the away team? | columns:
- name: date
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_36
| SELECT date FROM table_name_36 WHERE away_team = "leeds united" |
Which planet has the transcription of wan suk? | columns:
- name: planet
type: VARCHAR
- name: transcription
type: VARCHAR
table: table_180802_3
| SELECT planet FROM table_180802_3 WHERE transcription = "wan suk" |
What is the away team score when the away team is Essendon? | columns:
- name: away_team
type: VARCHAR
table: table_name_16
| SELECT away_team AS score FROM table_name_16 WHERE away_team = "essendon" |
What is the power of the engine with a torque of n·m (lb·ft) at1,500rpm? | columns:
- name: power
type: VARCHAR
- name: torque
type: VARCHAR
table: table_name_15
| SELECT power FROM table_name_15 WHERE torque = "n·m (lb·ft) at1,500rpm" |
Which sport did the United States win? | columns:
- name: sport
type: VARCHAR
- name: nation_represented
type: VARCHAR
table: table_name_29
| SELECT sport FROM table_name_29 WHERE nation_represented = "united states" |
What is the total of all YARDS with 0 SACK and less than 14 P/KO RET? | columns:
- name: yards
type: VARCHAR
- name: sack
type: VARCHAR
- name: p_ko_ret
type: VARCHAR
table: table_name_31
| SELECT COUNT(yards) FROM table_name_31 WHERE sack = 0 AND p_ko_ret < 14 |
What is the grid average with a +1 lap time and more than 27 laps? | columns:
- name: grid
type: INTEGER
- name: time_retired
type: VARCHAR
- name: laps
type: VARCHAR
table: table_name_52
| SELECT AVG(grid) FROM table_name_52 WHERE time_retired = "+1 lap" AND laps > 27 |
What is the number of recepits per arrival in 2010 (col 2)/(col 1) USD with colombia (1) as the selected carribean and latin american country? | columns:
- name: receipts_per_arrival_2010__col_2___col_1____usd__
type: VARCHAR
- name: selected_caribbean_and_n_latin_america_countries
type: VARCHAR
table: table_name_71
| SELECT receipts_per_arrival_2010__col_2___col_1____usd__ FROM table_name_71 WHERE selected_caribbean_and_n_latin_america_countries = "colombia (1)" |
What is the Attendance of the game in Week 12? | columns:
- name: attendance
type: INTEGER
- name: week
type: VARCHAR
table: table_name_99
| SELECT MAX(attendance) FROM table_name_99 WHERE week = 12 |
Which team did they play at Rich Stadium? | columns:
- name: opponent
type: VARCHAR
- name: game_site
type: VARCHAR
table: table_14423274_3
| SELECT opponent FROM table_14423274_3 WHERE game_site = "Rich Stadium" |
What was the game site against the Dallas Texans? | columns:
- name: game_site
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_17765888_1
| SELECT game_site FROM table_17765888_1 WHERE opponent = "Dallas Texans" |
What is the chassis of the Honda Engine from 2008? | columns:
- name: chassis
type: VARCHAR
- name: engine
type: VARCHAR
- name: year
type: VARCHAR
table: table_name_68
| SELECT chassis FROM table_name_68 WHERE engine = "honda" AND year = 2008 |
What is donovan's surname? | columns:
- name: surname
type: VARCHAR
- name: first
type: VARCHAR
table: table_name_12
| SELECT surname FROM table_name_12 WHERE first = "donovan" |
What nhl team does stan weir play for? | columns:
- name: nhl_team
type: VARCHAR
- name: player
type: VARCHAR
table: table_1473672_2
| SELECT nhl_team FROM table_1473672_2 WHERE player = "Stan Weir" |
Who was the LMP2 winner when the LMP1 winning team was No. 20 Oryx Dyson Racing? | columns:
- name: lmp2_winning_driver
type: VARCHAR
- name: lmp1_winning_team
type: VARCHAR
table: table_27743641_2
| SELECT lmp2_winning_driver FROM table_27743641_2 WHERE lmp1_winning_team = "No. 20 Oryx Dyson Racing" |
WHo has a Home of philadelphia and a Series of flyers lead 1–0? | columns:
- name: visitor
type: VARCHAR
- name: home
type: VARCHAR
- name: series
type: VARCHAR
table: table_name_54
| SELECT visitor FROM table_name_54 WHERE home = "philadelphia" AND series = "flyers lead 1–0" |
How many Field goals have Touchdowns smaller than 3, and a Player of willis ward, and an Extra points smaller than 0? | columns:
- name: field_goals
type: INTEGER
- name: extra_points
type: VARCHAR
- name: touchdowns
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_45
| SELECT SUM(field_goals) FROM table_name_45 WHERE touchdowns < 3 AND player = "willis ward" AND extra_points < 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.