combined_text
stringlengths
106
1.05k
###question:What was the highest Tie no when the home team was the Bolton Wanderers, and the date was Middlesbrough?###answer:SELECT MAX(tie_no) FROM table_name_45 WHERE home_team = "bolton wanderers" AND date = "middlesbrough"###context:CREATE TABLE table_name_45 (tie_no INTEGER, home_team VARCHAR, date VARCHAR)
###question:What is the average Tie no when the date is Birmingham City?###answer:SELECT AVG(tie_no) FROM table_name_22 WHERE date = "birmingham city"###context:CREATE TABLE table_name_22 (tie_no INTEGER, date VARCHAR)
###question:What was the Tie no when then home team was Stoke City for the game played on 9 February 1946?###answer:SELECT tie_no FROM table_name_19 WHERE home_team = "stoke city" AND date = "9 february 1946"###context:CREATE TABLE table_name_19 (tie_no VARCHAR, home_team VARCHAR, date VARCHAR)
###question:How many attended the game with an opponent of bye?###answer:SELECT attendance FROM table_name_72 WHERE opponent = "bye"###context:CREATE TABLE table_name_72 (attendance VARCHAR, opponent VARCHAR)
###question:Which opponent had 73,428 in attendance?###answer:SELECT opponent FROM table_name_32 WHERE attendance = "73,428"###context:CREATE TABLE table_name_32 (opponent VARCHAR, attendance VARCHAR)
###question:What was the attendance of the Oakland Raiders game?###answer:SELECT attendance FROM table_name_34 WHERE opponent = "oakland raiders"###context:CREATE TABLE table_name_34 (attendance VARCHAR, opponent VARCHAR)
###question:What is the streak for game 2?###answer:SELECT streak FROM table_name_6 WHERE game = "2"###context:CREATE TABLE table_name_6 (streak VARCHAR, game VARCHAR)
###question:Which Date has a Game of game 3?###answer:SELECT date FROM table_name_90 WHERE game = "game 3"###context:CREATE TABLE table_name_90 (date VARCHAR, game VARCHAR)
###question:Which Home Team has a Road Team of rochester, and a Result of 71-78?###answer:SELECT home_team FROM table_name_97 WHERE road_team = "rochester" AND result = "71-78"###context:CREATE TABLE table_name_97 (home_team VARCHAR, road_team VARCHAR, result VARCHAR)
###question:Which Result has a Home Team of rochester, and a Game of game 5?###answer:SELECT result FROM table_name_99 WHERE home_team = "rochester" AND game = "game 5"###context:CREATE TABLE table_name_99 (result VARCHAR, home_team VARCHAR, game VARCHAR)
###question:Which Road Team has a Home Team of rochester, and a Game of game 2?###answer:SELECT road_team FROM table_name_61 WHERE home_team = "rochester" AND game = "game 2"###context:CREATE TABLE table_name_61 (road_team VARCHAR, home_team VARCHAR, game VARCHAR)
###question:Which Road Team has a Home Team of rochester, and a Result of 89-92?###answer:SELECT road_team FROM table_name_9 WHERE home_team = "rochester" AND result = "89-92"###context:CREATE TABLE table_name_9 (road_team VARCHAR, home_team VARCHAR, result VARCHAR)
###question:Which Date has a Road Team of new york, and a Result of 79-75?###answer:SELECT date FROM table_name_42 WHERE road_team = "new york" AND result = "79-75"###context:CREATE TABLE table_name_42 (date VARCHAR, road_team VARCHAR, result VARCHAR)
###question:What was the highest assists for game 3?###answer:SELECT high_assists FROM table_name_7 WHERE game = 3###context:CREATE TABLE table_name_7 (high_assists VARCHAR, game VARCHAR)
###question:What country is player ed sneed, who has a to par of +3, from?###answer:SELECT country FROM table_name_70 WHERE to_par = "+3" AND player = "ed sneed"###context:CREATE TABLE table_name_70 (country VARCHAR, to_par VARCHAR, player VARCHAR)
###question:What is the to par of player ed sneed, who has a t5 place?###answer:SELECT to_par FROM table_name_45 WHERE place = "t5" AND player = "ed sneed"###context:CREATE TABLE table_name_45 (to_par VARCHAR, place VARCHAR, player VARCHAR)
###question:Who is the player with a 70-75=145 score?###answer:SELECT player FROM table_name_62 WHERE score = 70 - 75 = 145###context:CREATE TABLE table_name_62 (player VARCHAR, score VARCHAR)
###question:What is the to par of player tom weiskopf, who has a 71-74=145 score?###answer:SELECT to_par FROM table_name_60 WHERE score = 71 - 74 = 145 AND player = "tom weiskopf"###context:CREATE TABLE table_name_60 (to_par VARCHAR, player VARCHAR, score VARCHAR)
###question:Who is the player with a t5 place and a 75-70=145 score?###answer:SELECT player FROM table_name_47 WHERE place = "t5" AND score = 75 - 70 = 145###context:CREATE TABLE table_name_47 (player VARCHAR, place VARCHAR, score VARCHAR)
###question:What is the country of player ed sneed with a to par of +3?###answer:SELECT country FROM table_name_15 WHERE to_par = "+3" AND player = "ed sneed"###context:CREATE TABLE table_name_15 (country VARCHAR, to_par VARCHAR, player VARCHAR)
###question:What is the Score of the game with a Record of 31–37–9?###answer:SELECT score FROM table_name_3 WHERE record = "31–37–9"###context:CREATE TABLE table_name_3 (score VARCHAR, record VARCHAR)
###question:What is the Score of the Pittsburgh Home game on March 3 with 61 Points?###answer:SELECT score FROM table_name_18 WHERE home = "pittsburgh" AND points = 61 AND date = "march 3"###context:CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR, home VARCHAR, points VARCHAR)
###question:What is the Date of the game in Vancouver?###answer:SELECT date FROM table_name_9 WHERE home = "vancouver"###context:CREATE TABLE table_name_9 (date VARCHAR, home VARCHAR)
###question:Which Run 4 has Athletes of alexandru frimu & costel rădulescu?###answer:SELECT run_4 FROM table_name_37 WHERE athletes = "alexandru frimu & costel rădulescu"###context:CREATE TABLE table_name_37 (run_4 VARCHAR, athletes VARCHAR)
###question:Which Final has a Team of liechtenstein (lie) liechtenstein i?###answer:SELECT final FROM table_name_55 WHERE team = "liechtenstein (lie) liechtenstein i"###context:CREATE TABLE table_name_55 (final VARCHAR, team VARCHAR)
###question:Which Run 2 has a Run 1 of 1:30.03?###answer:SELECT run_2 FROM table_name_29 WHERE run_1 = "1:30.03"###context:CREATE TABLE table_name_29 (run_2 VARCHAR, run_1 VARCHAR)
###question:Which Run 4 has a Run 3 of 1:26.63?###answer:SELECT run_4 FROM table_name_53 WHERE run_3 = "1:26.63"###context:CREATE TABLE table_name_53 (run_4 VARCHAR, run_3 VARCHAR)
###question:Which Run 4 has a Run 1 of 1:25.82?###answer:SELECT run_4 FROM table_name_59 WHERE run_1 = "1:25.82"###context:CREATE TABLE table_name_59 (run_4 VARCHAR, run_1 VARCHAR)
###question:Which Final has a Run 2 of 1:27.58?###answer:SELECT final FROM table_name_50 WHERE run_2 = "1:27.58"###context:CREATE TABLE table_name_50 (final VARCHAR, run_2 VARCHAR)
###question:which opponents in the u.s. championships played after 1945 and had a score of 3–6, 6–4, 2–6, 6–3, 20–18?###answer:SELECT opponents_in_the_final FROM table_name_5 WHERE championship = "u.s. championships" AND year > 1945 AND score = "3–6, 6–4, 2–6, 6–3, 20–18"###context:CREATE TABLE table_name_5 (opponents_...
###question:what is the most recent year gardnar mulloy played as a partner and score was 12–10, 8–10, 12–10, 6–2?###answer:SELECT MAX(year) FROM table_name_29 WHERE partner = "gardnar mulloy" AND score = "12–10, 8–10, 12–10, 6–2"###context:CREATE TABLE table_name_29 (year INTEGER, partner VARCHAR, score VARCHAR)
###question:What Ship was Built by Cammell Laird?###answer:SELECT ship FROM table_name_70 WHERE builder = "cammell laird"###context:CREATE TABLE table_name_70 (ship VARCHAR, builder VARCHAR)
###question:What Country is the John S. McCain Ship from?###answer:SELECT country FROM table_name_47 WHERE ship = "john s. mccain"###context:CREATE TABLE table_name_47 (country VARCHAR, ship VARCHAR)
###question:What is the Cargo Ship located at Birkenhead?###answer:SELECT ship FROM table_name_66 WHERE class___type = "cargo ship" AND location = "birkenhead"###context:CREATE TABLE table_name_66 (ship VARCHAR, class___type VARCHAR, location VARCHAR)
###question:What is the highest Population, when % LDS is 0.54%, and when Total Congregations is greater than 2?###answer:SELECT MAX(population) FROM table_name_13 WHERE _percentage_lds = "0.54%" AND total_congregations > 2###context:CREATE TABLE table_name_13 (population INTEGER, _percentage_lds VARCHAR, total_congreg...
###question:What is the total number of Total Congregations, when % LDS is 0.54%, and when Population is greater than 105,275?###answer:SELECT COUNT(total_congregations) FROM table_name_85 WHERE _percentage_lds = "0.54%" AND population > 105 OFFSET 275###context:CREATE TABLE table_name_85 (total_congregations VARCHAR, ...
###question:What is the highest Population, when State is Puerto Rico, and when Total Congregations is greater than 41?###answer:SELECT MAX(population) FROM table_name_16 WHERE state = "puerto rico" AND total_congregations > 41###context:CREATE TABLE table_name_16 (population INTEGER, state VARCHAR, total_congregations...
###question:What is Population, when Total Congregations is less than 4, and when % LDS is 0.54%?###answer:SELECT population FROM table_name_83 WHERE total_congregations < 4 AND _percentage_lds = "0.54%"###context:CREATE TABLE table_name_83 (population VARCHAR, total_congregations VARCHAR, _percentage_lds VARCHAR)
###question:Who was the actor in London in 2002 with the shipwreck of Leonty Ibayev?###answer:SELECT actor_in_london, _2002 FROM table_name_78 WHERE shipwreck = "leonty ibayev"###context:CREATE TABLE table_name_78 (actor_in_london VARCHAR, _2002 VARCHAR, shipwreck VARCHAR)
###question:Who was the 2007 actor from Moscow for the voyage of Varenka Bakunin?###answer:SELECT actor_in_moscow, _2007 FROM table_name_91 WHERE voyage = "varenka bakunin"###context:CREATE TABLE table_name_91 (actor_in_moscow VARCHAR, _2007 VARCHAR, voyage VARCHAR)
###question:Who was the 2007 actor from Moscow for the shipwreck of Leonty Ibayev?###answer:SELECT actor_in_moscow, _2007 FROM table_name_44 WHERE shipwreck = "leonty ibayev"###context:CREATE TABLE table_name_44 (actor_in_moscow VARCHAR, _2007 VARCHAR, shipwreck VARCHAR)
###question:Which institution is private/catholic?###answer:SELECT institution FROM table_name_55 WHERE affiliation = "private/catholic"###context:CREATE TABLE table_name_55 (institution VARCHAR, affiliation VARCHAR)
###question:What is the average enrollment of the Redbirds' school?###answer:SELECT AVG(enrollment) FROM table_name_47 WHERE nickname = "redbirds"###context:CREATE TABLE table_name_47 (enrollment INTEGER, nickname VARCHAR)
###question:What is Southern Illinois University Edwardsville's affiliation?###answer:SELECT affiliation FROM table_name_48 WHERE institution = "southern illinois university edwardsville"###context:CREATE TABLE table_name_48 (affiliation VARCHAR, institution VARCHAR)
###question:With a 0-2 series, what is the high points?###answer:SELECT high_points FROM table_name_23 WHERE series = "0-2"###context:CREATE TABLE table_name_23 (high_points VARCHAR, series VARCHAR)
###question:What is the an-stem for the word which has an ö-stems of siangar and an u-stem ending of syni?###answer:SELECT masculine_an_stems FROM table_name_18 WHERE feminine_ō_stems = "siangar" AND masculine_u_stems = "syni"###context:CREATE TABLE table_name_18 (masculine_an_stems VARCHAR, feminine_ō_stems VARCHAR, m...
###question:What ending does siangu get for ön?###answer:SELECT feminine_ōn_stems FROM table_name_82 WHERE feminine_ō_stems = "siangu"###context:CREATE TABLE table_name_82 (feminine_ōn_stems VARCHAR, feminine_ō_stems VARCHAR)
###question:What is the u form of the word with a neuter form of skip and a masculine a-ending of fisker?###answer:SELECT masculine_u_stems FROM table_name_18 WHERE neuter_a_stems = "skip" AND masculine_a_stems = "fisker"###context:CREATE TABLE table_name_18 (masculine_u_stems VARCHAR, neuter_a_stems VARCHAR, masculine...
###question:What is the masculine an form for the word with a feminine ö ending of siangar and a masculine u ending of sunar?###answer:SELECT masculine_an_stems FROM table_name_49 WHERE feminine_ō_stems = "siangar" AND masculine_u_stems = "sunar"###context:CREATE TABLE table_name_49 (masculine_an_stems VARCHAR, feminin...
###question:What is the masculine u form for the old Swedish word with a neuter a form of skipum?###answer:SELECT masculine_u_stems FROM table_name_68 WHERE neuter_a_stems = "skipum"###context:CREATE TABLE table_name_68 (masculine_u_stems VARCHAR, neuter_a_stems VARCHAR)
###question:A tournament on which date has a margin of victory of 2 strokes and a par of −16?###answer:SELECT date FROM table_name_8 WHERE margin_of_victory = "2 strokes" AND to_par = "−16"###context:CREATE TABLE table_name_8 (date VARCHAR, margin_of_victory VARCHAR, to_par VARCHAR)
###question:Who was the runner-up in the tournament that has a margin of victory of 2 strokes, and a To par of −16?###answer:SELECT runner_up FROM table_name_62 WHERE margin_of_victory = "2 strokes" AND to_par = "−16"###context:CREATE TABLE table_name_62 (runner_up VARCHAR, margin_of_victory VARCHAR, to_par VARCHAR)
###question:What was the to par of the tournament that had Ken Duke as a runner-up?###answer:SELECT to_par FROM table_name_56 WHERE runner_up = "ken duke"###context:CREATE TABLE table_name_56 (to_par VARCHAR, runner_up VARCHAR)
###question:What was the margin of victory when Brandt Snedeker was runner-up?###answer:SELECT margin_of_victory FROM table_name_38 WHERE runner_up = "brandt snedeker"###context:CREATE TABLE table_name_38 (margin_of_victory VARCHAR, runner_up VARCHAR)
###question:What is the date that has a winning score of 67-70-68-67=272?###answer:SELECT date FROM table_name_84 WHERE winning_score = 67 - 70 - 68 - 67 = 272###context:CREATE TABLE table_name_84 (date VARCHAR, winning_score VARCHAR)
###question:What year has a Schwante smaller than 2.043, an Eichstädt smaller than 848, and a Bärenklau smaller than 1.262?###answer:SELECT COUNT(year) FROM table_name_30 WHERE schwante < 2.043 AND eichstädt < 848 AND bärenklau < 1.262###context:CREATE TABLE table_name_30 (year VARCHAR, bärenklau VARCHAR, schwante VARC...
###question:What's the score for a game over 56 with a record of 29-24-7 with a lundqvist decision?###answer:SELECT score FROM table_name_18 WHERE game > 56 AND decision = "lundqvist" AND record = "29-24-7"###context:CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR, game VARCHAR, decision VARCHAR)
###question:What is the High rebounds with a Series with 4–2?###answer:SELECT high_rebounds FROM table_name_13 WHERE series = "4–2"###context:CREATE TABLE table_name_13 (high_rebounds VARCHAR, series VARCHAR)
###question:What is the High rebounds with a High assists with bryant (7), and a Team of @ utah?###answer:SELECT high_rebounds FROM table_name_9 WHERE high_assists = "bryant (7)" AND team = "@ utah"###context:CREATE TABLE table_name_9 (high_rebounds VARCHAR, high_assists VARCHAR, team VARCHAR)
###question:What is the Series with a High rebounds with gasol (10)?###answer:SELECT series FROM table_name_54 WHERE high_rebounds = "gasol (10)"###context:CREATE TABLE table_name_54 (series VARCHAR, high_rebounds VARCHAR)
###question:Tell me the D 49 and D 46 of r 13###answer:SELECT d_49 FROM table_name_64 WHERE d_46 = "r 13"###context:CREATE TABLE table_name_64 (d_49 VARCHAR, d_46 VARCHAR)
###question:I want the D 40 with D 44 of d 15###answer:SELECT d_40 FROM table_name_17 WHERE d_44 = "d 15"###context:CREATE TABLE table_name_17 (d_40 VARCHAR, d_44 VARCHAR)
###question:I want the D 45 and D 42 of r 22###answer:SELECT d_45 FROM table_name_58 WHERE d_42 = "r 22"###context:CREATE TABLE table_name_58 (d_45 VARCHAR, d_42 VARCHAR)
###question:I want the D 46 for D 45 of r 5###answer:SELECT d_46 FROM table_name_54 WHERE d_45 = "r 5"###context:CREATE TABLE table_name_54 (d_46 VARCHAR, d_45 VARCHAR)
###question:I want the D 47 for D 41 being r 21###answer:SELECT d_47 FROM table_name_78 WHERE d_41 = "r 21"###context:CREATE TABLE table_name_78 (d_47 VARCHAR, d_41 VARCHAR)
###question:What is the Name with a Year of junior, and a High School with wheatley?###answer:SELECT name FROM table_name_54 WHERE year = "junior" AND high_school = "wheatley"###context:CREATE TABLE table_name_54 (name VARCHAR, year VARCHAR, high_school VARCHAR)
###question:What is the Home Town with a Name with rob cunningham?###answer:SELECT home_town FROM table_name_40 WHERE name = "rob cunningham"###context:CREATE TABLE table_name_40 (home_town VARCHAR, name VARCHAR)
###question:What is the Position with a Year with freshman, and a Weight larger than 210?###answer:SELECT position FROM table_name_79 WHERE year = "freshman" AND weight > 210###context:CREATE TABLE table_name_79 (position VARCHAR, year VARCHAR, weight VARCHAR)
###question:What is the Home Town with a Year of freshman, and a Height with 6–6?###answer:SELECT home_town FROM table_name_81 WHERE year = "freshman" AND height = "6–6"###context:CREATE TABLE table_name_81 (home_town VARCHAR, year VARCHAR, height VARCHAR)
###question:What is the Name with a Year with freshman, and a Home Town with los angeles, ca, and a Height of 6–4?###answer:SELECT name FROM table_name_90 WHERE year = "freshman" AND home_town = "los angeles, ca" AND height = "6–4"###context:CREATE TABLE table_name_90 (name VARCHAR, height VARCHAR, year VARCHAR, home_t...
###question:What is the Result for Goal 3?###answer:SELECT result FROM table_name_30 WHERE goal = 3###context:CREATE TABLE table_name_30 (result VARCHAR, goal VARCHAR)
###question:What is the average ties when the team is montreal victorias and the games played is more than 8?###answer:SELECT AVG(ties) FROM table_name_73 WHERE team = "montreal victorias" AND games_played > 8###context:CREATE TABLE table_name_73 (ties INTEGER, team VARCHAR, games_played VARCHAR)
###question:what is the average losses when the wins is 3?###answer:SELECT AVG(losses) FROM table_name_24 WHERE wins = 3###context:CREATE TABLE table_name_24 (losses INTEGER, wins VARCHAR)
###question:what is the highest goals against when the wins is less than 1?###answer:SELECT MAX(goals_against) FROM table_name_54 WHERE wins < 1###context:CREATE TABLE table_name_54 (goals_against INTEGER, wins INTEGER)
###question:what is the total number of goals for when the ties is more than 0, the goals against is more than 35 and the wins is less than 2?###answer:SELECT COUNT(goals_for) FROM table_name_48 WHERE ties > 0 AND goals_against > 35 AND wins < 2###context:CREATE TABLE table_name_48 (goals_for VARCHAR, wins VARCHAR, tie...
###question:what is the sum of the losses when the goals against is less than 34 and the games played is less than 8?###answer:SELECT SUM(losses) FROM table_name_80 WHERE goals_against < 34 AND games_played < 8###context:CREATE TABLE table_name_80 (losses INTEGER, goals_against VARCHAR, games_played VARCHAR)
###question:What is the name of the platform used for various computers and consoles?###answer:SELECT platform FROM table_name_11 WHERE system = "various computers and consoles"###context:CREATE TABLE table_name_11 (platform VARCHAR, system VARCHAR)
###question:Which system is named ELKJS?###answer:SELECT system FROM table_name_66 WHERE name = "elkjs"###context:CREATE TABLE table_name_66 (system VARCHAR, name VARCHAR)
###question:What is the system called that is named ELKJS?###answer:SELECT system FROM table_name_56 WHERE name = "elkjs"###context:CREATE TABLE table_name_56 (system VARCHAR, name VARCHAR)
###question:What are the numbers for the item completed earlier than 1904?###answer:SELECT numbers FROM table_name_13 WHERE completed < 1904###context:CREATE TABLE table_name_13 (numbers VARCHAR, completed INTEGER)
###question:For the item with more than 10, and numbers of 53-58, 61-72, what is the lowest completed?###answer:SELECT MIN(completed) FROM table_name_97 WHERE quantity > 10 AND numbers = "53-58, 61-72"###context:CREATE TABLE table_name_97 (completed INTEGER, quantity VARCHAR, numbers VARCHAR)
###question:What is the quantity of the item with the numbers of 29-36?###answer:SELECT AVG(quantity) FROM table_name_91 WHERE numbers = "29-36"###context:CREATE TABLE table_name_91 (quantity INTEGER, numbers VARCHAR)
###question:How many reg GP for rick vaive in round 1?###answer:SELECT SUM(reg_gp) FROM table_name_40 WHERE player = "rick vaive" AND rd__number > 1###context:CREATE TABLE table_name_40 (reg_gp INTEGER, player VARCHAR, rd__number VARCHAR)
###question:How many reg GP for rick vaive in round 1?###answer:SELECT SUM(reg_gp) FROM table_name_19 WHERE player = "rick vaive" AND rd__number < 1###context:CREATE TABLE table_name_19 (reg_gp INTEGER, player VARCHAR, rd__number VARCHAR)
###question:How many rounds exist for picks under 5?###answer:SELECT COUNT(rd__number) FROM table_name_21 WHERE pick__number < 5###context:CREATE TABLE table_name_21 (rd__number VARCHAR, pick__number INTEGER)
###question:Who did the Jets play in their post-week 15 game?###answer:SELECT opponent FROM table_name_2 WHERE week > 15###context:CREATE TABLE table_name_2 (opponent VARCHAR, week INTEGER)
###question:Who did the Jets play in their pre-week 9 game at the Robert F. Kennedy memorial stadium?###answer:SELECT opponent FROM table_name_32 WHERE week < 9 AND game_site = "robert f. kennedy memorial stadium"###context:CREATE TABLE table_name_32 (opponent VARCHAR, week VARCHAR, game_site VARCHAR)
###question:What was the date of the game when the Canadiens had a record of 31–19–9?###answer:SELECT date FROM table_name_40 WHERE record = "31–19–9"###context:CREATE TABLE table_name_40 (date VARCHAR, record VARCHAR)
###question:Who was the visiting team at the game when the Canadiens had a record of 30–19–9?###answer:SELECT visitor FROM table_name_29 WHERE record = "30–19–9"###context:CREATE TABLE table_name_29 (visitor VARCHAR, record VARCHAR)
###question:What school did bo jackson attend?###answer:SELECT school FROM table_name_96 WHERE player = "bo jackson"###context:CREATE TABLE table_name_96 (school VARCHAR, player VARCHAR)
###question:What was the highest guard picked?###answer:SELECT MAX(pick) FROM table_name_50 WHERE position = "guard"###context:CREATE TABLE table_name_50 (pick INTEGER, position VARCHAR)
###question:What is the highest pick for a player from auburn?###answer:SELECT MAX(pick) FROM table_name_60 WHERE school = "auburn"###context:CREATE TABLE table_name_60 (pick INTEGER, school VARCHAR)
###question:Tell me the rider with 18.185 points round 1###answer:SELECT rider FROM table_name_54 WHERE round_1_points = "18.185"###context:CREATE TABLE table_name_54 (rider VARCHAR, round_1_points VARCHAR)
###question:Tell me the most total for horse of carlson###answer:SELECT MAX(total) FROM table_name_10 WHERE horse = "carlson"###context:CREATE TABLE table_name_10 (total INTEGER, horse VARCHAR)
###question:Tell me the rider that had round 1 points of 7.465 and total more than 16.615###answer:SELECT rider FROM table_name_65 WHERE total > 16.615 AND round_1_points = "7.465"###context:CREATE TABLE table_name_65 (rider VARCHAR, total VARCHAR, round_1_points VARCHAR)
###question:What were the assists on April 8 in game less than 78?###answer:SELECT high_assists FROM table_name_75 WHERE game < 78 AND date = "april 8"###context:CREATE TABLE table_name_75 (high_assists VARCHAR, game VARCHAR, date VARCHAR)
###question:What was the score of game 82?###answer:SELECT score FROM table_name_91 WHERE game = 82###context:CREATE TABLE table_name_91 (score VARCHAR, game VARCHAR)
###question:When was there a game at Kardinia Park?###answer:SELECT date FROM table_name_78 WHERE venue = "kardinia park"###context:CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR)
###question:who had the high points when chris bosh (13) had the high rebounds?###answer:SELECT high_points FROM table_name_97 WHERE high_rebounds = "chris bosh (13)"###context:CREATE TABLE table_name_97 (high_points VARCHAR, high_rebounds VARCHAR)
###question:what is the score when the team is @ cleveland?###answer:SELECT score FROM table_name_20 WHERE team = "@ cleveland"###context:CREATE TABLE table_name_20 (score VARCHAR, team VARCHAR)