question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What is the name for the regional county municipality of d'autray and a code less than 52017? | CREATE TABLE table_name_9 (name VARCHAR, regional_county_municipality VARCHAR, code VARCHAR) | SELECT name FROM table_name_9 WHERE regional_county_municipality = "d'autray" AND code < 52017 |
What was the attendance on August 2? | CREATE TABLE table_name_48 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_48 WHERE date = "august 2" |
Which Total is the lowest one that has a Rank smaller than 2, and a Silver smaller than 15? | CREATE TABLE table_name_23 (total INTEGER, rank VARCHAR, silver VARCHAR) | SELECT MIN(total) FROM table_name_23 WHERE rank < 2 AND silver < 15 |
Who is the visitor team of the game where Buffalo was the home team? | CREATE TABLE table_name_29 (visitor VARCHAR, home VARCHAR) | SELECT visitor FROM table_name_29 WHERE home = "buffalo" |
What losses did racing de santander, that scored less than 68 goals, had a goal difference of less than 23 and 10 draws? | CREATE TABLE table_name_25 (losses INTEGER, club VARCHAR, draws VARCHAR, goals_against VARCHAR, goal_difference VARCHAR) | SELECT MAX(losses) FROM table_name_25 WHERE goals_against < 68 AND goal_difference < 23 AND draws = 10 AND club = "racing de santander" |
WHAT IS THE POSITION WITH A LOST OF 6, FOR CAERNARFON TOWN? | CREATE TABLE table_name_29 (position INTEGER, lost VARCHAR, team VARCHAR) | SELECT SUM(position) FROM table_name_29 WHERE lost = 6 AND team = "caernarfon town" |
What is the most losses that the Royals had when they had a percentage over 0.461, won over 86 games, and finished 2nd in 1953? | CREATE TABLE table_name_62 (losses INTEGER, year VARCHAR, finish VARCHAR, percentage VARCHAR, wins VARCHAR) | SELECT MAX(losses) FROM table_name_62 WHERE percentage > 0.461 AND wins > 86 AND finish = "2nd" AND year = 1953 |
Marat Safin is the opponent in the final in what championship? | CREATE TABLE table_26202788_7 (championship VARCHAR, opponent_in_the_final VARCHAR) | SELECT championship FROM table_26202788_7 WHERE opponent_in_the_final = "Marat Safin" |
What is the nationality of the person with number 27? | CREATE TABLE table_name_96 (nationality VARCHAR, jersey_number_s_ VARCHAR) | SELECT nationality FROM table_name_96 WHERE jersey_number_s_ = "27" |
What home team has 27 as the tie no.? | CREATE TABLE table_name_64 (home_team VARCHAR, tie_no VARCHAR) | SELECT home_team FROM table_name_64 WHERE tie_no = "27" |
What is the date of the match with a result of ud 12/12 between Pernell Whitaker and James Mcgirt? | CREATE TABLE table_name_87 (date VARCHAR, opponent VARCHAR, result VARCHAR, name VARCHAR) | SELECT date FROM table_name_87 WHERE result = "ud 12/12" AND name = "pernell whitaker" AND opponent = "james mcgirt" |
What is the Score when the winner was suntory sungoliath, and the number attendance was n/a? | CREATE TABLE table_name_86 (score VARCHAR, winner VARCHAR, attendance VARCHAR) | SELECT score FROM table_name_86 WHERE winner = "suntory sungoliath" AND attendance = "n/a" |
What is the propulsion for the RB 04 earlier than 1962? | CREATE TABLE table_name_79 (propulsion VARCHAR, year VARCHAR, name VARCHAR) | SELECT propulsion FROM table_name_79 WHERE year < 1962 AND name = "rb 04" |
Which candidate lost the election that 770,046 people voted in? | CREATE TABLE table_name_99 (candidate VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR) | SELECT candidate FROM table_name_99 WHERE outcome_of_election = "lost" AND number_of_votes = "770,046" |
Tell me the nomination for goran paskaljevic | CREATE TABLE table_name_12 (nomination VARCHAR, director VARCHAR) | SELECT nomination FROM table_name_12 WHERE director = "goran paskaljevic" |
Which country did Natalia Makarova visit? | CREATE TABLE table_name_96 (countries_visited VARCHAR, presenter VARCHAR) | SELECT countries_visited FROM table_name_96 WHERE presenter = "natalia makarova" |
How many lost are there before game 7? | CREATE TABLE table_name_5 (lost INTEGER, games INTEGER) | SELECT SUM(lost) FROM table_name_5 WHERE games < 7 |
What is the total number of goals when there are 3 draws, more than 18 losses, and played is smaller than 38? | CREATE TABLE table_name_40 (goals_for VARCHAR, played VARCHAR, draws VARCHAR, losses VARCHAR) | SELECT COUNT(goals_for) FROM table_name_40 WHERE draws = 3 AND losses > 18 AND played < 38 |
When did the Visiting San Antonio Spurs score 97-113? | CREATE TABLE table_name_22 (date VARCHAR, visitor VARCHAR, score VARCHAR) | SELECT date FROM table_name_22 WHERE visitor = "san antonio spurs" AND score = "97-113" |
What was the result of the UEFA Euro 2008 Qualifying competition? | CREATE TABLE table_name_97 (result VARCHAR, competition VARCHAR) | SELECT result FROM table_name_97 WHERE competition = "uefa euro 2008 qualifying" |
Name the least lost | CREATE TABLE table_21991074_3 (lost INTEGER) | SELECT MIN(lost) FROM table_21991074_3 |
Of the players whose lead began at the australian championships, what was the shortest span of years led? | CREATE TABLE table_23408094_14 (span_of_years_led INTEGER, tournament_at_which_lead_began VARCHAR) | SELECT MIN(span_of_years_led) FROM table_23408094_14 WHERE tournament_at_which_lead_began = "Australian Championships" |
What is the appointment day for 4 December 2008 vacancy? | CREATE TABLE table_name_40 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR) | SELECT date_of_appointment FROM table_name_40 WHERE date_of_vacancy = "4 december 2008" |
Name the total number of wind m/s for sunday emmanuel | CREATE TABLE table_1231316_6 (wind__m_s_ VARCHAR, athlete VARCHAR) | SELECT COUNT(wind__m_s_) FROM table_1231316_6 WHERE athlete = "Sunday Emmanuel" |
For the game ending with a score of 28-43, what is the listed as the final record? | CREATE TABLE table_name_86 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_86 WHERE score = "28-43" |
What is the 2010 Lukoil oil prodroduction when in 2009 oil production 21.662 million tonnes? | CREATE TABLE table_name_25 (Id VARCHAR) | SELECT 2010 FROM table_name_25 WHERE 2009 = "21.662" |
Find number of tracks in each genre? | CREATE TABLE tracks (genre_id VARCHAR); CREATE TABLE genres (name VARCHAR, id VARCHAR) | SELECT COUNT(*), T1.name FROM genres AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id GROUP BY T1.name |
Who is the actor required when Edna Stricken is the FlatSpin actor? | CREATE TABLE table_name_24 (actor_required VARCHAR, flatspin VARCHAR) | SELECT actor_required FROM table_name_24 WHERE flatspin = "edna stricken" |
What is the launch date for the Ushio dd-54? | CREATE TABLE table_name_55 (launched VARCHAR, name VARCHAR) | SELECT launched FROM table_name_55 WHERE name = "ushio dd-54" |
How many stolen ends were there when the locale was Sweden? | CREATE TABLE table_1543845_63 (stolen_ends VARCHAR, locale VARCHAR, Sweden VARCHAR) | SELECT stolen_ends FROM table_1543845_63 WHERE locale = Sweden |
Which episodes did Nelson McCormick direct? | CREATE TABLE table_17355820_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT written_by FROM table_17355820_1 WHERE directed_by = "Nelson McCormick" |
What is the meaning of the class 6 verbs? | CREATE TABLE table_1745843_5 (verb_meaning VARCHAR, class VARCHAR) | SELECT verb_meaning FROM table_1745843_5 WHERE class = "6" |
What is the Score of an Opponent\ in the final of jordi arrese àlex corretja? | CREATE TABLE table_name_25 (score VARCHAR, opponents_in_the_final VARCHAR) | SELECT score FROM table_name_25 WHERE opponents_in_the_final = "jordi arrese àlex corretja" |
What was the score for the game where the home team was Wycombe Wanderers? | CREATE TABLE table_name_73 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_73 WHERE home_team = "wycombe wanderers" |
What is the location when the new york jets lost earlier than 1997 and a Result of 31–28? | CREATE TABLE table_name_20 (location VARCHAR, result VARCHAR, loser VARCHAR, year VARCHAR) | SELECT location FROM table_name_20 WHERE loser = "new york jets" AND year < 1997 AND result = "31–28" |
Record of 0–8 had what lowest week? | CREATE TABLE table_name_25 (week INTEGER, record VARCHAR) | SELECT MIN(week) FROM table_name_25 WHERE record = "0–8" |
what's the first elected with district illinois 18 | CREATE TABLE table_1341472_15 (first_elected VARCHAR, district VARCHAR) | SELECT first_elected FROM table_1341472_15 WHERE district = "Illinois 18" |
What is the sum of all the points won by Peter Whitehead in an alta f2 Chassis? | CREATE TABLE table_name_41 (points INTEGER, entrant VARCHAR, chassis VARCHAR) | SELECT SUM(points) FROM table_name_41 WHERE entrant = "peter whitehead" AND chassis = "alta f2" |
WHAT IS THE HIGHEST WINS WITH AGAINST SMALLER THAN 924, LOSSES SMALLER THAN 2? | CREATE TABLE table_name_72 (wins INTEGER, against VARCHAR, losses VARCHAR) | SELECT MAX(wins) FROM table_name_72 WHERE against < 924 AND losses < 2 |
Which location has an AS-number of N/A? | CREATE TABLE table_name_60 (location__numbersites__global_local_ VARCHAR, as_number VARCHAR) | SELECT location__numbersites__global_local_ FROM table_name_60 WHERE as_number = "n/a" |
What is the score of the game where real espana was the home team? | CREATE TABLE table_name_90 (score VARCHAR, home VARCHAR) | SELECT score FROM table_name_90 WHERE home = "real espana" |
Name the general classification with roman kreuziger and points classification of fabian cancellara | CREATE TABLE table_name_97 (general_classification VARCHAR, young_rider_classification VARCHAR, points_classification VARCHAR) | SELECT general_classification FROM table_name_97 WHERE young_rider_classification = "roman kreuziger" AND points_classification = "fabian cancellara" |
The Apollo astronaut who was 38y 9m 7d when first stepping on the moon is who? | CREATE TABLE table_name_27 (born VARCHAR, age_at_first_step VARCHAR) | SELECT born FROM table_name_27 WHERE age_at_first_step = "38y 9m 7d" |
How many directors were there for the production code 1ark08? | CREATE TABLE table_22835602_1 (directed_by VARCHAR, production_code VARCHAR) | SELECT COUNT(directed_by) FROM table_22835602_1 WHERE production_code = "1ARK08" |
What is the name of the last match that had a sacked manner of departure and a geninho outgoing manner? | CREATE TABLE table_name_8 (last_match VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR) | SELECT last_match FROM table_name_8 WHERE manner_of_departure = "sacked" AND outgoing_manager = "geninho" |
What was the home team that played Geelong? | CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_43 WHERE away_team = "geelong" |
Tell me the total number of administrative panel with labour panel more than 2, nominated by taoiseach more than 6 and total of 28 | CREATE TABLE table_name_59 (administrative_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, labour_panel VARCHAR, total VARCHAR) | SELECT COUNT(administrative_panel) FROM table_name_59 WHERE labour_panel > 2 AND total = 28 AND nominated_by_the_taoiseach > 6 |
What is Tournament, when Date is "9 August 1993"? | CREATE TABLE table_name_38 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_38 WHERE date = "9 august 1993" |
List all airline names and their abbreviations in "USA". | CREATE TABLE AIRLINES (Airline VARCHAR, Abbreviation VARCHAR, Country VARCHAR) | SELECT Airline, Abbreviation FROM AIRLINES WHERE Country = "USA" |
Which years have a School/Club Team of colorado state? | CREATE TABLE table_name_17 (years_for_jazz VARCHAR, school_club_team VARCHAR) | SELECT years_for_jazz FROM table_name_17 WHERE school_club_team = "colorado state" |
Which Play-Off has Events of –, and a Season of a-6? | CREATE TABLE table_name_84 (play_off VARCHAR, events VARCHAR, season VARCHAR) | SELECT play_off FROM table_name_84 WHERE events = "–" AND season = "a-6" |
What is the lowest pick that has arizona cardinals as the NFL club? | CREATE TABLE table_name_43 (pick INTEGER, nfl_club VARCHAR) | SELECT MIN(pick) FROM table_name_43 WHERE nfl_club = "arizona cardinals" |
What is the Home team at the Blackburn Rovers Away game? | CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_70 WHERE away_team = "blackburn rovers" |
Tell me the degree for chemistry 1965 | CREATE TABLE table_name_90 (degree VARCHAR, award_year VARCHAR, award VARCHAR) | SELECT degree FROM table_name_90 WHERE award_year = 1965 AND award = "chemistry" |
What was gary player's score? | CREATE TABLE table_name_25 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_25 WHERE player = "gary player" |
Who is the home team when melbourne is the away team? | CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_47 WHERE away_team = "melbourne" |
On what date did Northerly place 6th? | CREATE TABLE table_1358608_4 (date VARCHAR, result VARCHAR) | SELECT date FROM table_1358608_4 WHERE result = "6th" |
What is the grid total when there are 37 laps? | CREATE TABLE table_name_57 (grid VARCHAR, laps VARCHAR) | SELECT COUNT(grid) FROM table_name_57 WHERE laps = 37 |
What is the most recent date for a singles final with the score of 1–6, 4–6, 5–7? | CREATE TABLE table_name_77 (date INTEGER, score_in_the_final VARCHAR) | SELECT MAX(date) FROM table_name_77 WHERE score_in_the_final = "1–6, 4–6, 5–7" |
Who played the Rams on October 2, 2005? | CREATE TABLE table_name_22 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_22 WHERE date = "october 2, 2005" |
How many points does the club with a try bonus of 10 have? | CREATE TABLE table_14070062_3 (points VARCHAR, try_bonus VARCHAR) | SELECT points FROM table_14070062_3 WHERE try_bonus = "10" |
What was Jim Colbert's score? | CREATE TABLE table_name_72 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_72 WHERE player = "jim colbert" |
What was Eduardo Romero's score? | CREATE TABLE table_name_59 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_59 WHERE player = "eduardo romero" |
What Season, when Country is China, when Team is Dalian Shide, and when Goals are 0? | CREATE TABLE table_name_48 (season VARCHAR, goals VARCHAR, country VARCHAR, team VARCHAR) | SELECT season FROM table_name_48 WHERE country = "china" AND team = "dalian shide" AND goals = 0 |
How many goals against total did the team with more than 52 goals and fewer than 10 losses have? | CREATE TABLE table_name_41 (goals_against INTEGER, goals_for VARCHAR, losses VARCHAR) | SELECT SUM(goals_against) FROM table_name_41 WHERE goals_for > 52 AND losses < 10 |
What name has a License of gpl, and an Actual version of 0.8.29wip4? | CREATE TABLE table_name_46 (name VARCHAR, license VARCHAR, actual_version VARCHAR) | SELECT name FROM table_name_46 WHERE license = "gpl" AND actual_version = "0.8.29wip4" |
What was the championship during the match with the opponent of richard fromberg? | CREATE TABLE table_name_8 (championship VARCHAR, opponent VARCHAR) | SELECT championship FROM table_name_8 WHERE opponent = "richard fromberg" |
When 2010 is the year what is the game? | CREATE TABLE table_29743928_4 (games VARCHAR, years VARCHAR) | SELECT games FROM table_29743928_4 WHERE years = "2010" |
Where tower height in ft (m) is 46ft (14.0m) the focal plane is ft (m). | CREATE TABLE table_25597136_1 (focal_plane_in_ft__m_ VARCHAR, tower_height_in_ft__m_ VARCHAR) | SELECT focal_plane_in_ft__m_ FROM table_25597136_1 WHERE tower_height_in_ft__m_ = "46ft (14.0m)" |
What catalog has a format of ED remaster CD and a date of December 19, 2001? | CREATE TABLE table_name_68 (catalog VARCHAR, format VARCHAR, date VARCHAR) | SELECT catalog FROM table_name_68 WHERE format = "ed remaster cd" AND date = "december 19, 2001" |
WHICH Regular Season has a Division of 4? | CREATE TABLE table_name_19 (regular_season VARCHAR, division VARCHAR) | SELECT regular_season FROM table_name_19 WHERE division = 4 |
What is the lowest value for Sydney, when WEEKLY RANK is less than 8, and when Brisbane is greater than 252,000? | CREATE TABLE table_name_16 (sydney INTEGER, weekly_rank VARCHAR, brisbane VARCHAR) | SELECT MIN(sydney) FROM table_name_16 WHERE weekly_rank < 8 AND brisbane > 252 OFFSET 000 |
How many percent of the votes in Debaca did McCain get? | CREATE TABLE table_20539826_1 (mccain_percentage VARCHAR, county VARCHAR) | SELECT mccain_percentage FROM table_20539826_1 WHERE county = "DeBaca" |
In the game on or before week 9, who was the opponent when the attendance was 61,626? | CREATE TABLE table_name_49 (opponent VARCHAR, week VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_49 WHERE week < 9 AND attendance = "61,626" |
What was the result of the game on week 4? | CREATE TABLE table_name_16 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_16 WHERE week = 4 |
Find the name and building of the department with the highest budget. | CREATE TABLE department (dept_name VARCHAR, building VARCHAR, budget VARCHAR) | SELECT dept_name, building FROM department ORDER BY budget DESC LIMIT 1 |
What was the record when the home team is Washington? | CREATE TABLE table_name_57 (record VARCHAR, home VARCHAR) | SELECT record FROM table_name_57 WHERE home = "washington" |
What district is incumbent robert l. mouton from? | CREATE TABLE table_1342292_17 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1342292_17 WHERE incumbent = "Robert L. Mouton" |
What is Player, when Country is United States, and when Score is 70-72-70=212? | CREATE TABLE table_name_1 (player VARCHAR, country VARCHAR, score VARCHAR) | SELECT player FROM table_name_1 WHERE country = "united states" AND score = 70 - 72 - 70 = 212 |
Which date has opponents, Claire De Gubernatis Alexandra Dulgheru, in the final? | CREATE TABLE table_name_20 (date VARCHAR, opponents_in_the_final VARCHAR) | SELECT date FROM table_name_20 WHERE opponents_in_the_final = "claire de gubernatis alexandra dulgheru" |
Which player has a To par of –6? | CREATE TABLE table_name_83 (player VARCHAR, to_par VARCHAR) | SELECT player FROM table_name_83 WHERE to_par = "–6" |
How many viewers did the episode directed by David Nutter draw in? | CREATE TABLE table_14929574_3 (us_viewers__million_ VARCHAR, directed_by VARCHAR) | SELECT us_viewers__million_ FROM table_14929574_3 WHERE directed_by = "David Nutter" |
Which track has a title : Just a little bit | CREATE TABLE table_name_64 (track INTEGER, song_title VARCHAR) | SELECT MIN(track) FROM table_name_64 WHERE song_title = "just a little bit" |
Which Status has a Co-contestant (Yaar vs. Pyaar) of tina sachdev? | CREATE TABLE table_name_52 (status VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR) | SELECT status FROM table_name_52 WHERE co_contestant__yaar_vs_pyaar_ = "tina sachdev" |
What is the total number of people that attended the glenferrie oval venue? | CREATE TABLE table_name_39 (crowd INTEGER, venue VARCHAR) | SELECT SUM(crowd) FROM table_name_39 WHERE venue = "glenferrie oval" |
What is Playoff Result, when Winner is "Alaska Aces", when Win # is greater than 1, when Points is less than 106, and when Year is "2011-12"? | CREATE TABLE table_name_45 (playoff_result VARCHAR, year VARCHAR, points VARCHAR, winner VARCHAR, win__number VARCHAR) | SELECT playoff_result FROM table_name_45 WHERE winner = "alaska aces" AND win__number > 1 AND points < 106 AND year = "2011-12" |
What was the population of the area that was formerly under the authority of the Audenshaw Urban District? | CREATE TABLE table_name_65 (population VARCHAR, former_local_authority VARCHAR) | SELECT population FROM table_name_65 WHERE former_local_authority = "audenshaw urban district" |
What is department name and office for the professor whose last name is Heffington? | CREATE TABLE employee (emp_num VARCHAR, emp_lname VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR); CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR, dept_code VARCHAR) | SELECT T3.dept_name, T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T1.emp_lname = 'Heffington' |
What is the lowest election that has cinisello balsamo as the municipality? | CREATE TABLE table_name_4 (election INTEGER, municipality VARCHAR) | SELECT MIN(election) FROM table_name_4 WHERE municipality = "cinisello balsamo" |
What is the amount of trees, that require replacement when the district is motovilikhinsky? | CREATE TABLE table_10342194_3 (amount_of_trees VARCHAR, _that_require_replacement VARCHAR, district VARCHAR) | SELECT amount_of_trees, _that_require_replacement FROM table_10342194_3 WHERE district = "Motovilikhinsky" |
Which Result has an Opponent of steve walker? | CREATE TABLE table_name_4 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_4 WHERE opponent = "steve walker" |
Which Round is the lowest one that has a School/Club Team of alabama, and a Pick larger than 43? | CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, pick VARCHAR) | SELECT MIN(round) FROM table_name_87 WHERE school_club_team = "alabama" AND pick > 43 |
What is Date, when Away Team is Kangaroos? | CREATE TABLE table_name_38 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_38 WHERE away_team = "kangaroos" |
Where is the position when houston, tx is the hometown and worthing is the high school? | CREATE TABLE table_22496344_1 (position VARCHAR, home_town VARCHAR, high_school VARCHAR) | SELECT position FROM table_22496344_1 WHERE home_town = "Houston, TX" AND high_school = "Worthing" |
Which pick has marko makinen as the player? | CREATE TABLE table_2886617_3 (pick VARCHAR, player VARCHAR) | SELECT pick FROM table_2886617_3 WHERE player = "Marko Makinen" |
How many bronzes for Iceland with over 2 silvers? | CREATE TABLE table_name_53 (bronze INTEGER, silver VARCHAR, nation VARCHAR) | SELECT AVG(bronze) FROM table_name_53 WHERE silver > 2 AND nation = "iceland" |
What is the largest crowd with Home team of hawthorn? | CREATE TABLE table_name_62 (crowd INTEGER, home_team VARCHAR) | SELECT MAX(crowd) FROM table_name_62 WHERE home_team = "hawthorn" |
Name the date for score w 109–95 (ot) | CREATE TABLE table_23285761_8 (date VARCHAR, score VARCHAR) | SELECT date FROM table_23285761_8 WHERE score = "W 109–95 (OT)" |
What is the position of Tayshaun Prince? | CREATE TABLE table_name_69 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_69 WHERE player = "tayshaun prince" |
What is the total with lower than rank 8, and higher than 27.6 score and 13.8 difficulty? | CREATE TABLE table_name_63 (total INTEGER, difficulty_score VARCHAR, rank VARCHAR, routine_score VARCHAR) | SELECT MIN(total) FROM table_name_63 WHERE rank > 8 AND routine_score > 27.6 AND difficulty_score = "13.8" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.