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