combined_text stringlengths 106 1.05k |
|---|
###question:Which position has a club of Meralomas and a player named David Biddle?###answer:SELECT position FROM table_name_59 WHERE club_province = "meralomas" AND player = "david biddle"###context:CREATE TABLE table_name_59 (position VARCHAR, club_province VARCHAR, player VARCHAR) |
###question:What is the average number of caps for Meralomas with positions of centre?###answer:SELECT AVG(caps) FROM table_name_75 WHERE club_province = "meralomas" AND position = "centre"###context:CREATE TABLE table_name_75 (caps INTEGER, club_province VARCHAR, position VARCHAR) |
###question:Who are the scorers when the score is 9-2?###answer:SELECT scorers FROM table_name_4 WHERE score = "9-2"###context:CREATE TABLE table_name_4 (scorers VARCHAR, score VARCHAR) |
###question:What is the smallest population in a region greater than 9?###answer:SELECT MIN(population) FROM table_name_94 WHERE region > 9###context:CREATE TABLE table_name_94 (population INTEGER, region INTEGER) |
###question:What is the average area for code 98030 with population over 312?###answer:SELECT AVG(area__km_2__) FROM table_name_80 WHERE code = 98030 AND population > 312###context:CREATE TABLE table_name_80 (area__km_2__ INTEGER, code VARCHAR, population VARCHAR) |
###question:What is the attendance on may 28?###answer:SELECT attendance FROM table_name_62 WHERE date = "may 28"###context:CREATE TABLE table_name_62 (attendance VARCHAR, date VARCHAR) |
###question:On the Date of 4 Oct 2009, who was the Runner(s)-up?###answer:SELECT runner_s__up FROM table_name_83 WHERE date = "4 oct 2009"###context:CREATE TABLE table_name_83 (runner_s__up VARCHAR, date VARCHAR) |
###question:On the Date of 2 Aug 2009, who was the Runner(s)-up?###answer:SELECT runner_s__up FROM table_name_52 WHERE date = "2 aug 2009"###context:CREATE TABLE table_name_52 (runner_s__up VARCHAR, date VARCHAR) |
###question:Which Tournament was on the Date 6 Sep 2009?###answer:SELECT tournament FROM table_name_23 WHERE date = "6 sep 2009"###context:CREATE TABLE table_name_23 (tournament VARCHAR, date VARCHAR) |
###question:What was the Winning score for the Mynavi ABC Championship Tournament?###answer:SELECT winning_score FROM table_name_55 WHERE tournament = "mynavi abc championship"###context:CREATE TABLE table_name_55 (winning_score VARCHAR, tournament VARCHAR) |
###question:What was the Winning score when the Margin of victory is 5 strokes and the Date was 6 Sep 2009?###answer:SELECT winning_score FROM table_name_29 WHERE margin_of_victory = "5 strokes" AND date = "6 sep 2009"###context:CREATE TABLE table_name_29 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR) |
###question:Who was the Runner(s)-up on the Date 4 Oct 2009?###answer:SELECT runner_s__up FROM table_name_66 WHERE date = "4 oct 2009"###context:CREATE TABLE table_name_66 (runner_s__up VARCHAR, date VARCHAR) |
###question:What is the score with third place of stefan edberg?###answer:SELECT score FROM table_name_33 WHERE third_place = "stefan edberg"###context:CREATE TABLE table_name_33 (score VARCHAR, third_place VARCHAR) |
###question:Name the runner-up for algarve tournament###answer:SELECT runner_up FROM table_name_40 WHERE tournament = "algarve"###context:CREATE TABLE table_name_40 (runner_up VARCHAR, tournament VARCHAR) |
###question:I want to know the tournament that has a third place of magnus gustafsson###answer:SELECT tournament FROM table_name_25 WHERE third_place = "magnus gustafsson"###context:CREATE TABLE table_name_25 (tournament VARCHAR, third_place VARCHAR) |
###question:Who was the winner when the third place was fernando meligeni?###answer:SELECT winner FROM table_name_11 WHERE third_place = "fernando meligeni"###context:CREATE TABLE table_name_11 (winner VARCHAR, third_place VARCHAR) |
###question:Name the tournament for patrick rafter winning###answer:SELECT tournament FROM table_name_3 WHERE winner = "patrick rafter"###context:CREATE TABLE table_name_3 (tournament VARCHAR, winner VARCHAR) |
###question:Who was the owner in 1996 of trainer Nick Zito?###answer:SELECT owner FROM table_name_10 WHERE trainer = "nick zito" AND year = "1996"###context:CREATE TABLE table_name_10 (owner VARCHAR, trainer VARCHAR, year VARCHAR) |
###question:What year did jockey Ramon Dominguez have a distance of 1-1/16?###answer:SELECT year FROM table_name_40 WHERE distance = "1-1/16" AND jockey = "ramon dominguez"###context:CREATE TABLE table_name_40 (year VARCHAR, distance VARCHAR, jockey VARCHAR) |
###question:Who was the owner of the trainer Steve Klesaris?###answer:SELECT owner FROM table_name_80 WHERE trainer = "steve klesaris"###context:CREATE TABLE table_name_80 (owner VARCHAR, trainer VARCHAR) |
###question:Who is the owner of the Raglan Road winner?###answer:SELECT owner FROM table_name_43 WHERE winner = "raglan road"###context:CREATE TABLE table_name_43 (owner VARCHAR, winner VARCHAR) |
###question:What year was Burning Roma the winner?###answer:SELECT year FROM table_name_2 WHERE winner = "burning roma"###context:CREATE TABLE table_name_2 (year VARCHAR, winner VARCHAR) |
###question:What is the win/loss of coach Peter German?###answer:SELECT win_loss FROM table_name_23 WHERE coach = "peter german"###context:CREATE TABLE table_name_23 (win_loss VARCHAR, coach VARCHAR) |
###question:Which tyre was before 1995 with 142 laps?###answer:SELECT tyres FROM table_name_14 WHERE year < 1995 AND laps = 142###context:CREATE TABLE table_name_14 (tyres VARCHAR, year VARCHAR, laps VARCHAR) |
###question:Which tyres has more than 5 laps with team nissan motorsports international?###answer:SELECT tyres FROM table_name_89 WHERE laps > 5 AND team = "nissan motorsports international"###context:CREATE TABLE table_name_89 (tyres VARCHAR, laps VARCHAR, team VARCHAR) |
###question:What position that has m tyres and 352 or more laps?###answer:SELECT pos FROM table_name_56 WHERE tyres = "m" AND laps > 352###context:CREATE TABLE table_name_56 (pos VARCHAR, tyres VARCHAR, laps VARCHAR) |
###question:who is the team 2 when the team 1 is sestese(e16)?###answer:SELECT team_2 FROM table_name_29 WHERE team_1 = "sestese(e16)"###context:CREATE TABLE table_name_29 (team_2 VARCHAR, team_1 VARCHAR) |
###question:What is the largest base pair with a Strain of unspecified?###answer:SELECT MAX(base_pairs) FROM table_name_2 WHERE strain = "unspecified"###context:CREATE TABLE table_name_2 (base_pairs INTEGER, strain VARCHAR) |
###question:What is the lowst base pair with a Species of borrelia garinii, and a Genes larger than 832?###answer:SELECT MIN(base_pairs) FROM table_name_21 WHERE species = "borrelia garinii" AND genes > 832###context:CREATE TABLE table_name_21 (base_pairs INTEGER, species VARCHAR, genes VARCHAR) |
###question:What type has an unspecified species and less than 367 genes?###answer:SELECT type FROM table_name_65 WHERE species = "unspecified" AND genes < 367###context:CREATE TABLE table_name_65 (type VARCHAR, species VARCHAR, genes VARCHAR) |
###question:What base pair has 832 genes?###answer:SELECT base_pairs FROM table_name_79 WHERE genes = 832###context:CREATE TABLE table_name_79 (base_pairs VARCHAR, genes VARCHAR) |
###question:Which competition was ranked 9?###answer:SELECT competition FROM table_name_53 WHERE rank = 9###context:CREATE TABLE table_name_53 (competition VARCHAR, rank VARCHAR) |
###question:What is the sum of draws with 274-357 goals?###answer:SELECT SUM(drawn) FROM table_name_94 WHERE goals = "274-357"###context:CREATE TABLE table_name_94 (drawn INTEGER, goals VARCHAR) |
###question:What is the lowest played 2 number with less than 83 losses and less than 65 draws with Chernomorets Novorossiysk in season 8?###answer:SELECT MIN(played_2) FROM table_name_65 WHERE lost > 83 AND seasons = 8 AND club_1 = "chernomorets novorossiysk" AND drawn < 65###context:CREATE TABLE table_name_65 (played... |
###question:What is the rank number with 562-506 goals before season 13?###answer:SELECT COUNT(rank) FROM table_name_88 WHERE goals = "562-506" AND seasons < 13###context:CREATE TABLE table_name_88 (rank VARCHAR, goals VARCHAR, seasons VARCHAR) |
###question:How many seasons have goals of 261-338 with more than 111 losses?###answer:SELECT COUNT(seasons) FROM table_name_77 WHERE goals = "261-338" AND lost > 111###context:CREATE TABLE table_name_77 (seasons VARCHAR, goals VARCHAR, lost VARCHAR) |
###question:What is the highest season number with 57 draws, rank 20, and more than 1 spell?###answer:SELECT MAX(seasons) FROM table_name_28 WHERE drawn = 57 AND rank = 20 AND spells > 1###context:CREATE TABLE table_name_28 (seasons INTEGER, spells VARCHAR, drawn VARCHAR, rank VARCHAR) |
###question:What was the results of the game at Doha?###answer:SELECT result FROM table_name_51 WHERE venue = "doha"###context:CREATE TABLE table_name_51 (result VARCHAR, venue VARCHAR) |
###question:What was the score during the competition of 1998 fifa world cup qualification?###answer:SELECT score FROM table_name_42 WHERE competition = "1998 fifa world cup qualification"###context:CREATE TABLE table_name_42 (score VARCHAR, competition VARCHAR) |
###question:What is the competition that took place on October 1, 1994?###answer:SELECT competition FROM table_name_45 WHERE date = "october 1, 1994"###context:CREATE TABLE table_name_45 (competition VARCHAR, date VARCHAR) |
###question:What is the competition that had a 2-2 result?###answer:SELECT competition FROM table_name_58 WHERE result = "2-2"###context:CREATE TABLE table_name_58 (competition VARCHAR, result VARCHAR) |
###question:Where did the competition take place that had a 4-2 result?###answer:SELECT venue FROM table_name_46 WHERE result = "4-2"###context:CREATE TABLE table_name_46 (venue VARCHAR, result VARCHAR) |
###question:Where was the competition that took place that had a 5-1 result?###answer:SELECT venue FROM table_name_7 WHERE result = "5-1"###context:CREATE TABLE table_name_7 (venue VARCHAR, result VARCHAR) |
###question:Tell me the highest goals with tries less than 1 and fullback position###answer:SELECT MAX(goals) FROM table_name_5 WHERE tries < 1 AND position = "fullback"###context:CREATE TABLE table_name_5 (goals INTEGER, tries VARCHAR, position VARCHAR) |
###question:Tell me the lowest tries for goals more than 0 with centre position and points less than 54###answer:SELECT MIN(tries) FROM table_name_40 WHERE goals > 0 AND position = "centre" AND points < 54###context:CREATE TABLE table_name_40 (tries INTEGER, points VARCHAR, goals VARCHAR, position VARCHAR) |
###question:I want to know the player with tries more than 1 and position of hooker with points less than 54###answer:SELECT player FROM table_name_18 WHERE tries > 1 AND points < 54 AND position = "hooker"###context:CREATE TABLE table_name_18 (player VARCHAR, position VARCHAR, tries VARCHAR, points VARCHAR) |
###question:Tell me the player with points larger than 36 and goals more than 0 with tries of 12###answer:SELECT player FROM table_name_56 WHERE points > 36 AND goals > 0 AND tries = 12###context:CREATE TABLE table_name_56 (player VARCHAR, tries VARCHAR, points VARCHAR, goals VARCHAR) |
###question:What Tournament was the 2010 Olympic Games?###answer:SELECT tournament FROM table_name_58 WHERE 2010 = "olympic games"###context:CREATE TABLE table_name_58 (tournament VARCHAR) |
###question:Which width had an entered service year of 2010?###answer:SELECT width FROM table_name_3 WHERE entered_service = 2010###context:CREATE TABLE table_name_3 (width VARCHAR, entered_service VARCHAR) |
###question:What is the most recent built year when the year of entering service was more recent than 2003, and the knots is less than 27?###answer:SELECT MAX(built) FROM table_name_44 WHERE entered_service > 2003 AND knots < 27###context:CREATE TABLE table_name_44 (built INTEGER, entered_service VARCHAR, knots VARCHAR... |
###question:How many knots did the Ms Moby Vincent have when passengers was less than 1.6?###answer:SELECT COUNT(knots) FROM table_name_11 WHERE ship = "ms moby vincent" AND passengers < 1.6###context:CREATE TABLE table_name_11 (knots VARCHAR, ship VARCHAR, passengers VARCHAR) |
###question:Where did Richmond play as the away team?###answer:SELECT venue FROM table_name_51 WHERE away_team = "richmond"###context:CREATE TABLE table_name_51 (venue VARCHAR, away_team VARCHAR) |
###question:When the phillies 1:15 pm played on April 9, what was the attendance?###answer:SELECT attendance FROM table_name_21 WHERE opponent = "phillies 1:15 pm" AND date = "april 9"###context:CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR, date VARCHAR) |
###question:When was there a score of 5-1?###answer:SELECT date FROM table_name_42 WHERE score = "5-1"###context:CREATE TABLE table_name_42 (date VARCHAR, score VARCHAR) |
###question:What is the average number of silvers for nations with over 1 bronze medal?###answer:SELECT AVG(silver) FROM table_name_62 WHERE bronze > 1###context:CREATE TABLE table_name_62 (silver INTEGER, bronze INTEGER) |
###question:What is the Interregnum ended for Count Palatine of Saxony of frederick augustus i, elector of saxony?###answer:SELECT interregnum_ended FROM table_name_37 WHERE count_palatine_of_saxony = "frederick augustus i, elector of saxony"###context:CREATE TABLE table_name_37 (interregnum_ended VARCHAR, count_palati... |
###question:What is the Interregnum ended for Count Palatine of Saxony of john george ii, elector of saxony?###answer:SELECT interregnum_ended FROM table_name_69 WHERE count_palatine_of_saxony = "john george ii, elector of saxony"###context:CREATE TABLE table_name_69 (interregnum_ended VARCHAR, count_palatine_of_saxony... |
###question:What is the duration for Count Palatine of the Rhine of charles albert, elector of bavaria?###answer:SELECT duration FROM table_name_53 WHERE count_palatine_of_the_rhine = "charles albert, elector of bavaria"###context:CREATE TABLE table_name_53 (duration VARCHAR, count_palatine_of_the_rhine VARCHAR) |
###question:What is the name of the Count Palatine of the Rhine with a Interregnum began of 2 april 1657 death of ferdinand iii?###answer:SELECT count_palatine_of_the_rhine FROM table_name_65 WHERE interregnum_began = "2 april 1657 death of ferdinand iii"###context:CREATE TABLE table_name_65 (count_palatine_of_the_rhin... |
###question:What is the Interregnum ended for the person with a Duration of 3 months, 6 days?###answer:SELECT interregnum_ended FROM table_name_78 WHERE duration = "3 months, 6 days"###context:CREATE TABLE table_name_78 (interregnum_ended VARCHAR, duration VARCHAR) |
###question:What was the crowd size when the home team was Hawthorn?###answer:SELECT crowd FROM table_name_53 WHERE home_team = "hawthorn"###context:CREATE TABLE table_name_53 (crowd VARCHAR, home_team VARCHAR) |
###question:What is the total share with Timeslot of 8:30 p.m., anAir Date of march 27, 2008, and a Rank greater than 65?###answer:SELECT SUM(share) FROM table_name_25 WHERE timeslot = "8:30 p.m." AND air_date = "march 27, 2008" AND rank__overall_ > 65###context:CREATE TABLE table_name_25 (share INTEGER, rank__overall_... |
###question:What is the total number of Viewers with a Rank (Night) of n/a, and a Timeslot of 8:30 p.m.?###answer:SELECT COUNT(viewers__m_) FROM table_name_80 WHERE rank__night_ = "n/a" AND timeslot = "8:30 p.m."###context:CREATE TABLE table_name_80 (viewers__m_ VARCHAR, rank__night_ VARCHAR, timeslot VARCHAR) |
###question:How many people attended the game when Calgary was the home team and the decision was McLean?###answer:SELECT COUNT(attendance) FROM table_name_11 WHERE decision = "mclean" AND home = "calgary"###context:CREATE TABLE table_name_11 (attendance VARCHAR, decision VARCHAR, home VARCHAR) |
###question:What is the record of the game when Los Angeles was the home team?###answer:SELECT record FROM table_name_38 WHERE home = "los angeles"###context:CREATE TABLE table_name_38 (record VARCHAR, home VARCHAR) |
###question:What is the record of the game with a score of 1 – 5?###answer:SELECT record FROM table_name_39 WHERE score = "1 – 5"###context:CREATE TABLE table_name_39 (record VARCHAR, score VARCHAR) |
###question:What is the least number of people to attend a game when Los Angeles was the home team?###answer:SELECT MIN(attendance) FROM table_name_97 WHERE home = "los angeles"###context:CREATE TABLE table_name_97 (attendance INTEGER, home VARCHAR) |
###question:who is the runner- up when the tournament is santiago?###answer:SELECT runner_up FROM table_name_96 WHERE tournament = "santiago"###context:CREATE TABLE table_name_96 (runner_up VARCHAR, tournament VARCHAR) |
###question:what is the score when the runner-up is richard krajicek?###answer:SELECT score FROM table_name_54 WHERE runner_up = "richard krajicek"###context:CREATE TABLE table_name_54 (score VARCHAR, runner_up VARCHAR) |
###question:what is the tournament when the score is 7-6(0), 6-3?###answer:SELECT tournament FROM table_name_48 WHERE score = "7-6(0), 6-3"###context:CREATE TABLE table_name_48 (tournament VARCHAR, score VARCHAR) |
###question:who is third place when the tournament is delray beach?###answer:SELECT third_place FROM table_name_77 WHERE tournament = "delray beach"###context:CREATE TABLE table_name_77 (third_place VARCHAR, tournament VARCHAR) |
###question:What was the score in the Continental Qualifier on February 23, 2003?###answer:SELECT score FROM table_name_63 WHERE competition = "continental qualifier" AND date = "february 23, 2003"###context:CREATE TABLE table_name_63 (score VARCHAR, competition VARCHAR, date VARCHAR) |
###question:What was the score for the World Cup Qualifier?###answer:SELECT score FROM table_name_72 WHERE competition = "world cup qualifier"###context:CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR) |
###question:What was the result on February 18, 2003?###answer:SELECT result FROM table_name_61 WHERE date = "february 18, 2003"###context:CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR) |
###question:When was the ship that had a fate of 'converted to laker, 1961; still in service' commissioned?###answer:SELECT commissioned FROM table_name_14 WHERE fate = "converted to laker, 1961; still in service"###context:CREATE TABLE table_name_14 (commissioned VARCHAR, fate VARCHAR) |
###question:When was the ship originally named sachem finally decommissioned?###answer:SELECT final_decommission FROM table_name_94 WHERE original_name = "sachem"###context:CREATE TABLE table_name_94 (final_decommission VARCHAR, original_name VARCHAR) |
###question:What did the away team score in the game against Richmond?###answer:SELECT away_team AS score FROM table_name_69 WHERE home_team = "richmond"###context:CREATE TABLE table_name_69 (away_team VARCHAR, home_team VARCHAR) |
###question:Which player has no 0 results and multiples ties?###answer:SELECT player FROM table_name_41 WHERE no_result = 0 AND tied > 0###context:CREATE TABLE table_name_41 (player VARCHAR, no_result VARCHAR, tied VARCHAR) |
###question:What is the low no result with more than 5 loss and a win ration lesser than 58.06?###answer:SELECT MIN(no_result) FROM table_name_80 WHERE lost > 5 AND _percentage_win_[a_] < 58.06###context:CREATE TABLE table_name_80 (no_result INTEGER, lost VARCHAR, _percentage_win_ VARCHAR, a_ VARCHAR) |
###question:Name the opponent for may 12###answer:SELECT opponent FROM table_name_73 WHERE date = "may 12"###context:CREATE TABLE table_name_73 (opponent VARCHAR, date VARCHAR) |
###question:Name the date for Loss of schilling (5–2)###answer:SELECT date FROM table_name_31 WHERE loss = "schilling (5–2)"###context:CREATE TABLE table_name_31 (date VARCHAR, loss VARCHAR) |
###question:Name the record for may 31###answer:SELECT record FROM table_name_64 WHERE date = "may 31"###context:CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR) |
###question:What was the highest average for the contestant having an interview score of 8.46?###answer:SELECT MAX(average) FROM table_name_84 WHERE interview = 8.46###context:CREATE TABLE table_name_84 (average INTEGER, interview VARCHAR) |
###question:What day had a time of 29.816?###answer:SELECT date FROM table_name_45 WHERE time = "29.816"###context:CREATE TABLE table_name_45 (date VARCHAR, time VARCHAR) |
###question:What kind of car has the NASCAR Camping World Truck Series record?###answer:SELECT car_make FROM table_name_7 WHERE record = "nascar camping world truck series"###context:CREATE TABLE table_name_7 (car_make VARCHAR, record VARCHAR) |
###question:Was it a home game on the date of April 6?###answer:SELECT home FROM table_name_6 WHERE date = "april 6"###context:CREATE TABLE table_name_6 (home VARCHAR, date VARCHAR) |
###question:What was the date when the home team was Dallas?###answer:SELECT date FROM table_name_28 WHERE home = "dallas"###context:CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR) |
###question:What is Rhett Mclane's highest pick number?###answer:SELECT MAX(pick__number) FROM table_name_94 WHERE player = "rhett mclane"###context:CREATE TABLE table_name_94 (pick__number INTEGER, player VARCHAR) |
###question:What is Colorado College's lowest pick number?###answer:SELECT MIN(pick__number) FROM table_name_9 WHERE college = "colorado"###context:CREATE TABLE table_name_9 (pick__number INTEGER, college VARCHAR) |
###question:What player belongs to Northwestern College?###answer:SELECT player FROM table_name_34 WHERE college = "northwestern"###context:CREATE TABLE table_name_34 (player VARCHAR, college VARCHAR) |
###question:What CFL Team is Pascal Masson on?###answer:SELECT cfl_team FROM table_name_76 WHERE player = "pascal masson"###context:CREATE TABLE table_name_76 (cfl_team VARCHAR, player VARCHAR) |
###question:What's the number & name for the date after 1954?###answer:SELECT number_ & _name FROM table_name_28 WHERE date > 1954###context:CREATE TABLE table_name_28 (number_ VARCHAR, _name VARCHAR, date INTEGER) |
###question:What's the date for princess royal class locomotive trust?###answer:SELECT date FROM table_name_77 WHERE owner_s_ = "princess royal class locomotive trust"###context:CREATE TABLE table_name_77 (date VARCHAR, owner_s_ VARCHAR) |
###question:What's the number & name for the description peckett 0-4-0st?###answer:SELECT number_ & _name FROM table_name_72 WHERE description = "peckett 0-4-0st"###context:CREATE TABLE table_name_72 (number_ VARCHAR, _name VARCHAR, description VARCHAR) |
###question:What's the number & name for a description of lms fowler class 3f 0-6-0t?###answer:SELECT number_ & _name FROM table_name_10 WHERE description = "lms fowler class 3f 0-6-0t"###context:CREATE TABLE table_name_10 (number_ VARCHAR, _name VARCHAR, description VARCHAR) |
###question:Who drive 74 laps in a grid larger than 9?###answer:SELECT driver FROM table_name_25 WHERE laps = 74 AND grid > 9###context:CREATE TABLE table_name_25 (driver VARCHAR, laps VARCHAR, grid VARCHAR) |
###question:Who is the player for St. Mary's team?###answer:SELECT player FROM table_name_48 WHERE school_club_team_country = "st. mary's"###context:CREATE TABLE table_name_48 (player VARCHAR, school_club_team_country VARCHAR) |
###question:How tall is the player from Mississippi###answer:SELECT height_in_ft FROM table_name_15 WHERE school_club_team_country = "mississippi"###context:CREATE TABLE table_name_15 (height_in_ft VARCHAR, school_club_team_country VARCHAR) |
###question:What is the player number for the player from Centenary?###answer:SELECT no_s_ FROM table_name_66 WHERE school_club_team_country = "centenary"###context:CREATE TABLE table_name_66 (no_s_ VARCHAR, school_club_team_country VARCHAR) |
###question:How tall is player 42 from Long Beach State?###answer:SELECT height_in_ft FROM table_name_69 WHERE no_s_ = "42" AND school_club_team_country = "long beach state"###context:CREATE TABLE table_name_69 (height_in_ft VARCHAR, no_s_ VARCHAR, school_club_team_country VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.