text stringlengths 114 1.06k |
|---|
### question: What is the colonized year for the chartered year 1958? ### answer: SELECT colonized FROM table_name_83 WHERE chartered = "1958" ### context: CREATE TABLE table_name_83 (colonized VARCHAR, chartered VARCHAR) |
### question: When was shippensburg university Colonized? ### answer: SELECT colonized FROM table_name_56 WHERE school = "shippensburg university" ### context: CREATE TABLE table_name_56 (colonized VARCHAR, school VARCHAR) |
### question: What is the colonized date for the n/a charter range for appalachian state? ### answer: SELECT colonized FROM table_name_61 WHERE charter_range = "n/a" AND school = "appalachian state" ### context: CREATE TABLE table_name_61 (colonized VARCHAR, charter_range VARCHAR, school VARCHAR) |
### question: What state has colony as a status and shippensburg university as the school? ### answer: SELECT state FROM table_name_71 WHERE status = "colony" AND school = "shippensburg university" ### context: CREATE TABLE table_name_71 (state VARCHAR, status VARCHAR, school VARCHAR) |
### question: What was the Home Team Score for the Windy Hill Venue? ### answer: SELECT home_team AS score FROM table_name_63 WHERE venue = "windy hill" ### context: CREATE TABLE table_name_63 (home_team VARCHAR, venue VARCHAR) |
### question: What is the Essendon Home Team's venue? ### answer: SELECT venue FROM table_name_61 WHERE home_team = "essendon" ### context: CREATE TABLE table_name_61 (venue VARCHAR, home_team VARCHAR) |
### question: How large a crowd did the Fitzroy Away team draw? ### answer: SELECT SUM(crowd) FROM table_name_15 WHERE away_team = "fitzroy" ### context: CREATE TABLE table_name_15 (crowd INTEGER, away_team VARCHAR) |
### question: What is Van Waiters position? ### answer: SELECT position FROM table_name_84 WHERE player = "van waiters" ### context: CREATE TABLE table_name_84 (position VARCHAR, player VARCHAR) |
### question: What is the capacity of the team in tucson, USA? ### answer: SELECT capacity FROM table_name_95 WHERE country = "usa" AND city = "tucson" ### context: CREATE TABLE table_name_95 (capacity VARCHAR, country VARCHAR, city VARCHAR) |
### question: What is the date for the podcast episode number 103? ### answer: SELECT podcast_date FROM table_name_21 WHERE episode_number = 103 ### context: CREATE TABLE table_name_21 (podcast_date VARCHAR, episode_number VARCHAR) |
### question: What is the name of the podcast on November 21, 2004? ### answer: SELECT title FROM table_name_87 WHERE podcast_date = "november 21, 2004" ### context: CREATE TABLE table_name_87 (title VARCHAR, podcast_date VARCHAR) |
### question: What was the tonnage of the Great Britain ship Batna? ### answer: SELECT tonnage FROM table_name_26 WHERE nationality = "great britain" AND ship = "batna" ### context: CREATE TABLE table_name_26 (tonnage VARCHAR, nationality VARCHAR, ship VARCHAR) |
### question: How many silver medals were won when there were 4 gold and 22 in total? ### answer: SELECT MIN(silver) FROM table_name_26 WHERE gold = 4 AND total = 22 ### context: CREATE TABLE table_name_26 (silver INTEGER, gold VARCHAR, total VARCHAR) |
### question: What car number has 130 points? ### answer: SELECT car__number FROM table_name_58 WHERE points = 130 ### context: CREATE TABLE table_name_58 (car__number VARCHAR, points VARCHAR) |
### question: What is the lowest number of laps for ryan newman with over 96 points, a cur number under 24, ### answer: SELECT MIN(laps) FROM table_name_49 WHERE points > 96 AND car__number < 24 AND driver = "ryan newman" ### context: CREATE TABLE table_name_49 (laps INTEGER, driver VARCHAR, points VARCHAR, car__number... |
### question: What is the sum of car numbers with less than 126 points and 147 laps? ### answer: SELECT SUM(car__number) FROM table_name_30 WHERE points < 126 AND laps = 147 ### context: CREATE TABLE table_name_30 (car__number INTEGER, points VARCHAR, laps VARCHAR) |
### question: How many total laps for the driver with Winnings of $116,033, and a Car # smaller than 18? ### answer: SELECT COUNT(laps) FROM table_name_53 WHERE winnings = "$116,033" AND car__number < 18 ### context: CREATE TABLE table_name_53 (laps VARCHAR, winnings VARCHAR, car__number VARCHAR) |
### question: What was the home team's score at kardinia park? ### answer: SELECT home_team AS score FROM table_name_7 WHERE venue = "kardinia park" ### context: CREATE TABLE table_name_7 (home_team VARCHAR, venue VARCHAR) |
### question: What is the venue when melbourne is the away team? ### answer: SELECT venue FROM table_name_25 WHERE away_team = "melbourne" ### context: CREATE TABLE table_name_25 (venue VARCHAR, away_team VARCHAR) |
### question: What is the smallest crowd that Footscray had as the away team? ### answer: SELECT MIN(crowd) FROM table_name_49 WHERE away_team = "footscray" ### context: CREATE TABLE table_name_49 (crowd INTEGER, away_team VARCHAR) |
### question: Where is the Mackey Arena located? ### answer: SELECT city FROM table_name_87 WHERE venue = "mackey arena" ### context: CREATE TABLE table_name_87 (city VARCHAR, venue VARCHAR) |
### question: What state has the University of California, Los Angeles? ### answer: SELECT state FROM table_name_67 WHERE host = "university of california, los angeles" ### context: CREATE TABLE table_name_67 (state VARCHAR, host VARCHAR) |
### question: What region does the University of California, Los Angeles play in? ### answer: SELECT region FROM table_name_37 WHERE state = "california" AND host = "university of california, los angeles" ### context: CREATE TABLE table_name_37 (region VARCHAR, state VARCHAR, host VARCHAR) |
### question: What venue is in Santa Barbara, California? ### answer: SELECT venue FROM table_name_58 WHERE state = "california" AND city = "santa barbara" ### context: CREATE TABLE table_name_58 (venue VARCHAR, state VARCHAR, city VARCHAR) |
### question: What Venue is in Colorado? ### answer: SELECT venue FROM table_name_19 WHERE state = "colorado" ### context: CREATE TABLE table_name_19 (venue VARCHAR, state VARCHAR) |
### question: What city is Mackey Arena in? ### answer: SELECT city FROM table_name_46 WHERE venue = "mackey arena" ### context: CREATE TABLE table_name_46 (city VARCHAR, venue VARCHAR) |
### question: What lane is David Carry in heat 1? ### answer: SELECT COUNT(lane) FROM table_name_80 WHERE heat = 1 AND name = "david carry" ### context: CREATE TABLE table_name_80 (lane VARCHAR, heat VARCHAR, name VARCHAR) |
### question: Who is the opponent after week 9 at rich stadium? ### answer: SELECT opponent FROM table_name_29 WHERE week > 9 AND game_site = "rich stadium" ### context: CREATE TABLE table_name_29 (opponent VARCHAR, week VARCHAR, game_site VARCHAR) |
### question: What was the attendance on 1997-12-14? ### answer: SELECT attendance FROM table_name_54 WHERE date = "1997-12-14" ### context: CREATE TABLE table_name_54 (attendance VARCHAR, date VARCHAR) |
### question: For the 1967 Cleveland Browns season what is the total number of times they played the Minnesota Vikings and had an atttendance smaller than 68,431? ### answer: SELECT COUNT(week) FROM table_name_93 WHERE opponent = "minnesota vikings" AND attendance < 68 OFFSET 431 ### context: CREATE TABLE table_name_93... |
### question: What is the lowest attendance for a game before 10 weeks on November 12, 1967 ### answer: SELECT MIN(attendance) FROM table_name_37 WHERE week < 10 AND date = "november 12, 1967" ### context: CREATE TABLE table_name_37 (attendance INTEGER, week VARCHAR, date VARCHAR) |
### question: What is the smallest number of injured in mayurbhanj, odisha and less than 1 killed? ### answer: SELECT MIN(injured) FROM table_name_49 WHERE place = "mayurbhanj, odisha" AND killed < 1 ### context: CREATE TABLE table_name_49 (injured INTEGER, place VARCHAR, killed VARCHAR) |
### question: Which Away team has Carlton for it's Home team? ### answer: SELECT away_team FROM table_name_96 WHERE home_team = "carlton" ### context: CREATE TABLE table_name_96 (away_team VARCHAR, home_team VARCHAR) |
### question: Which Venue has Footscray as it's Home team? ### answer: SELECT venue FROM table_name_3 WHERE home_team = "footscray" ### context: CREATE TABLE table_name_3 (venue VARCHAR, home_team VARCHAR) |
### question: What home team has Richmond listed as their Away team? ### answer: SELECT home_team FROM table_name_69 WHERE away_team = "richmond" ### context: CREATE TABLE table_name_69 (home_team VARCHAR, away_team VARCHAR) |
### question: What is the number of the crowd for the home team of South Melbourne? ### answer: SELECT SUM(crowd) FROM table_name_18 WHERE home_team = "south melbourne" ### context: CREATE TABLE table_name_18 (crowd INTEGER, home_team VARCHAR) |
### question: What is the away team score for the home team listed as Footscray? ### answer: SELECT away_team AS score FROM table_name_16 WHERE home_team = "footscray" ### context: CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR) |
### question: Which venue exceeded a crowd size of 33,642? ### answer: SELECT venue FROM table_name_26 WHERE crowd > 33 OFFSET 642 ### context: CREATE TABLE table_name_26 (venue VARCHAR, crowd INTEGER) |
### question: What was the attendance at the Meadowlands against the New England Patriots? ### answer: SELECT attendance FROM table_name_63 WHERE game_site = "the meadowlands" AND opponent = "new england patriots" ### context: CREATE TABLE table_name_63 (attendance VARCHAR, game_site VARCHAR, opponent VARCHAR) |
### question: What game did Jets have an attendance of 78,722? ### answer: SELECT game_site FROM table_name_8 WHERE attendance = "78,722" ### context: CREATE TABLE table_name_8 (game_site VARCHAR, attendance VARCHAR) |
### question: Who played the Rams on October 2, 2005? ### answer: SELECT opponent FROM table_name_22 WHERE date = "october 2, 2005" ### context: CREATE TABLE table_name_22 (opponent VARCHAR, date VARCHAR) |
### question: What was the attendance of the game on December 11, 2005? ### answer: SELECT attendance FROM table_name_82 WHERE date = "december 11, 2005" ### context: CREATE TABLE table_name_82 (attendance VARCHAR, date VARCHAR) |
### question: What was the result of the game played in front of 65,473? ### answer: SELECT result FROM table_name_19 WHERE attendance = "65,473" ### context: CREATE TABLE table_name_19 (result VARCHAR, attendance VARCHAR) |
### question: How large was the crowd at Carlton's home game? ### answer: SELECT COUNT(crowd) FROM table_name_10 WHERE home_team = "carlton" ### context: CREATE TABLE table_name_10 (crowd VARCHAR, home_team VARCHAR) |
### question: What was the score when St Kilda played as the home team? ### answer: SELECT home_team AS score FROM table_name_59 WHERE home_team = "st kilda" ### context: CREATE TABLE table_name_59 (home_team VARCHAR) |
### question: What was the crowd when the VFL played Windy Hill? ### answer: SELECT SUM(crowd) FROM table_name_49 WHERE venue = "windy hill" ### context: CREATE TABLE table_name_49 (crowd INTEGER, venue VARCHAR) |
### question: What was Carlton's score when they were the away team? ### answer: SELECT away_team AS score FROM table_name_86 WHERE away_team = "carlton" ### context: CREATE TABLE table_name_86 (away_team VARCHAR) |
### question: What was the away team that played at Corio Oval? ### answer: SELECT away_team FROM table_name_9 WHERE venue = "corio oval" ### context: CREATE TABLE table_name_9 (away_team VARCHAR, venue VARCHAR) |
### question: Which Home team faced the Away team, Hawthorn? ### answer: SELECT home_team FROM table_name_9 WHERE away_team = "hawthorn" ### context: CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR) |
### question: What was the Home team's score when the Venue was mcg? ### answer: SELECT home_team AS score FROM table_name_95 WHERE venue = "mcg" ### context: CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR) |
### question: What is the division in the season more recent than 2012 when the round of 16 was reached in the FA Cup? ### answer: SELECT COUNT(division) FROM table_name_9 WHERE fa_cup = "round of 16" AND season > 2012 ### context: CREATE TABLE table_name_9 (division VARCHAR, fa_cup VARCHAR, season VARCHAR) |
### question: What is the division in the season with 13 tms and pos smaller than 8? ### answer: SELECT COUNT(division) FROM table_name_36 WHERE tms = 13 AND pos < 8 ### context: CREATE TABLE table_name_36 (division VARCHAR, tms VARCHAR, pos VARCHAR) |
### question: Of the games before week 3 which had attendance great than 65,904? ### answer: SELECT date FROM table_name_88 WHERE week < 3 AND attendance > 65 OFFSET 904 ### context: CREATE TABLE table_name_88 (date VARCHAR, week VARCHAR, attendance VARCHAR) |
### question: What was the first week to have attendance of 65,866? ### answer: SELECT MIN(week) FROM table_name_31 WHERE attendance = 65 OFFSET 866 ### context: CREATE TABLE table_name_31 (week INTEGER, attendance VARCHAR) |
### question: Where is the Belhaven College SSAC conference location? ### answer: SELECT location FROM table_name_23 WHERE current_conference = "ssac" AND institution = "belhaven college" ### context: CREATE TABLE table_name_23 (location VARCHAR, current_conference VARCHAR, institution VARCHAR) |
### question: What American Southwest Conference school was founded in 1883? ### answer: SELECT institution FROM table_name_87 WHERE founded > 1883 AND current_conference = "american southwest" ### context: CREATE TABLE table_name_87 (institution VARCHAR, founded VARCHAR, current_conference VARCHAR) |
### question: Which League showed 7,975 for an average attendance? ### answer: SELECT league FROM table_name_20 WHERE attendance_average = "7,975" ### context: CREATE TABLE table_name_20 (league VARCHAR, attendance_average VARCHAR) |
### question: What is the average attendance of the team that had a regular season result of 2nd aisa, 24-16? ### answer: SELECT attendance_average FROM table_name_68 WHERE reg_season = "2nd aisa, 24-16" ### context: CREATE TABLE table_name_68 (attendance_average VARCHAR, reg_season VARCHAR) |
### question: Who won Group VI, when Group 1 was won by deportivo, group IV by sevilla, and group III by Valencia? ### answer: SELECT group_vI FROM table_name_75 WHERE group_i = "deportivo" AND group_iV = sevilla AND group_iII = valencia ### context: CREATE TABLE table_name_75 (group_vI VARCHAR, group_iII VARCHAR, vale... |
### question: Who won group III when group 1 was of the racing club? ### answer: SELECT group_iII FROM table_name_99 WHERE group_i = "racing club" ### context: CREATE TABLE table_name_99 (group_iII VARCHAR, group_i VARCHAR) |
### question: Which team is John Williams a rider for? ### answer: SELECT team FROM table_name_7 WHERE rider = "john williams" ### context: CREATE TABLE table_name_7 (team VARCHAR, rider VARCHAR) |
### question: How big was the crowd when Geelong was the home team? ### answer: SELECT COUNT(crowd) FROM table_name_96 WHERE home_team = "geelong" ### context: CREATE TABLE table_name_96 (crowd VARCHAR, home_team VARCHAR) |
### question: Who was the away team when Hawthorn was the home team? ### answer: SELECT away_team AS score FROM table_name_23 WHERE home_team = "hawthorn" ### context: CREATE TABLE table_name_23 (away_team VARCHAR, home_team VARCHAR) |
### question: What is the total in the case where theere are 6 lecturers and fewer than 48 professors? ### answer: SELECT AVG(total) FROM table_name_96 WHERE lecturers = 6 AND professors < 48 ### context: CREATE TABLE table_name_96 (total INTEGER, lecturers VARCHAR, professors VARCHAR) |
### question: What is the total in the case when there are more than 4 associate professors, 5 lecturers and fewer professors than 40? ### answer: SELECT COUNT(total) FROM table_name_33 WHERE associate_professors > 4 AND lecturers = 5 AND professors < 40 ### context: CREATE TABLE table_name_33 (total VARCHAR, professor... |
### question: How may lecturers are there in the case when there are more than 8 assistant professors, fewer than 35 associate professors, more than 14 professors and total of more than 81? ### answer: SELECT COUNT(lecturers) FROM table_name_71 WHERE assistant_professors > 8 AND professors > 14 AND associate_professors... |
### question: What is the maximum number of associate professors when there are more than 5 assistant professors and fewer than 14 professors? ### answer: SELECT MAX(associate_professors) FROM table_name_29 WHERE assistant_professors > 5 AND professors < 14 ### context: CREATE TABLE table_name_29 (associate_professors ... |
### question: Which country has the banglavision Network? ### answer: SELECT origin_of_programming FROM table_name_85 WHERE network = "banglavision" ### context: CREATE TABLE table_name_85 (origin_of_programming VARCHAR, network VARCHAR) |
### question: Which general service in India is a part of the zee variasi network? ### answer: SELECT service FROM table_name_96 WHERE origin_of_programming = "india" AND genre = "general" AND network = "zee variasi" ### context: CREATE TABLE table_name_96 (service VARCHAR, network VARCHAR, origin_of_programming VARCHA... |
### question: Which sliding tackle has no dump tackle and a restricted shoulder charge? ### answer: SELECT sliding_tackle FROM table_name_3 WHERE dump_tackle = "no" AND shoulder_charge = "restricted" ### context: CREATE TABLE table_name_3 (sliding_tackle VARCHAR, dump_tackle VARCHAR, shoulder_charge VARCHAR) |
### question: Which bumping/blocking has a yes for both the ankle tap and steal/intercept ball? ### answer: SELECT bumping_blocking FROM table_name_49 WHERE ankle_tap = "yes" AND steal_intercept_ball = "yes" ### context: CREATE TABLE table_name_49 (bumping_blocking VARCHAR, ankle_tap VARCHAR, steal_intercept_ball VARCH... |
### question: Which body tackle has yes for the diving tackle and the sliding tackle classified as a trip? ### answer: SELECT body_tackle FROM table_name_56 WHERE diving_tackle = "yes" AND sliding_tackle = "classified as a trip" ### context: CREATE TABLE table_name_56 (body_tackle VARCHAR, diving_tackle VARCHAR, slidin... |
### question: Which Chicken wing has no steal/intercept ball? ### answer: SELECT chicken_wing FROM table_name_76 WHERE steal_intercept_ball = "no" ### context: CREATE TABLE table_name_76 (chicken_wing VARCHAR, steal_intercept_ball VARCHAR) |
### question: Which steal/intercept ball has no for both the sliding tackle and dump tackle? ### answer: SELECT steal_intercept_ball FROM table_name_37 WHERE sliding_tackle = "no" AND dump_tackle = "no" ### context: CREATE TABLE table_name_37 (steal_intercept_ball VARCHAR, sliding_tackle VARCHAR, dump_tackle VARCHAR) |
### question: Which shoulder charge has restricted as the body tackle? ### answer: SELECT shoulder_charge FROM table_name_45 WHERE body_tackle = "restricted" ### context: CREATE TABLE table_name_45 (shoulder_charge VARCHAR, body_tackle VARCHAR) |
### question: Which player has West Virginia listed as their school/country? ### answer: SELECT player FROM table_name_11 WHERE school_country = "west virginia" ### context: CREATE TABLE table_name_11 (player VARCHAR, school_country VARCHAR) |
### question: What is the average crowd size when fitzroy plays at home? ### answer: SELECT AVG(crowd) FROM table_name_41 WHERE home_team = "fitzroy" ### context: CREATE TABLE table_name_41 (crowd INTEGER, home_team VARCHAR) |
### question: What is the result of the election with 3,871 total votes? ### answer: SELECT results FROM table_name_89 WHERE total_votes > 3 OFFSET 871 ### context: CREATE TABLE table_name_89 (results VARCHAR, total_votes INTEGER) |
### question: What is the lowest number of bids in the Missouri Valley conference? ### answer: SELECT MIN(_number_of_bids) FROM table_name_47 WHERE conference = "missouri valley" ### context: CREATE TABLE table_name_47 (_number_of_bids INTEGER, conference VARCHAR) |
### question: What was the attendance on the bye week? ### answer: SELECT attendance FROM table_name_3 WHERE date = "bye" ### context: CREATE TABLE table_name_3 (attendance VARCHAR, date VARCHAR) |
### question: What was the last week when the team had a bye week? ### answer: SELECT MAX(week) FROM table_name_58 WHERE result = "bye" ### context: CREATE TABLE table_name_58 (week INTEGER, result VARCHAR) |
### question: Where was the game held where North Melbourne was the away team? ### answer: SELECT venue FROM table_name_89 WHERE away_team = "north melbourne" ### context: CREATE TABLE table_name_89 (venue VARCHAR, away_team VARCHAR) |
### question: What was the smallest crowd size for a home game for Richmond? ### answer: SELECT MIN(crowd) FROM table_name_47 WHERE home_team = "richmond" ### context: CREATE TABLE table_name_47 (crowd INTEGER, home_team VARCHAR) |
### question: When did the 1966 Cleveland Browns play the Green Bay Packers? ### answer: SELECT date FROM table_name_98 WHERE opponent = "green bay packers" ### context: CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR) |
### question: How many points did South Melbourne score as the home team? ### answer: SELECT home_team AS score FROM table_name_26 WHERE home_team = "south melbourne" ### context: CREATE TABLE table_name_26 (home_team VARCHAR) |
### question: On what date was the home team Footscray? ### answer: SELECT date FROM table_name_49 WHERE home_team = "footscray" ### context: CREATE TABLE table_name_49 (date VARCHAR, home_team VARCHAR) |
### question: What is the average amount of goals that have a goal difference or 8 and the losses are smaller than 12? ### answer: SELECT AVG(goals_for) FROM table_name_99 WHERE goal_difference = 8 AND losses < 12 ### context: CREATE TABLE table_name_99 (goals_for INTEGER, goal_difference VARCHAR, losses VARCHAR) |
### question: How many goals have a Lokomotiv Plovdiv club and goals against larger than 58? ### answer: SELECT COUNT(goals_for) FROM table_name_80 WHERE club = "lokomotiv plovdiv" AND goals_against > 58 ### context: CREATE TABLE table_name_80 (goals_for VARCHAR, club VARCHAR, goals_against VARCHAR) |
### question: What is the average goal difference using slavia sofia club? ### answer: SELECT AVG(goal_difference) FROM table_name_8 WHERE club = "slavia sofia" ### context: CREATE TABLE table_name_8 (goal_difference INTEGER, club VARCHAR) |
### question: What is the played average that has botev plovdiv as the club and wins larger than 11? ### answer: SELECT AVG(played) FROM table_name_43 WHERE club = "botev plovdiv" AND wins > 11 ### context: CREATE TABLE table_name_43 (played INTEGER, club VARCHAR, wins VARCHAR) |
### question: Where did they play on their bye week? ### answer: SELECT game_site FROM table_name_83 WHERE record = "bye" ### context: CREATE TABLE table_name_83 (game_site VARCHAR, record VARCHAR) |
### question: What is the kickoff that has a NFL.com recap, is played before week 17, and is played at arrowhead stadium? ### answer: SELECT kickoff FROM table_name_53 WHERE nflcom_recap = "recap" AND week < 17 AND game_site = "arrowhead stadium" ### context: CREATE TABLE table_name_53 (kickoff VARCHAR, game_site VARCH... |
### question: Who is the home team at brunswick street oval? ### answer: SELECT home_team FROM table_name_17 WHERE venue = "brunswick street oval" ### context: CREATE TABLE table_name_17 (home_team VARCHAR, venue VARCHAR) |
### question: What is the home team's score at brunswick street oval? ### answer: SELECT home_team AS score FROM table_name_82 WHERE venue = "brunswick street oval" ### context: CREATE TABLE table_name_82 (home_team VARCHAR, venue VARCHAR) |
### question: Which match had the largest crowd size where the away team was North Melbourne? ### answer: SELECT MAX(crowd) FROM table_name_43 WHERE away_team = "north melbourne" ### context: CREATE TABLE table_name_43 (crowd INTEGER, away_team VARCHAR) |
### question: What was North Melbourne's score as an away team? ### answer: SELECT away_team AS score FROM table_name_66 WHERE away_team = "north melbourne" ### context: CREATE TABLE table_name_66 (away_team VARCHAR) |
### question: What was the away team's score against Hawthorn? ### answer: SELECT away_team AS score FROM table_name_9 WHERE home_team = "hawthorn" ### context: CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR) |
### question: What was the away team that played the home team of Geelong? ### answer: SELECT away_team FROM table_name_49 WHERE home_team = "geelong" ### context: CREATE TABLE table_name_49 (away_team VARCHAR, home_team VARCHAR) |
### question: Which week with Green Bay Packers as an opponent is the highest? ### answer: SELECT MAX(week) FROM table_name_52 WHERE opponent = "green bay packers" ### context: CREATE TABLE table_name_52 (week INTEGER, opponent VARCHAR) |
### question: What is the number of starts for the player who lost fewer than 22 and has more than 4 tries? ### answer: SELECT AVG(start) FROM table_name_11 WHERE lost < 22 AND tries > 4 ### context: CREATE TABLE table_name_11 (start INTEGER, lost VARCHAR, tries VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.