question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What athlete has a Grenoble place? | CREATE TABLE table_name_96 (athlete VARCHAR, place VARCHAR) | SELECT athlete FROM table_name_96 WHERE place = "grenoble" |
What was the date when the first audition venue was Kemper Arena? | CREATE TABLE table_name_40 (date VARCHAR, first_audition_venue VARCHAR) | SELECT date FROM table_name_40 WHERE first_audition_venue = "kemper arena" |
How many premierships for the queensland raceway? | CREATE TABLE table_name_40 (premierships VARCHAR, venue VARCHAR) | SELECT premierships FROM table_name_40 WHERE venue = "queensland raceway" |
What are the school colors of the University of New Hampshire? | CREATE TABLE table_1221089_1 (colors VARCHAR, institution VARCHAR) | SELECT colors FROM table_1221089_1 WHERE institution = "University of New Hampshire" |
Leland W. Schubert, Free Libertarian ticket, had who listed on the Democratic ticket? | CREATE TABLE table_name_56 (democratic_ticket VARCHAR, free_libertarian_ticket VARCHAR) | SELECT democratic_ticket FROM table_name_56 WHERE free_libertarian_ticket = "leland w. schubert" |
What class does the w298ak sign belong to? | CREATE TABLE table_name_10 (class VARCHAR, call_sign VARCHAR) | SELECT class FROM table_name_10 WHERE call_sign = "w298ak" |
How many tickets were sold and how many were available for the shows that grossed $348,674? | CREATE TABLE table_name_30 (ticket_sold___available VARCHAR, ticket_grossing VARCHAR) | SELECT ticket_sold___available FROM table_name_30 WHERE ticket_grossing = "$348,674" |
What is the number of extra laps for 9 total points? | CREATE TABLE table_name_71 (extra_laps VARCHAR, total_points VARCHAR) | SELECT extra_laps FROM table_name_71 WHERE total_points = "9" |
Which Club Team has a Position of (d), a Nationality of canada, and a Player of andrew macwilliam? | CREATE TABLE table_name_7 (club_team VARCHAR, player VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT club_team FROM table_name_7 WHERE position = "(d)" AND nationality = "canada" AND player = "andrew macwilliam" |
Between which years were there 241 fokker 70 model cabins built? | CREATE TABLE table_name_43 (period VARCHAR, built VARCHAR, model VARCHAR) | SELECT period FROM table_name_43 WHERE built < 241 AND model = "fokker 70" |
What are the 2fm's for erp 16? | CREATE TABLE table_18475946_2 (erp__kw_ VARCHAR) | SELECT 2 AS fm__mhz_ FROM table_18475946_2 WHERE erp__kw_ = "16" |
What vfl club(s) did players who played 23 cfl games play for? | CREATE TABLE table_16527640_2 (vfl_club_s_ VARCHAR, vfl_games VARCHAR) | SELECT vfl_club_s_ FROM table_16527640_2 WHERE vfl_games = 23 |
what is the college/junior/club team for the player alfie turcotte? | CREATE TABLE table_2679061_1 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2679061_1 WHERE player = "Alfie Turcotte" |
What is the average gold total for nations ranked 6 with 1 total medal and 1 bronze medal? | CREATE TABLE table_name_90 (gold INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR) | SELECT AVG(gold) FROM table_name_90 WHERE total = 1 AND rank = "6" AND bronze > 1 |
WHAT IS THE TOTAL WITH A TO PAR OF 10? | CREATE TABLE table_name_30 (total INTEGER, to_par VARCHAR) | SELECT MAX(total) FROM table_name_30 WHERE to_par = 10 |
What country was the game played when it was played from April 11-April 21? | CREATE TABLE table_name_73 (country VARCHAR, date VARCHAR) | SELECT country FROM table_name_73 WHERE date = "april 11-april 21" |
What is listed for the Week 1 Aug 26 that has a Week 7 Oct 6 of USC (3-2)? | CREATE TABLE table_name_36 (week_1_aug_26 VARCHAR, week_7_oct_6 VARCHAR) | SELECT week_1_aug_26 FROM table_name_36 WHERE week_7_oct_6 = "usc (3-2)" |
What is Home, when Time is 18:00, and when Geust is Servette FC (CHL)? | CREATE TABLE table_name_49 (home VARCHAR, time VARCHAR, geust VARCHAR) | SELECT home FROM table_name_49 WHERE time = "18:00" AND geust = "servette fc (chl)" |
What is the attendance of the game that has the opponent of The Nationals with a record of 68-51? | CREATE TABLE table_name_42 (attendance INTEGER, opponent VARCHAR, record VARCHAR) | SELECT SUM(attendance) FROM table_name_42 WHERE opponent = "nationals" AND record = "68-51" |
What are the country code and first name of the players who won in both tourney WTA Championships and Australian Open? | CREATE TABLE matches (winner_id VARCHAR, tourney_name VARCHAR); CREATE TABLE players (country_code VARCHAR, first_name VARCHAR, player_id VARCHAR) | SELECT T1.country_code, T1.first_name FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id WHERE T2.tourney_name = 'WTA Championships' INTERSECT SELECT T1.country_code, T1.first_name FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id WHERE T2.tourney_name = 'Australian Open' |
In what category was Herself nominated? | CREATE TABLE table_name_21 (category VARCHAR, nominated VARCHAR) | SELECT category FROM table_name_21 WHERE nominated = "herself" |
How many international builders are there? | CREATE TABLE table_name_84 (total VARCHAR, builder VARCHAR) | SELECT total FROM table_name_84 WHERE builder = "international" |
Who had a to par of +2 and a score of 78-69-68=215? | CREATE TABLE table_name_22 (player VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT player FROM table_name_22 WHERE to_par = "+2" AND score = 78 - 69 - 68 = 215 |
What time (cst) has and NFL recap of recap with october 19, 2008 as the date? | CREATE TABLE table_name_75 (time__cst_ VARCHAR, nfl_recap VARCHAR, date VARCHAR) | SELECT time__cst_ FROM table_name_75 WHERE nfl_recap = "recap" AND date = "october 19, 2008" |
What is the highest round in which a player was picked for the Center position? | CREATE TABLE table_name_24 (round INTEGER, position VARCHAR) | SELECT MAX(round) FROM table_name_24 WHERE position = "center" |
What is the namesake of Ayashe at a longitude less than 270.7, latitude more than -47.1, and a diameter less than 7.2? | CREATE TABLE table_name_87 (named VARCHAR, name VARCHAR, diameter__km_ VARCHAR, longitude VARCHAR, latitude VARCHAR) | SELECT named AS after FROM table_name_87 WHERE longitude < 270.7 AND latitude > -47.1 AND diameter__km_ < 7.2 AND name = "ayashe" |
What is the average gold medals of the nation with 2 total medals, more than 1 bronze, and less than 0 silvers? | CREATE TABLE table_name_14 (gold INTEGER, silver VARCHAR, total VARCHAR, bronze VARCHAR) | SELECT AVG(gold) FROM table_name_14 WHERE total = 2 AND bronze > 1 AND silver < 0 |
Who was second when Martynas Norkus was the skip? | CREATE TABLE table_name_86 (second VARCHAR, skip VARCHAR) | SELECT second FROM table_name_86 WHERE skip = "martynas norkus" |
What was the population in Kisumu county as of 2009? | CREATE TABLE table_16278894_1 (population_census_2009 VARCHAR, county VARCHAR) | SELECT population_census_2009 FROM table_16278894_1 WHERE county = "Kisumu" |
In 1900 with 62 wins and a win percentage less than 0.457, what was the GB [c]? | CREATE TABLE table_name_98 (gb_ VARCHAR, c_ VARCHAR, reds_season VARCHAR, win_percentage VARCHAR, wins VARCHAR) | SELECT gb_[c_] FROM table_name_98 WHERE win_percentage < 0.457 AND wins = 62 AND reds_season = 1900 |
When was there a game at Kardinia Park? | CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_78 WHERE venue = "kardinia park" |
What is the sum of To Par, when Player is "Bob Rosburg"? | CREATE TABLE table_name_4 (to_par INTEGER, player VARCHAR) | SELECT SUM(to_par) FROM table_name_4 WHERE player = "bob rosburg" |
How many distinct complaint type codes are there in the database? | CREATE TABLE complaints (complaint_type_code VARCHAR) | SELECT COUNT(DISTINCT complaint_type_code) FROM complaints |
What is the BB pop of the song with a CB CW of 1, RIAA of P and was released more recently than 1976? | CREATE TABLE table_name_93 (bb_pop VARCHAR, riaa VARCHAR, cb_cw VARCHAR, year VARCHAR) | SELECT bb_pop FROM table_name_93 WHERE cb_cw = "1" AND year > 1976 AND riaa = "p" |
How many top division titles does Club Guadalajara have, with more than 42 seasons in Liga MX? | CREATE TABLE table_name_66 (top_division_titles INTEGER, number_of_seasons_in_liga_mx VARCHAR, club VARCHAR) | SELECT SUM(top_division_titles) FROM table_name_66 WHERE number_of_seasons_in_liga_mx > 42 AND club = "guadalajara" |
What kind of free practice is there with a Ford RS2 engine +? | CREATE TABLE table_name_8 (free_practice_driver_s_ VARCHAR, engine_† VARCHAR) | SELECT free_practice_driver_s_ FROM table_name_8 WHERE engine_† = "ford rs2" |
What's the American pronunciation when the Australian is əʉ? | CREATE TABLE table_name_11 (american VARCHAR, australian VARCHAR) | SELECT american FROM table_name_11 WHERE australian = "əʉ" |
what is the series when wins is less than 3, points is 9 and podiums is 1? | CREATE TABLE table_name_7 (series VARCHAR, podiums VARCHAR, wins VARCHAR, points VARCHAR) | SELECT series FROM table_name_7 WHERE wins < 3 AND points = "9" AND podiums = 1 |
What club did united states player ty harden play for? | CREATE TABLE table_name_55 (club VARCHAR, nationality VARCHAR, player VARCHAR) | SELECT club FROM table_name_55 WHERE nationality = "united states" AND player = "ty harden" |
What is the Date when the label was alfa records, and a Catalog of alca-487? | CREATE TABLE table_name_61 (date VARCHAR, label VARCHAR, catalog VARCHAR) | SELECT date FROM table_name_61 WHERE label = "alfa records" AND catalog = "alca-487" |
Who was the constructor in the location Monza? | CREATE TABLE table_1140076_2 (constructor VARCHAR, location VARCHAR) | SELECT constructor FROM table_1140076_2 WHERE location = "Monza" |
Name the total number of opponent for october 3 | CREATE TABLE table_24126606_2 (opponent VARCHAR, date VARCHAR) | SELECT COUNT(opponent) FROM table_24126606_2 WHERE date = "October 3" |
In the match where the venue was arden street oval, what was the crowd attendance? | CREATE TABLE table_name_88 (crowd INTEGER, venue VARCHAR) | SELECT SUM(crowd) FROM table_name_88 WHERE venue = "arden street oval" |
What team(s) enjoyed an average spped (mph) of 138.14? | CREATE TABLE table_17802778_1 (team VARCHAR, average_speed__mph_ VARCHAR) | SELECT team FROM table_17802778_1 WHERE average_speed__mph_ = "138.14" |
Which Points Classification does the General Classification of Cyril Dessel have? | CREATE TABLE table_name_9 (points_classification VARCHAR, general_classification VARCHAR) | SELECT points_classification FROM table_name_9 WHERE general_classification = "cyril dessel" |
Who were the partners during times that harry johnson hazel hotchkiss wightman was the opponent? | CREATE TABLE table_2127933_3 (partner VARCHAR, opponents VARCHAR) | SELECT partner FROM table_2127933_3 WHERE opponents = "Harry Johnson Hazel Hotchkiss Wightman" |
What is the Volume:Issue number of the George McCrae song that spent less than 2 weeks on top of the charts? | CREATE TABLE table_name_96 (volume VARCHAR, weeks_on_top VARCHAR, artist VARCHAR) | SELECT volume AS :issue FROM table_name_96 WHERE weeks_on_top < 2 AND artist = "george mccrae" |
When was the game played in which the record was 46-29? | CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_86 WHERE record = "46-29" |
Which team drafted Michael Orn? | CREATE TABLE table_2850912_10 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_2850912_10 WHERE player = "Michael Orn" |
What county had a bridge biult in 1884? | CREATE TABLE table_name_37 (county VARCHAR, built VARCHAR) | SELECT county FROM table_name_37 WHERE built = "1884" |
What turbo has a L2 cache of 4 × 256 kb, a release date of June 2013, and a Model number of core i7-4770s? | CREATE TABLE table_name_78 (turbo VARCHAR, model_number VARCHAR, l2_cache VARCHAR, release_date VARCHAR) | SELECT turbo FROM table_name_78 WHERE l2_cache = "4 × 256 kb" AND release_date = "june 2013" AND model_number = "core i7-4770s" |
What was the number of earnings were cuts made are 19 and money list rank is 3? | CREATE TABLE table_12821159_14 (earnings__€_ VARCHAR, cuts_made VARCHAR, money_list_rank VARCHAR) | SELECT earnings__€_ FROM table_12821159_14 WHERE cuts_made = 19 AND money_list_rank = 3 |
What the time of Paul Hession with more than an 0.187 react? | CREATE TABLE table_name_76 (time VARCHAR, react VARCHAR, athlete VARCHAR) | SELECT time FROM table_name_76 WHERE react > 0.187 AND athlete = "paul hession" |
Show all template type codes and descriptions. | CREATE TABLE Ref_template_types (template_type_code VARCHAR, template_type_description VARCHAR) | SELECT template_type_code, template_type_description FROM Ref_template_types |
What nationality is keith carney? | CREATE TABLE table_2897457_5 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_2897457_5 WHERE player = "Keith Carney" |
What is the sum of poles of the firestone indy lights series before the 2009 season? | CREATE TABLE table_name_73 (poles INTEGER, series VARCHAR, season VARCHAR) | SELECT SUM(poles) FROM table_name_73 WHERE series = "firestone indy lights series" AND season < 2009 |
Show the apartment numbers, start dates, and end dates of all the apartment bookings. | CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, apt_id VARCHAR); CREATE TABLE Apartments (apt_number VARCHAR, apt_id VARCHAR) | SELECT T2.apt_number, T1.booking_start_date, T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id |
Name the total number of directors for number 6 | CREATE TABLE table_20345624_2 (director VARCHAR, no VARCHAR) | SELECT COUNT(director) FROM table_20345624_2 WHERE no = 6 |
Tell me the 2012 when 2005 is 314 | CREATE TABLE table_name_82 (Id VARCHAR) | SELECT 2012 FROM table_name_82 WHERE 2005 = "314" |
What club had a points difference of -24? | CREATE TABLE table_name_87 (club VARCHAR, points_difference VARCHAR) | SELECT club FROM table_name_87 WHERE points_difference = "-24" |
How old is contestant Valerie Chardonnens Vargas? | CREATE TABLE table_22447251_2 (age INTEGER, contestant VARCHAR) | SELECT MAX(age) FROM table_22447251_2 WHERE contestant = "Valerie Chardonnens Vargas" |
Which method's event was flawless fighting championship 1: the beginning? | CREATE TABLE table_name_42 (method VARCHAR, event VARCHAR) | SELECT method FROM table_name_42 WHERE event = "flawless fighting championship 1: the beginning" |
WHAT IS THE SUM OF AST AVG WITH RANK 5 AND GAMES BIGGER THAN 108? | CREATE TABLE table_name_20 (ast_avg INTEGER, rank VARCHAR, games VARCHAR) | SELECT SUM(ast_avg) FROM table_name_20 WHERE rank = 5 AND games > 108 |
Who had the highest assists on the l.a. lakers? | CREATE TABLE table_name_21 (high_assists VARCHAR, team VARCHAR) | SELECT high_assists FROM table_name_21 WHERE team = "l.a. lakers" |
Which home team has an Away of (2-1)? | CREATE TABLE table_name_17 (home VARCHAR, away VARCHAR) | SELECT home FROM table_name_17 WHERE away = "(2-1)" |
What did the home team score at Western Oval? | CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_4 WHERE venue = "western oval" |
Which Position has a Team of criciúma, and a Drawn larger than 8? | CREATE TABLE table_name_80 (position INTEGER, team VARCHAR, drawn VARCHAR) | SELECT AVG(position) FROM table_name_80 WHERE team = "criciúma" AND drawn > 8 |
What are the colors of Howard Hall? | CREATE TABLE table_15873547_1 (colors VARCHAR, residence_hall VARCHAR) | SELECT colors FROM table_15873547_1 WHERE residence_hall = "Howard Hall" |
what is solo when total tackles is 6? | CREATE TABLE table_name_82 (solo VARCHAR, total_tackles VARCHAR) | SELECT solo FROM table_name_82 WHERE total_tackles = "6" |
What time has a Set 3 of 25–16? | CREATE TABLE table_name_14 (time VARCHAR, set_3 VARCHAR) | SELECT time FROM table_name_14 WHERE set_3 = "25–16" |
How many stations have been owned since wfts-tv? | CREATE TABLE table_1847523_2 (owned_since VARCHAR, station VARCHAR) | SELECT owned_since FROM table_1847523_2 WHERE station = "WFTS-TV" |
How many million u.s. Viewers watched season 1? | CREATE TABLE table_19188562_2 (us_viewers__in_millions_ VARCHAR, season VARCHAR) | SELECT us_viewers__in_millions_ FROM table_19188562_2 WHERE season = 1 |
Who got second place when the winners were rafał mroczek & aneta piotrowska? | CREATE TABLE table_15988037_4 (second_place VARCHAR, winner VARCHAR) | SELECT second_place FROM table_15988037_4 WHERE winner = "Rafał Mroczek & Aneta Piotrowska" |
What is the total Goals with Rank larger than 10? | CREATE TABLE table_name_71 (goals INTEGER, rank INTEGER) | SELECT SUM(goals) FROM table_name_71 WHERE rank > 10 |
What is the latest date with Cores per die / Dies per module of 2 / 1, and a Clock of 1.4-1.6ghz? | CREATE TABLE table_name_64 (date INTEGER, cores_per_die___dies_per_module VARCHAR, clock VARCHAR) | SELECT MAX(date) FROM table_name_64 WHERE cores_per_die___dies_per_module = "2 / 1" AND clock = "1.4-1.6ghz" |
What is ramtha when jeel is 1-0 and hussein is 1-0? | CREATE TABLE table_26173063_2 (ramtha VARCHAR, jeel VARCHAR, hussein VARCHAR) | SELECT ramtha FROM table_26173063_2 WHERE jeel = "1-0" AND hussein = "1-0" |
Can you tell me the Rebounds that has the Name of pom baskets jena? | CREATE TABLE table_name_27 (rebounds VARCHAR, name VARCHAR) | SELECT rebounds FROM table_name_27 WHERE name = "pom baskets jena" |
Name the rating % for channel of anhui satellite tv | CREATE TABLE table_name_73 (rating___percentage_ VARCHAR, channel VARCHAR) | SELECT rating___percentage_ FROM table_name_73 WHERE channel = "anhui satellite tv" |
What was the Av/G of the 2009 season? | CREATE TABLE table_name_74 (avg_g VARCHAR, season VARCHAR) | SELECT avg_g FROM table_name_74 WHERE season = "2009" |
Which Taper/ft that has a Large end smaller than 0.5, and a Taper of #2? | CREATE TABLE table_name_27 (ft VARCHAR, taper INTEGER, large_end VARCHAR) | SELECT MAX(taper) / ft FROM table_name_27 WHERE large_end < 0.5 AND taper = "#2" |
What is the name/designation for Operational Status and a range of 1,930km? | CREATE TABLE table_name_85 (name_designation VARCHAR, status VARCHAR, range__varies_with_payload_weight_ VARCHAR) | SELECT name_designation FROM table_name_85 WHERE status = "operational" AND range__varies_with_payload_weight_ = "1,930km" |
which companies released on 2010-11-04 4 november 2010 | CREATE TABLE table_20174050_24 (company VARCHAR, release_date VARCHAR) | SELECT company FROM table_20174050_24 WHERE release_date = "2010-11-04 4 November 2010" |
What are the distinct nominees of the musicals with the award that is not "Tony Award"? | CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR) | SELECT DISTINCT Nominee FROM musical WHERE Award <> "Tony Award" |
Name the title with termination of mission of february 24, 1828 | CREATE TABLE table_name_65 (title VARCHAR, termination_of_mission VARCHAR) | SELECT title FROM table_name_65 WHERE termination_of_mission = "february 24, 1828" |
How many episodes were directed by james quinn? | CREATE TABLE table_2618061_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT COUNT(written_by) FROM table_2618061_1 WHERE directed_by = "James Quinn" |
What is the final score when the opponent was Real España, in the 2008–09 season? | CREATE TABLE table_name_52 (final_score VARCHAR, opponent VARCHAR, season VARCHAR) | SELECT final_score FROM table_name_52 WHERE opponent = "real españa" AND season = "2008–09" |
What is the average attendance after week 16? | CREATE TABLE table_name_10 (attendance INTEGER, week INTEGER) | SELECT AVG(attendance) FROM table_name_10 WHERE week > 16 |
Name the replaced by for position in table is 1st | CREATE TABLE table_17039232_3 (replaced_by VARCHAR, position_in_table VARCHAR) | SELECT replaced_by FROM table_17039232_3 WHERE position_in_table = "1st" |
What is Home Team, when Tie No is Replay, and when Attendance is 2,048? | CREATE TABLE table_name_44 (home_team VARCHAR, tie_no VARCHAR, attendance VARCHAR) | SELECT home_team FROM table_name_44 WHERE tie_no = "replay" AND attendance = "2,048" |
What was the author/editor/source when the l.a. ranking was 1st? | CREATE TABLE table_19948664_2 (author___editor___source VARCHAR, ranking_la__2_ VARCHAR) | SELECT author___editor___source FROM table_19948664_2 WHERE ranking_la__2_ = "1st" |
What was the result of the 2007 gulf cup of nations? | CREATE TABLE table_name_39 (result VARCHAR, competition VARCHAR) | SELECT result FROM table_name_39 WHERE competition = "2007 gulf cup of nations" |
What state shows for Cunningham? | CREATE TABLE table_name_3 (state VARCHAR, electorate VARCHAR) | SELECT state FROM table_name_3 WHERE electorate = "cunningham" |
How many laps does peter arundell have? | CREATE TABLE table_name_65 (laps VARCHAR, driver VARCHAR) | SELECT laps FROM table_name_65 WHERE driver = "peter arundell" |
Which 2009 has a 2008 of wta premier mandatory tournaments? | CREATE TABLE table_name_64 (Id VARCHAR) | SELECT 2009 FROM table_name_64 WHERE 2008 = "wta premier mandatory tournaments" |
display those departments where more than ten employees work who got a commission percentage. | CREATE TABLE employees (department_id VARCHAR, commission_pct VARCHAR) | SELECT department_id FROM employees GROUP BY department_id HAVING COUNT(commission_pct) > 10 |
What was the date for the away team, team Southport? | CREATE TABLE table_name_80 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_80 WHERE away_team = "southport" |
What was the venue where Chuck Klein played? | CREATE TABLE table_name_85 (venue VARCHAR, player VARCHAR) | SELECT venue FROM table_name_85 WHERE player = "chuck klein" |
Name the district for nairs 8.2 | CREATE TABLE table_23214055_2 (district VARCHAR, nairs VARCHAR) | SELECT district FROM table_23214055_2 WHERE nairs = "8.2" |
What is the low grid for gerhard berger for laps over 56? | CREATE TABLE table_name_18 (grid INTEGER, driver VARCHAR, laps VARCHAR) | SELECT MIN(grid) FROM table_name_18 WHERE driver = "gerhard berger" AND laps > 56 |
Which League championship is the lowest one that has a Venue of penn state ice pavilion, and a Club of penn state nittany lions men's ice hockey? | CREATE TABLE table_name_78 (league INTEGER, venue VARCHAR, club VARCHAR) | SELECT MIN(league) AS championships FROM table_name_78 WHERE venue = "penn state ice pavilion" AND club = "penn state nittany lions men's ice hockey" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.