training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_56 (score VARCHAR, home VARCHAR)
###human: What was the score of the home game at Tampa Bay?
###assistant: SELECT score FROM table_name_56 WHERE home = "tampa bay" |
###context:CREATE TABLE table_name_32 (date VARCHAR, visitor VARCHAR, home VARCHAR)
###human: What was the date of the game where Ottawa was the home team and Atlanta is the visiting team?
###assistant: SELECT date FROM table_name_32 WHERE visitor = "atlanta" AND home = "ottawa" |
###context:CREATE TABLE table_name_39 (result VARCHAR, team VARCHAR)
###human: I want the result for team of giants
###assistant: SELECT result FROM table_name_39 WHERE team = "giants" |
###context:CREATE TABLE table_name_8 (pitcher VARCHAR, date VARCHAR)
###human: Tell me the pitcher on september 6, 2006
###assistant: SELECT pitcher FROM table_name_8 WHERE date = "september 6, 2006" |
###context:CREATE TABLE table_name_66 (date VARCHAR, team VARCHAR)
###human: I want the date for rockies
###assistant: SELECT date FROM table_name_66 WHERE team = "rockies" |
###context:CREATE TABLE table_name_58 (date VARCHAR, pitcher VARCHAR)
###human: I want the date for aníbal sánchez
###assistant: SELECT date FROM table_name_58 WHERE pitcher = "aníbal sánchez" |
###context:CREATE TABLE table_name_63 (result VARCHAR, team VARCHAR)
###human: I want the result for team of giants
###assistant: SELECT result FROM table_name_63 WHERE team = "giants" |
###context:CREATE TABLE table_name_51 (site VARCHAR, date VARCHAR)
###human: I want the site for september 29, 2013
###assistant: SELECT site FROM table_name_51 WHERE date = "september 29, 2013" |
###context:CREATE TABLE table_name_71 (right_ascension___j2000__ VARCHAR, apparent_magnitude VARCHAR)
###human: When the apparent magnitude is 10.5, what is the right ascension?
###assistant: SELECT right_ascension___j2000__ FROM table_name_71 WHERE apparent_magnitude = 10.5 |
###context:CREATE TABLE table_name_57 (livery VARCHAR, date VARCHAR)
###human: Which livery is from 1919?
###assistant: SELECT livery FROM table_name_57 WHERE date = "1919" |
###context:CREATE TABLE table_name_89 (attendance INTEGER, record VARCHAR)
###human: Of the games with a record of 80-81, what was the highest attendance?
###assistant: SELECT MAX(attendance) FROM table_name_89 WHERE record = "80-81" |
###context:CREATE TABLE table_name_34 (peak VARCHAR, hk_viewers VARCHAR, rank VARCHAR)
###human: How many entries have a HK viewers of 2.23 million, and a Rank below 2?
###assistant: SELECT COUNT(peak) FROM table_name_34 WHERE hk_viewers = "2.23 million" AND rank > 2 |
###context:CREATE TABLE table_name_95 (premiere VARCHAR, chinese_title VARCHAR, average VARCHAR, finale VARCHAR, peak VARCHAR)
###human: What premiere has a finale of less than 41, peak less than 40, average above 31, and a Chinese title of 學警雄心?
###assistant: SELECT premiere FROM table_name_95 WHERE finale < 41 AND peak < 40 AND average > 31 AND chinese_title = "學警雄心" |
###context:CREATE TABLE table_name_36 (average INTEGER, peak VARCHAR, finale VARCHAR, hk_viewers VARCHAR)
###human: What is the high average that has a Finale larger than 35, a HK viewers of 2.12 million, and a Peak larger than 40?
###assistant: SELECT MAX(average) FROM table_name_36 WHERE finale > 35 AND hk_viewers = "2.12 million" AND peak > 40 |
###context:CREATE TABLE table_name_96 (home_team VARCHAR, venue VARCHAR)
###human: What is the score for the home team when the venue is Junction Oval?
###assistant: SELECT home_team AS score FROM table_name_96 WHERE venue = "junction oval" |
###context:CREATE TABLE table_name_73 (crowd INTEGER, venue VARCHAR)
###human: What is the lowest crowd number at the venue MCG?
###assistant: SELECT MIN(crowd) FROM table_name_73 WHERE venue = "mcg" |
###context:CREATE TABLE table_name_89 (round INTEGER, place VARCHAR)
###human: Name the average round for jacksonville
###assistant: SELECT AVG(round) FROM table_name_89 WHERE place = "jacksonville" |
###context:CREATE TABLE table_name_59 (standing VARCHAR, date VARCHAR, total_points VARCHAR, finished VARCHAR)
###human: I want the standing for january 29 and finished of 3rd and total points less than 248
###assistant: SELECT standing FROM table_name_59 WHERE total_points < 248 AND finished = "3rd" AND date = "january 29" |
###context:CREATE TABLE table_name_5 (result VARCHAR, date VARCHAR)
###human: What was the result and score of the game on February 22?
###assistant: SELECT result FROM table_name_5 WHERE date = "february 22" |
###context:CREATE TABLE table_name_20 (rd__number INTEGER, pl_gp VARCHAR, reg_gp VARCHAR)
###human: What is the largest Rd# for a PI GP greater than 0 and a Reg GP less than 62?
###assistant: SELECT MAX(rd__number) FROM table_name_20 WHERE pl_gp > 0 AND reg_gp < 62 |
###context:CREATE TABLE table_name_12 (team__league_ VARCHAR, reg_gp INTEGER)
###human: Which team has a Reg GP over 62?
###assistant: SELECT team__league_ FROM table_name_12 WHERE reg_gp > 62 |
###context:CREATE TABLE table_name_89 (year INTEGER, position VARCHAR)
###human: What is the total year with a Position of 12th?
###assistant: SELECT SUM(year) FROM table_name_89 WHERE position = "12th" |
###context:CREATE TABLE table_name_16 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
###human: When a race had less than 18 laps and time/retired of accident, what was the smallest grid?
###assistant: SELECT MIN(grid) FROM table_name_16 WHERE time_retired = "accident" AND laps < 18 |
###context:CREATE TABLE table_name_31 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR)
###human: What is the time/retired for a grid over 17 with 74 laps?
###assistant: SELECT time_retired FROM table_name_31 WHERE grid > 17 AND laps = 74 |
###context:CREATE TABLE table_name_76 (grid INTEGER, driver VARCHAR)
###human: What is the grid total for david coulthard?
###assistant: SELECT SUM(grid) FROM table_name_76 WHERE driver = "david coulthard" |
###context:CREATE TABLE table_name_83 (date VARCHAR, athlete VARCHAR, event VARCHAR)
###human: What day did Chris Maddocks compete in the 35000 m?
###assistant: SELECT date FROM table_name_83 WHERE athlete = "chris maddocks" AND event = "35000 m" |
###context:CREATE TABLE table_name_66 (athlete VARCHAR, data VARCHAR)
###human: Who has a walking data of 214.061km?
###assistant: SELECT athlete FROM table_name_66 WHERE data = "214.061km" |
###context:CREATE TABLE table_name_11 (athlete VARCHAR, data VARCHAR)
###human: Who has a walking data of 3:10:48+?
###assistant: SELECT athlete FROM table_name_11 WHERE data = "3:10:48+" |
###context:CREATE TABLE table_name_57 (title VARCHAR, original_air_date VARCHAR)
###human: what is the title of the episode with the original air date of october2,2002?
###assistant: SELECT title FROM table_name_57 WHERE original_air_date = "october2,2002" |
###context:CREATE TABLE table_name_1 (title VARCHAR, production_code VARCHAR)
###human: what is the title of the episode with the production code of ad1a22?
###assistant: SELECT title FROM table_name_1 WHERE production_code = "ad1a22" |
###context:CREATE TABLE table_name_38 (directed_by VARCHAR, production_code VARCHAR)
###human: who was the director of the episode with production code ad1a26?
###assistant: SELECT directed_by FROM table_name_38 WHERE production_code = "ad1a26" |
###context:CREATE TABLE table_name_71 (constructor VARCHAR, circuit VARCHAR)
###human: Who is the constructor whose circuit was Oulton Park?
###assistant: SELECT constructor FROM table_name_71 WHERE circuit = "oulton park" |
###context:CREATE TABLE table_name_37 (race_name VARCHAR, circuit VARCHAR)
###human: What is the name of the race for which the circuit was Snetterton?
###assistant: SELECT race_name FROM table_name_37 WHERE circuit = "snetterton" |
###context:CREATE TABLE table_name_41 (years_for_rockets VARCHAR, school_club_team_country VARCHAR, height_in_ft VARCHAR, position VARCHAR)
###human: During what years did the Guard from Oklahoma with a height of 6-6 play for the Rockets?
###assistant: SELECT years_for_rockets FROM table_name_41 WHERE height_in_ft = "6-6" AND position = "guard" AND school_club_team_country = "oklahoma" |
###context:CREATE TABLE table_name_22 (drawn VARCHAR, played VARCHAR, position VARCHAR, competition VARCHAR)
###human: how many times what the position 6th, the competition was super league xvii and played was larger than 27?
###assistant: SELECT COUNT(drawn) FROM table_name_22 WHERE position = "6th" AND competition = "super league xvii" AND played > 27 |
###context:CREATE TABLE table_name_6 (average VARCHAR, caps VARCHAR, scotland_career VARCHAR)
###human: What is the average cap number in scotland in 1986–1998 leass than 69?
###assistant: SELECT COUNT(average) FROM table_name_6 WHERE caps < 69 AND scotland_career = "1986–1998" |
###context:CREATE TABLE table_name_20 (caps VARCHAR, scotland_career VARCHAR)
###human: Which caps was in scotland in 1920–1923?
###assistant: SELECT caps FROM table_name_20 WHERE scotland_career = "1920–1923" |
###context:CREATE TABLE table_name_93 (goals INTEGER, caps VARCHAR, average VARCHAR)
###human: What is the goal low with caps less than 38 and an average less than 1.083?
###assistant: SELECT MIN(goals) FROM table_name_93 WHERE caps < 38 AND average < 1.083 |
###context:CREATE TABLE table_name_45 (goals INTEGER, caps VARCHAR, average VARCHAR)
###human: What is the goal top with caps of 38 and an average less than 0.579?
###assistant: SELECT MAX(goals) FROM table_name_45 WHERE caps = 38 AND average < 0.579 |
###context:CREATE TABLE table_name_24 (goals INTEGER, name VARCHAR, average VARCHAR)
###human: What is the low goal for kenny miller with an average smaller than 0.261?
###assistant: SELECT MIN(goals) FROM table_name_24 WHERE name = "kenny miller" AND average < 0.261 |
###context:CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)
###human: What home team plays at victoria park?
###assistant: SELECT home_team FROM table_name_4 WHERE venue = "victoria park" |
###context:CREATE TABLE table_name_7 (away_team VARCHAR, home_team VARCHAR)
###human: When north melbourne played as the home team, what was the away team score?
###assistant: SELECT away_team AS score FROM table_name_7 WHERE home_team = "north melbourne" |
###context:CREATE TABLE table_name_42 (away_team VARCHAR, venue VARCHAR)
###human: What is the away team score at victoria park?
###assistant: SELECT away_team AS score FROM table_name_42 WHERE venue = "victoria park" |
###context:CREATE TABLE table_name_57 (goals_against INTEGER, draws VARCHAR, wins VARCHAR, goal_difference VARCHAR)
###human: What is the high goal against associated with 18 wins, a Goal Difference of 43, and under 6 draws?
###assistant: SELECT MAX(goals_against) FROM table_name_57 WHERE wins = 18 AND goal_difference = 43 AND draws < 6 |
###context:CREATE TABLE table_name_86 (wins INTEGER, draws VARCHAR, goals_for VARCHAR)
###human: What is the average win total associated with under 4 draws, and under 15 goals?
###assistant: SELECT AVG(wins) FROM table_name_86 WHERE draws < 4 AND goals_for < 15 |
###context:CREATE TABLE table_name_17 (home_team VARCHAR, venue VARCHAR)
###human: Who was the home team that played at Moorabbin Oval?
###assistant: SELECT home_team FROM table_name_17 WHERE venue = "moorabbin oval" |
###context:CREATE TABLE table_name_26 (crowd VARCHAR, away_team VARCHAR)
###human: How large was the crowd when Carlton was the away team?
###assistant: SELECT COUNT(crowd) FROM table_name_26 WHERE away_team = "carlton" |
###context:CREATE TABLE table_name_11 (year INTEGER, player_name VARCHAR)
###human: I want the sum of year for mark barron
###assistant: SELECT SUM(year) FROM table_name_11 WHERE player_name = "mark barron" |
###context:CREATE TABLE table_name_13 (year VARCHAR, position VARCHAR, college VARCHAR)
###human: Tell me the year for defensive tackle and college of lsu
###assistant: SELECT year FROM table_name_13 WHERE position = "defensive tackle" AND college = "lsu" |
###context:CREATE TABLE table_name_6 (attendance INTEGER, date VARCHAR)
###human: On April 28, what was the average number of people attending?
###assistant: SELECT AVG(attendance) FROM table_name_6 WHERE date = "april 28" |
###context:CREATE TABLE table_name_50 (player VARCHAR, position VARCHAR)
###human: Which player is a centre?
###assistant: SELECT player FROM table_name_50 WHERE position = "centre" |
###context:CREATE TABLE table_name_49 (venue VARCHAR, away_team VARCHAR)
###human: What was the venue when Collingwood was the away team?
###assistant: SELECT venue FROM table_name_49 WHERE away_team = "collingwood" |
###context:CREATE TABLE table_name_47 (venue VARCHAR, conv VARCHAR, player VARCHAR)
###human: Where did Brian Hightower play when he has the Conv of 0?
###assistant: SELECT venue FROM table_name_47 WHERE conv = "0" AND player = "brian hightower" |
###context:CREATE TABLE table_name_37 (conv VARCHAR, player VARCHAR)
###human: What was Dick Hyland's conv?
###assistant: SELECT conv FROM table_name_37 WHERE player = "dick hyland" |
###context:CREATE TABLE table_name_16 (tries VARCHAR, date VARCHAR)
###human: How many tries took place on 06/07/1996?
###assistant: SELECT tries FROM table_name_16 WHERE date = "06/07/1996" |
###context:CREATE TABLE table_name_41 (player VARCHAR, date VARCHAR)
###human: Which player played on 07/06/1997?
###assistant: SELECT player FROM table_name_41 WHERE date = "07/06/1997" |
###context:CREATE TABLE table_name_74 (venue VARCHAR, away_team VARCHAR)
###human: When the Away team is melbourne, what venue do they play at?
###assistant: SELECT venue FROM table_name_74 WHERE away_team = "melbourne" |
###context:CREATE TABLE table_name_86 (interview INTEGER, state VARCHAR, average VARCHAR)
###human: What is the lowest interview of Texas, with an average larger than 9.531?
###assistant: SELECT MIN(interview) FROM table_name_86 WHERE state = "texas" AND average > 9.531 |
###context:CREATE TABLE table_name_23 (interview VARCHAR, state VARCHAR, evening_gown VARCHAR)
###human: What is the total interviews of Iowa, and with an evening gown smaller than 9.625?
###assistant: SELECT COUNT(interview) FROM table_name_23 WHERE state = "iowa" AND evening_gown < 9.625 |
###context:CREATE TABLE table_name_26 (average INTEGER, state VARCHAR, interview VARCHAR)
###human: What is the sum of the average of Hawaii, with an interviewer larger than 9.636?
###assistant: SELECT SUM(average) FROM table_name_26 WHERE state = "hawaii" AND interview > 9.636 |
###context:CREATE TABLE table_name_8 (evening_gown INTEGER, average VARCHAR, swimsuit VARCHAR)
###human: What is the highest evening gown with an average of 9.531 and swimsuit smaller than 9.449?
###assistant: SELECT MAX(evening_gown) FROM table_name_8 WHERE average = 9.531 AND swimsuit < 9.449 |
###context:CREATE TABLE table_name_82 (swimsuit INTEGER, evening_gown VARCHAR, average VARCHAR)
###human: What is the sum of swimsuit with an evening gown of 9.773 and average larger than 9.674?
###assistant: SELECT SUM(swimsuit) FROM table_name_82 WHERE evening_gown = 9.773 AND average > 9.674 |
###context:CREATE TABLE table_name_34 (average INTEGER, evening_gown VARCHAR, swimsuit VARCHAR, state VARCHAR)
###human: What is the average of the swimsuit smaller than 9.545 , of Iowa, with an evening gown larger than 9.625?
###assistant: SELECT AVG(average) FROM table_name_34 WHERE swimsuit < 9.545 AND state = "iowa" AND evening_gown > 9.625 |
###context:CREATE TABLE table_name_82 (leading_scorer VARCHAR, date VARCHAR)
###human: Name the leading scorer for 1 april 2008
###assistant: SELECT leading_scorer FROM table_name_82 WHERE date = "1 april 2008" |
###context:CREATE TABLE table_name_11 (home VARCHAR, date VARCHAR)
###human: Name the home for 16 april 2008
###assistant: SELECT home FROM table_name_11 WHERE date = "16 april 2008" |
###context:CREATE TABLE table_name_56 (score VARCHAR, visitor VARCHAR, home VARCHAR)
###human: Name the score for bucks with timberwolves
###assistant: SELECT score FROM table_name_56 WHERE visitor = "bucks" AND home = "timberwolves" |
###context:CREATE TABLE table_name_96 (sail VARCHAR, syndicate VARCHAR, yacht VARCHAR)
###human: Which sail is in the America 3 Foundation syndicate on the America 3 yacht?
###assistant: SELECT sail FROM table_name_96 WHERE syndicate = "america 3 foundation" AND yacht = "america 3" |
###context:CREATE TABLE table_name_8 (syndicate VARCHAR, yacht VARCHAR)
###human: Which syndicate is associated with the stars & stripes yacht?
###assistant: SELECT syndicate FROM table_name_8 WHERE yacht = "stars & stripes" |
###context:CREATE TABLE table_name_84 (yacht VARCHAR, syndicate VARCHAR)
###human: Which Yacht Club is part of the America 3 Foundation syndicate on the America 3 yacht?
###assistant: SELECT yacht AS Club FROM table_name_84 WHERE syndicate = "america 3 foundation" AND yacht = "america 3" |
###context:CREATE TABLE table_name_81 (nation VARCHAR, syndicate VARCHAR, yacht VARCHAR)
###human: Which nation has the America 3 Foundation syndicate and the jayhawk yacht?
###assistant: SELECT nation FROM table_name_81 WHERE syndicate = "america 3 foundation" AND yacht = "jayhawk" |
###context:CREATE TABLE table_name_91 (nation VARCHAR, sail VARCHAR)
###human: Which Nation has the USA-18 sail?
###assistant: SELECT nation FROM table_name_91 WHERE sail = "usa-18" |
###context:CREATE TABLE table_name_46 (crowd VARCHAR, away_team VARCHAR)
###human: How big was the crowd when collingwood visited?
###assistant: SELECT COUNT(crowd) FROM table_name_46 WHERE away_team = "collingwood" |
###context:CREATE TABLE table_name_19 (away_team VARCHAR, venue VARCHAR)
###human: What away team is based in moorabbin oval?
###assistant: SELECT away_team FROM table_name_19 WHERE venue = "moorabbin oval" |
###context:CREATE TABLE table_name_40 (date VARCHAR, player VARCHAR)
###human: What date did af giles play?
###assistant: SELECT date FROM table_name_40 WHERE player = "af giles" |
###context:CREATE TABLE table_name_59 (catches VARCHAR, player VARCHAR)
###human: How many catches does hh dippenaar have?
###assistant: SELECT catches FROM table_name_59 WHERE player = "hh dippenaar" |
###context:CREATE TABLE table_name_98 (player VARCHAR, date VARCHAR)
###human: What player has a date of 12-02-2003?
###assistant: SELECT player FROM table_name_98 WHERE date = "12-02-2003" |
###context:CREATE TABLE table_name_18 (player VARCHAR, versus VARCHAR)
###human: Who had a versus of sri lanka?
###assistant: SELECT player FROM table_name_18 WHERE versus = "sri lanka" |
###context:CREATE TABLE table_name_23 (player VARCHAR, date VARCHAR)
###human: Who had a date of 19-02-2003?
###assistant: SELECT player FROM table_name_23 WHERE date = "19-02-2003" |
###context:CREATE TABLE table_name_93 (date VARCHAR, versus VARCHAR)
###human: What date had a versus of source: cricinfo.com?
###assistant: SELECT date FROM table_name_93 WHERE versus = "source: cricinfo.com" |
###context:CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)
###human: When south Melbourne was the home team, what was the away team?
###assistant: SELECT away_team FROM table_name_53 WHERE home_team = "south melbourne" |
###context:CREATE TABLE table_name_25 (crowd INTEGER, away_team VARCHAR)
###human: What was the smallest crowd size for away team st kilda?
###assistant: SELECT MIN(crowd) FROM table_name_25 WHERE away_team = "st kilda" |
###context:CREATE TABLE table_name_9 (score VARCHAR, visitor VARCHAR)
###human: What was the score of the game against Milwaukee?
###assistant: SELECT score FROM table_name_9 WHERE visitor = "milwaukee" |
###context:CREATE TABLE table_name_87 (winner VARCHAR, third_place VARCHAR)
###human: Was the third place winner Yannick Noah?
###assistant: SELECT winner FROM table_name_87 WHERE third_place = "yannick noah" |
###context:CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR)
###human: What was the away team score when the home team essendon was playing?
###assistant: SELECT away_team AS score FROM table_name_63 WHERE home_team = "essendon" |
###context:CREATE TABLE table_name_9 (record_set VARCHAR, superlative VARCHAR)
###human: Who set the record for youngest nominee?
###assistant: SELECT record_set FROM table_name_9 WHERE superlative = "youngest nominee" |
###context:CREATE TABLE table_name_24 (record_set VARCHAR, year VARCHAR, superlative VARCHAR)
###human: After the year 2011, who was the youngest nominee?
###assistant: SELECT record_set FROM table_name_24 WHERE year > 2011 AND superlative = "youngest nominee" |
###context:CREATE TABLE table_name_76 (year INTEGER, actress VARCHAR)
###human: When did Quvenzhané Wallis first win?
###assistant: SELECT MIN(year) FROM table_name_76 WHERE actress = "quvenzhané wallis" |
###context:CREATE TABLE table_name_20 (year INTEGER, actress VARCHAR)
###human: When was the last year when Katharine Hepburn won?
###assistant: SELECT MAX(year) FROM table_name_20 WHERE actress = "katharine hepburn" |
###context:CREATE TABLE table_name_53 (winner VARCHAR, year VARCHAR)
###human: who was the winner in 2003?
###assistant: SELECT winner FROM table_name_53 WHERE year = "2003" |
###context:CREATE TABLE table_name_90 (venue VARCHAR, winner VARCHAR)
###human: where did marie-laure taya win?
###assistant: SELECT venue FROM table_name_90 WHERE winner = "marie-laure taya" |
###context:CREATE TABLE table_name_17 (venue VARCHAR, score VARCHAR)
###human: what venue saw a score of 285?
###assistant: SELECT venue FROM table_name_17 WHERE score = "285" |
###context:CREATE TABLE table_name_34 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)
###human: What is the largest laps for Time/Retired of + 2 laps, and a Grid of 13?
###assistant: SELECT MAX(laps) FROM table_name_34 WHERE time_retired = "+ 2 laps" AND grid = 13 |
###context:CREATE TABLE table_name_42 (constructor VARCHAR, laps VARCHAR, grid VARCHAR)
###human: What company constructed the car with more than 0 laps and shows 5 for grid?
###assistant: SELECT constructor FROM table_name_42 WHERE laps > 0 AND grid = 5 |
###context:CREATE TABLE table_name_20 (laps INTEGER, driver VARCHAR)
###human: What is the sum of laps for Derek Warwick?
###assistant: SELECT SUM(laps) FROM table_name_20 WHERE driver = "derek warwick" |
###context:CREATE TABLE table_name_91 (years_runner_up VARCHAR, runners_up VARCHAR, club VARCHAR)
###human: What years runner-up is Birmingham city, with over 1 runners-up?
###assistant: SELECT years_runner_up FROM table_name_91 WHERE runners_up > 1 AND club = "birmingham city" |
###context:CREATE TABLE table_name_2 (home_team VARCHAR, away_team VARCHAR)
###human: Which Home team score has an Away team of st kilda?
###assistant: SELECT home_team AS score FROM table_name_2 WHERE away_team = "st kilda" |
###context:CREATE TABLE table_name_27 (home_team VARCHAR, venue VARCHAR)
###human: Which Home team has a Venue of victoria park?
###assistant: SELECT home_team FROM table_name_27 WHERE venue = "victoria park" |
###context:CREATE TABLE table_name_90 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)
###human: Who was the center from Washington State?
###assistant: SELECT player FROM table_name_90 WHERE position = "center" AND school_club_team = "washington state" |
###context:CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR)
###human: What school did Paul Dawkins play for?
###assistant: SELECT school_club_team FROM table_name_34 WHERE player = "paul dawkins" |
###context:CREATE TABLE table_name_93 (place VARCHAR, building VARCHAR)
###human: Name the place with building of victoria hall
###assistant: SELECT place FROM table_name_93 WHERE building = "victoria hall" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.