combined_text stringlengths 106 1.05k |
|---|
###question:What is the total number of attendence has points greater than 40, and detroit as the home?###answer:SELECT COUNT(attendance) FROM table_name_99 WHERE points > 40 AND home = "detroit"###context:CREATE TABLE table_name_99 (attendance VARCHAR, points VARCHAR, home VARCHAR) |
###question:What is the largest number for tropical Lows for the 1990β91 season with more than 10 tropical cyclones?###answer:SELECT MAX(tropical_lows) FROM table_name_13 WHERE season = "1990β91" AND tropical_cyclones > 10###context:CREATE TABLE table_name_13 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VA... |
###question:What is the least number of tropical cyclones when the strongest storm was Tiffany and less than 10 tropical lows.###answer:SELECT MIN(Severe) AS tropical_cyclones FROM table_name_88 WHERE strongest_storm = "tiffany" AND tropical_lows > 10###context:CREATE TABLE table_name_88 (Severe INTEGER, strongest_stor... |
###question:What is the least amount of severe tropical cyclones for the 1992β93 season and the tropical Lows smaller than 6?###answer:SELECT MIN(Severe) AS tropical_cyclones FROM table_name_61 WHERE season = "1992β93" AND tropical_lows < 6###context:CREATE TABLE table_name_61 (Severe INTEGER, season VARCHAR, tropical_... |
###question:What is the least amount of tropical lows for the 1993β94 season with less than 11 tropical cyclones###answer:SELECT MIN(tropical_lows) FROM table_name_41 WHERE season = "1993β94" AND tropical_cyclones < 11###context:CREATE TABLE table_name_41 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VARCHA... |
###question:How many Weeks are on september 8, 1980 and Attendances larger than 55,045? Question 4###answer:SELECT COUNT(week) FROM table_name_22 WHERE date = "september 8, 1980" AND attendance > 55 OFFSET 045###context:CREATE TABLE table_name_22 (week VARCHAR, date VARCHAR, attendance VARCHAR) |
###question:Which Round has a College of stanford?###answer:SELECT round FROM table_name_31 WHERE college = "stanford"###context:CREATE TABLE table_name_31 (round VARCHAR, college VARCHAR) |
###question:Which Round has a Pick of 174?###answer:SELECT round FROM table_name_47 WHERE pick = 174###context:CREATE TABLE table_name_47 (round VARCHAR, pick VARCHAR) |
###question:Which Position has a Pick of 174?###answer:SELECT position FROM table_name_66 WHERE pick = 174###context:CREATE TABLE table_name_66 (position VARCHAR, pick VARCHAR) |
###question:that was held in 1964?###answer:SELECT event FROM table_name_39 WHERE year = 1964###context:CREATE TABLE table_name_39 (event VARCHAR, year VARCHAR) |
###question:What is the name of the Event with a venue that was in toronto, canada?###answer:SELECT event FROM table_name_62 WHERE venue = "toronto, canada"###context:CREATE TABLE table_name_62 (event VARCHAR, venue VARCHAR) |
###question:What is the Year the competition the british empire and commonwealth games were held?###answer:SELECT SUM(year) FROM table_name_98 WHERE competition = "british empire and commonwealth games"###context:CREATE TABLE table_name_98 (year INTEGER, competition VARCHAR) |
###question:What is the position of the commonwealth games?###answer:SELECT position FROM table_name_98 WHERE competition = "commonwealth games"###context:CREATE TABLE table_name_98 (position VARCHAR, competition VARCHAR) |
###question:What is the venue with a competition in 1964?###answer:SELECT venue FROM table_name_15 WHERE year = 1964###context:CREATE TABLE table_name_15 (venue VARCHAR, year VARCHAR) |
###question:Name the date for clay surface and location of santos, brazil###answer:SELECT date FROM table_name_84 WHERE surface = "clay" AND location = "santos, brazil"###context:CREATE TABLE table_name_84 (date VARCHAR, surface VARCHAR, location VARCHAR) |
###question:Name the date with outcome of winner and score of 4β6 6β2 7β6 (7β4)###answer:SELECT date FROM table_name_25 WHERE outcome = "winner" AND score = "4β6 6β2 7β6 (7β4)"###context:CREATE TABLE table_name_25 (date VARCHAR, outcome VARCHAR, score VARCHAR) |
###question:What's the highest capacity for a position of 5 in 2004?###answer:SELECT MAX(capacity) FROM table_name_81 WHERE position_in_2004 = "5"###context:CREATE TABLE table_name_81 (capacity INTEGER, position_in_2004 VARCHAR) |
###question:Which venue was number 9 for 2004?###answer:SELECT venue FROM table_name_45 WHERE position_in_2004 = "9"###context:CREATE TABLE table_name_45 (venue VARCHAR, position_in_2004 VARCHAR) |
###question:What city was founded in 1857?###answer:SELECT city FROM table_name_99 WHERE founded = 1857###context:CREATE TABLE table_name_99 (city VARCHAR, founded VARCHAR) |
###question:Which Opponent has a Time of 2:31?###answer:SELECT opponent FROM table_name_42 WHERE time = "2:31"###context:CREATE TABLE table_name_42 (opponent VARCHAR, time VARCHAR) |
###question:Which Method has a Round of 1, and a Time of 0:28?###answer:SELECT method FROM table_name_98 WHERE round = 1 AND time = "0:28"###context:CREATE TABLE table_name_98 (method VARCHAR, round VARCHAR, time VARCHAR) |
###question:Which Time has an Event of call to arms i?###answer:SELECT time FROM table_name_15 WHERE event = "call to arms i"###context:CREATE TABLE table_name_15 (time VARCHAR, event VARCHAR) |
###question:what team played on april 9###answer:SELECT opponent FROM table_name_58 WHERE date = "april 9"###context:CREATE TABLE table_name_58 (opponent VARCHAR, date VARCHAR) |
###question:What is the smallest frequency (kHz) that is in the location of Longview?###answer:SELECT MIN(frequency__khz_) FROM table_name_61 WHERE licensed_location = "longview"###context:CREATE TABLE table_name_61 (frequency__khz_ INTEGER, licensed_location VARCHAR) |
###question:What is the location with a frequency (kHz) greater than 1370?###answer:SELECT licensed_location FROM table_name_44 WHERE frequency__khz_ > 1370###context:CREATE TABLE table_name_44 (licensed_location VARCHAR, frequency__khz_ INTEGER) |
###question:What is the capacity number for Yunost?###answer:SELECT COUNT(capacity) FROM table_name_27 WHERE venue = "yunost"###context:CREATE TABLE table_name_27 (capacity VARCHAR, venue VARCHAR) |
###question:What is the total number of first prizes in USD for the Canadian Open?###answer:SELECT SUM(1 AS st_prize___) AS $__ FROM table_name_68 WHERE tournament = "canadian open"###context:CREATE TABLE table_name_68 (tournament VARCHAR) |
###question:Which Drawn has a Lost of 19?###answer:SELECT drawn FROM table_name_61 WHERE lost = "19"###context:CREATE TABLE table_name_61 (drawn VARCHAR, lost VARCHAR) |
###question:Which Played has a Club of club?###answer:SELECT played FROM table_name_94 WHERE "club" = "club"###context:CREATE TABLE table_name_94 (played VARCHAR) |
###question:Which Club has 1 Losing bonus?###answer:SELECT club FROM table_name_18 WHERE losing_bonus = "1"###context:CREATE TABLE table_name_18 (club VARCHAR, losing_bonus VARCHAR) |
###question:What is the Losing bonus of 571 Points ?###answer:SELECT losing_bonus FROM table_name_65 WHERE points_for = "571"###context:CREATE TABLE table_name_65 (losing_bonus VARCHAR, points_for VARCHAR) |
###question:Which Lost has a Tries for of 75?###answer:SELECT lost FROM table_name_78 WHERE tries_for = "75"###context:CREATE TABLE table_name_78 (lost VARCHAR, tries_for VARCHAR) |
###question:Who is the opponent in the final of the match on 19 February 2006?###answer:SELECT opponent_in_the_final FROM table_name_24 WHERE date = "19 february 2006"###context:CREATE TABLE table_name_24 (opponent_in_the_final VARCHAR, date VARCHAR) |
###question:Who is the opponent in the final of the match on 26 March 2006?###answer:SELECT opponent_in_the_final FROM table_name_49 WHERE date = "26 march 2006"###context:CREATE TABLE table_name_49 (opponent_in_the_final VARCHAR, date VARCHAR) |
###question:What is the overall number of the player from Utah with a pick # higher than 7?###answer:SELECT SUM(overall) FROM table_name_54 WHERE college = "utah" AND pick__number < 7###context:CREATE TABLE table_name_54 (overall INTEGER, college VARCHAR, pick__number VARCHAR) |
###question:What is the highest round of the player with a pick number lower than 34?###answer:SELECT MAX(round) FROM table_name_83 WHERE pick__number > 34###context:CREATE TABLE table_name_83 (round INTEGER, pick__number INTEGER) |
###question:What round did Mitch Davis, with an overall higher than 118, have?###answer:SELECT SUM(round) FROM table_name_50 WHERE name = "mitch davis" AND overall < 118###context:CREATE TABLE table_name_50 (round INTEGER, name VARCHAR, overall VARCHAR) |
###question:What is the highest overall of the player from Georgia?###answer:SELECT MAX(overall) FROM table_name_54 WHERE college = "georgia"###context:CREATE TABLE table_name_54 (overall INTEGER, college VARCHAR) |
###question:What is the position of the player with an overall of 45?###answer:SELECT position FROM table_name_70 WHERE overall = 45###context:CREATE TABLE table_name_70 (position VARCHAR, overall VARCHAR) |
###question:How many wins for team nsu and over 2 points?###answer:SELECT AVG(wins) FROM table_name_54 WHERE team = "nsu" AND points > 2###context:CREATE TABLE table_name_54 (wins INTEGER, team VARCHAR, points VARCHAR) |
###question:What is the earliest year associated with under 0 wins?###answer:SELECT MIN(year) FROM table_name_55 WHERE wins < 0###context:CREATE TABLE table_name_55 (year INTEGER, wins INTEGER) |
###question:How many wins for team mv agusta, over 10 points, and after 1957?###answer:SELECT SUM(wins) FROM table_name_59 WHERE team = "mv agusta" AND points > 10 AND year > 1957###context:CREATE TABLE table_name_59 (wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR) |
###question:What College/Junior/Club Team (League) has a round of 3?###answer:SELECT college_junior_club_team__league_ FROM table_name_32 WHERE round = 3###context:CREATE TABLE table_name_32 (college_junior_club_team__league_ VARCHAR, round VARCHAR) |
###question:What player has a round larger than 1 in Austria?###answer:SELECT player FROM table_name_6 WHERE round > 1 AND nationality = "austria"###context:CREATE TABLE table_name_6 (player VARCHAR, round VARCHAR, nationality VARCHAR) |
###question:Which player's nationality is from Sweden?###answer:SELECT player FROM table_name_83 WHERE nationality = "sweden"###context:CREATE TABLE table_name_83 (player VARCHAR, nationality VARCHAR) |
###question:What College/Junior/Club Team (League) from Canada has a round smaller than 3?###answer:SELECT college_junior_club_team__league_ FROM table_name_52 WHERE nationality = "canada" AND round < 3###context:CREATE TABLE table_name_52 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR, round VARCHAR) |
###question:What was the distance in 1997?###answer:SELECT distance FROM table_name_71 WHERE year = 1997###context:CREATE TABLE table_name_71 (distance VARCHAR, year VARCHAR) |
###question:Who was the opponents in the final on January 5, 2003, on a hard surface?###answer:SELECT opponents_in_the_final FROM table_name_19 WHERE surface = "hard" AND date = "january 5, 2003"###context:CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) |
###question:What was the final score on the February 19, 2012 final?###answer:SELECT score_in_the_final FROM table_name_46 WHERE date = "february 19, 2012"###context:CREATE TABLE table_name_46 (score_in_the_final VARCHAR, date VARCHAR) |
###question:Name the least attendance with venue of away on 24 august 2007###answer:SELECT MIN(attendance__away_) FROM table_name_99 WHERE venue = "away" AND date = "24 august 2007"###context:CREATE TABLE table_name_99 (attendance__away_ INTEGER, venue VARCHAR, date VARCHAR) |
###question:Name the average attendance with result of won 2-0 on 2 november 2007###answer:SELECT AVG(attendance__away_) FROM table_name_82 WHERE result = "won 2-0" AND date = "2 november 2007"###context:CREATE TABLE table_name_82 (attendance__away_ INTEGER, result VARCHAR, date VARCHAR) |
###question:What is the uniform number of the player whose last name is Wiltshire?###answer:SELECT MIN(uni_number) FROM table_name_25 WHERE surname = "wiltshire"###context:CREATE TABLE table_name_25 (uni_number INTEGER, surname VARCHAR) |
###question:When the rank is larger than 3 with a second quarter of johnson & johnson 156,515.9, what is the fourth quarter?###answer:SELECT fourth_quarter FROM table_name_86 WHERE rank > 3 AND second_quarter = "johnson & johnson 156,515.9"###context:CREATE TABLE table_name_86 (fourth_quarter VARCHAR, rank VARCHAR, sec... |
###question:With a rank of 2 what is the second quarter?###answer:SELECT second_quarter FROM table_name_69 WHERE rank = 2###context:CREATE TABLE table_name_69 (second_quarter VARCHAR, rank VARCHAR) |
###question:When the third quarter is China Mobile 195,680.4, what is the rank?###answer:SELECT rank FROM table_name_45 WHERE third_quarter = "china mobile 195,680.4"###context:CREATE TABLE table_name_45 (rank VARCHAR, third_quarter VARCHAR) |
###question:When the first quarter is procter & gamble 138,013, what is the rank?###answer:SELECT rank FROM table_name_15 WHERE first_quarter = "procter & gamble 138,013"###context:CREATE TABLE table_name_15 (rank VARCHAR, first_quarter VARCHAR) |
###question:When the rank is less than 4, and has a second quarter of exxon mobil 341,140.3, what is the fourth quarter?###answer:SELECT fourth_quarter FROM table_name_27 WHERE rank < 4 AND second_quarter = "exxon mobil 341,140.3"###context:CREATE TABLE table_name_27 (fourth_quarter VARCHAR, rank VARCHAR, second_quarte... |
###question:What is the Term end that has a Party of united australia and 184 days in office?###answer:SELECT term_end FROM table_name_74 WHERE party = "united australia" AND term_in_office = "184 days"###context:CREATE TABLE table_name_74 (term_end VARCHAR, party VARCHAR, term_in_office VARCHAR) |
###question:What is the sum of average values for 23 yards?###answer:SELECT SUM(average) FROM table_name_5 WHERE yards = 23###context:CREATE TABLE table_name_5 (average INTEGER, yards VARCHAR) |
###question:What are the most yards for 2 sacks and an average greater than 0?###answer:SELECT MAX(yards) FROM table_name_27 WHERE sacks = 2 AND average > 0###context:CREATE TABLE table_name_27 (yards INTEGER, sacks VARCHAR, average VARCHAR) |
###question:What is listed for the Bronze, with the Location of Bangkok, and the Year of 1978?###answer:SELECT bronze FROM table_name_6 WHERE location = "bangkok" AND year = 1978###context:CREATE TABLE table_name_6 (bronze VARCHAR, location VARCHAR, year VARCHAR) |
###question:What's listed for the lowest Year that a Silver of Kim Kyung-Ho?###answer:SELECT MIN(year) FROM table_name_51 WHERE silver = "kim kyung-ho"###context:CREATE TABLE table_name_51 (year INTEGER, silver VARCHAR) |
###question:What's the Gold that also has Bronze of Kim Sun-Bin?###answer:SELECT gold FROM table_name_61 WHERE bronze = "kim sun-bin"###context:CREATE TABLE table_name_61 (gold VARCHAR, bronze VARCHAR) |
###question:What's the Bronze that's also got a Godl of Kim Woo-Jin?###answer:SELECT bronze FROM table_name_75 WHERE gold = "kim woo-jin"###context:CREATE TABLE table_name_75 (bronze VARCHAR, gold VARCHAR) |
###question:What is listed as the highest Year that's also got a Bronze of Wataru Haraguchi?###answer:SELECT MAX(year) FROM table_name_1 WHERE bronze = "wataru haraguchi"###context:CREATE TABLE table_name_1 (year INTEGER, bronze VARCHAR) |
###question:What was the score when their record was 35β23β15?###answer:SELECT score FROM table_name_58 WHERE record = "35β23β15"###context:CREATE TABLE table_name_58 (score VARCHAR, record VARCHAR) |
###question:Which home team has a score of 5 β 6?###answer:SELECT home FROM table_name_90 WHERE score = "5 β 6"###context:CREATE TABLE table_name_90 (home VARCHAR, score VARCHAR) |
###question:In what county is the school of Merrillville?###answer:SELECT county FROM table_name_17 WHERE school = "merrillville"###context:CREATE TABLE table_name_17 (county VARCHAR, school VARCHAR) |
###question:The school of Portage was in what conference previous?###answer:SELECT previous_conference FROM table_name_41 WHERE school = "portage"###context:CREATE TABLE table_name_41 (previous_conference VARCHAR, school VARCHAR) |
###question:What is the name of the school that is in Valparaiso?###answer:SELECT school FROM table_name_37 WHERE location = "valparaiso"###context:CREATE TABLE table_name_37 (school VARCHAR, location VARCHAR) |
###question:Which FA Cup is the highest one that has a Malaysia Cup of 0, and a Player of ahmad fouzee masuri, and a Total larger than 0?###answer:SELECT MAX(fa_cup) FROM table_name_25 WHERE malaysia_cup = 0 AND player = "ahmad fouzee masuri" AND total > 0###context:CREATE TABLE table_name_25 (fa_cup INTEGER, total VAR... |
###question:How many totals have a Player of ahmad fouzee masuri, and an FA Cup larger than 0?###answer:SELECT COUNT(total) FROM table_name_37 WHERE player = "ahmad fouzee masuri" AND fa_cup > 0###context:CREATE TABLE table_name_37 (total VARCHAR, player VARCHAR, fa_cup VARCHAR) |
###question:Which FA Cup has a Player of khairan ezuan razali, and a Total smaller than 0?###answer:SELECT AVG(fa_cup) FROM table_name_62 WHERE player = "khairan ezuan razali" AND total < 0###context:CREATE TABLE table_name_62 (fa_cup INTEGER, player VARCHAR, total VARCHAR) |
###question:How many Malaysia Cups have a Total larger than 3, and a Player of ivan yusoff, and a League smaller than 2?###answer:SELECT COUNT(malaysia_cup) FROM table_name_8 WHERE total > 3 AND player = "ivan yusoff" AND league < 2###context:CREATE TABLE table_name_8 (malaysia_cup VARCHAR, league VARCHAR, total VARCHA... |
###question:Which FA Cup has a Malaysia Cup larger than 0, and a Total of 8?###answer:SELECT SUM(fa_cup) FROM table_name_44 WHERE malaysia_cup > 0 AND total = 8###context:CREATE TABLE table_name_44 (fa_cup INTEGER, malaysia_cup VARCHAR, total VARCHAR) |
###question:Which Year is the highest one that has a Venue of edmonton, canada?###answer:SELECT MAX(year) FROM table_name_50 WHERE venue = "edmonton, canada"###context:CREATE TABLE table_name_50 (year INTEGER, venue VARCHAR) |
###question:Which Position has a Competition of world championships, and a Year larger than 1997?###answer:SELECT position FROM table_name_27 WHERE competition = "world championships" AND year > 1997###context:CREATE TABLE table_name_27 (position VARCHAR, competition VARCHAR, year VARCHAR) |
###question:Which Venue has a Notes of heptathlon, and a Year of 1991?###answer:SELECT venue FROM table_name_20 WHERE notes = "heptathlon" AND year = 1991###context:CREATE TABLE table_name_20 (venue VARCHAR, notes VARCHAR, year VARCHAR) |
###question:What days held has noiz as the wrestler?###answer:SELECT days_held FROM table_name_95 WHERE wrestler = "noiz"###context:CREATE TABLE table_name_95 (days_held VARCHAR, wrestler VARCHAR) |
###question:What location has tatsuhito takaiwa as the wrestler?###answer:SELECT location FROM table_name_14 WHERE wrestler = "tatsuhito takaiwa"###context:CREATE TABLE table_name_14 (location VARCHAR, wrestler VARCHAR) |
###question:What event has 8 as the days held?###answer:SELECT event FROM table_name_33 WHERE days_held = "8"###context:CREATE TABLE table_name_33 (event VARCHAR, days_held VARCHAR) |
###question:What event has unknown as the days held.?###answer:SELECT event FROM table_name_98 WHERE days_held = "unknown"###context:CREATE TABLE table_name_98 (event VARCHAR, days_held VARCHAR) |
###question:What is the Displacement of the Iveco F1CE3481E Engine?###answer:SELECT displacement FROM table_name_87 WHERE engine = "iveco f1ce3481e"###context:CREATE TABLE table_name_87 (displacement VARCHAR, engine VARCHAR) |
###question:What is the Displacement of the 180 Multijet Power/3.0 HDI Model?###answer:SELECT displacement FROM table_name_68 WHERE model = "180 multijet power/3.0 hdi"###context:CREATE TABLE table_name_68 (displacement VARCHAR, model VARCHAR) |
###question:What is the Valvetrain of the Diesel Engines Model?###answer:SELECT valvetrain FROM table_name_12 WHERE model = "diesel engines"###context:CREATE TABLE table_name_12 (valvetrain VARCHAR, model VARCHAR) |
###question:Year(s) won of 1994 , 1997 has what average total?###answer:SELECT AVG(total) FROM table_name_6 WHERE year_s__won = "1994 , 1997"###context:CREATE TABLE table_name_6 (total INTEGER, year_s__won VARCHAR) |
###question:Player of corey pavin, and a To par larger than 5 has what average total?###answer:SELECT AVG(total) FROM table_name_41 WHERE player = "corey pavin" AND to_par > 5###context:CREATE TABLE table_name_41 (total INTEGER, player VARCHAR, to_par VARCHAR) |
###question:Total smaller than 285, and a To par larger than 1 belongs to what player?###answer:SELECT player FROM table_name_29 WHERE total < 285 AND to_par > 1###context:CREATE TABLE table_name_29 (player VARCHAR, total VARCHAR, to_par VARCHAR) |
###question:Total larger than 285, and a Finish of t30 belongs to what player?###answer:SELECT player FROM table_name_83 WHERE total > 285 AND finish = "t30"###context:CREATE TABLE table_name_83 (player VARCHAR, total VARCHAR, finish VARCHAR) |
###question:Which player for a team with an 18-20 record had the most rebounds in a game?###answer:SELECT high_rebounds FROM table_name_38 WHERE record = "18-20"###context:CREATE TABLE table_name_38 (high_rebounds VARCHAR, record VARCHAR) |
###question:Name the total number of frequency Mhz with class of d and call sign of k201bm and ERP W less than 74###answer:SELECT COUNT(frequency_mhz) FROM table_name_54 WHERE class = "d" AND call_sign = "k201bm" AND erp_w < 74###context:CREATE TABLE table_name_54 (frequency_mhz VARCHAR, erp_w VARCHAR, class VARCHAR, c... |
###question:Name the least frequency Mhz with call sign of k202ag###answer:SELECT MIN(frequency_mhz) FROM table_name_24 WHERE call_sign = "k202ag"###context:CREATE TABLE table_name_24 (frequency_mhz INTEGER, call_sign VARCHAR) |
###question:Name the class with call sign of k220cp###answer:SELECT class FROM table_name_2 WHERE call_sign = "k220cp"###context:CREATE TABLE table_name_2 (class VARCHAR, call_sign VARCHAR) |
###question:What is the Winnipeg Jets record?###answer:SELECT record FROM table_name_51 WHERE opponent = "winnipeg jets"###context:CREATE TABLE table_name_51 (record VARCHAR, opponent VARCHAR) |
###question:What's the stadium on November 8?###answer:SELECT home FROM table_name_26 WHERE date = "november 8"###context:CREATE TABLE table_name_26 (home VARCHAR, date VARCHAR) |
###question:Who was the visitor on March 17?###answer:SELECT visitor FROM table_name_53 WHERE date = "march 17"###context:CREATE TABLE table_name_53 (visitor VARCHAR, date VARCHAR) |
###question:What's the score for Toronto Maple Leafs on November 10?###answer:SELECT score FROM table_name_49 WHERE home = "toronto maple leafs" AND date = "november 10"###context:CREATE TABLE table_name_49 (score VARCHAR, home VARCHAR, date VARCHAR) |
###question:Who was the visitor on October 31?###answer:SELECT visitor FROM table_name_75 WHERE date = "october 31"###context:CREATE TABLE table_name_75 (visitor VARCHAR, date VARCHAR) |
###question:What is the rank associated with 0 wins and a 350cc class?###answer:SELECT rank FROM table_name_42 WHERE wins = 0 AND class = "350cc"###context:CREATE TABLE table_name_42 (rank VARCHAR, wins VARCHAR, class VARCHAR) |
###question:What is the run 2 of the athlete from Australia with a run 1 less than 53.75?###answer:SELECT run_2 FROM table_name_73 WHERE country = "australia" AND run_1 < 53.75###context:CREATE TABLE table_name_73 (run_2 VARCHAR, country VARCHAR, run_1 VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.