answer stringlengths 6 3.91k | question stringlengths 7 766 | context stringlengths 27 7.14k |
|---|---|---|
SELECT surface FROM table_name_71 WHERE score = "7–6(4), 6–1" | Name the surface for score of 7–6(4), 6–1 | CREATE TABLE table_name_71 (surface VARCHAR, score VARCHAR) |
SELECT target FROM table_1661124_1 WHERE approval_date = 2006 | What is the target with an approval date of 2006? | CREATE TABLE table_1661124_1 (target VARCHAR, approval_date VARCHAR) |
SELECT "Location Attendance" FROM table_73505 WHERE "High points" = 'Carl Landry (25)' | Where was the game in which Carl Landry (25) did the most high points played? | CREATE TABLE table_73505 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
) |
SELECT date FROM table_name_98 WHERE score = "7–6(4), 6–1" | Name the date that had a score of 7–6(4), 6–1 | CREATE TABLE table_name_98 (date VARCHAR, score VARCHAR) |
SELECT MIN(rural), __percentage FROM table_16645_1 WHERE year__january_ = 1979 | What is the rural population percentage in 1979? | CREATE TABLE table_16645_1 (__percentage VARCHAR, rural INTEGER, year__january_ VARCHAR) |
SELECT MAX(played) FROM table_name_47 WHERE goals_conceded = 21 AND draw > 3 | What was the highest number played when there were 21 goals conceded and a draw greater than 3? | CREATE TABLE table_name_47 (
played INTEGER,
goals_conceded VARCHAR,
draw VARCHAR
) |
SELECT result FROM table_name_19 WHERE year > 1997 AND competition = "world group, semifinals" | what is the result for the world group, semifinals after the year 1997? | CREATE TABLE table_name_19 (result VARCHAR, year VARCHAR, competition VARCHAR) |
SELECT COUNT(urban), __percentage FROM table_16645_1 WHERE population__000_ = 14685 | How many percentage figures are given for the urban population when the total population number is 14685? | CREATE TABLE table_16645_1 (__percentage VARCHAR, urban VARCHAR, population__000_ VARCHAR) |
SELECT AVG(attendance) FROM table_name_54 WHERE venue = "candlestick park" AND date = "november 25" | What is the average Attendance, when Venue is 'Candlestick Park', and when Date is 'November 25'? | CREATE TABLE table_name_54 (
attendance INTEGER,
venue VARCHAR,
date VARCHAR
) |
SELECT home_team FROM table_name_54 WHERE away_team = "south melbourne" | What home team played against south Melbourne? | CREATE TABLE table_name_54 (home_team VARCHAR, away_team VARCHAR) |
SELECT islam FROM table_16642_1 WHERE ethnicity = "Tajik" | When tajik is the ethnicity what is islam? | CREATE TABLE table_16642_1 (islam VARCHAR, ethnicity VARCHAR) |
SELECT * FROM Tags ORDER BY Count DESC LIMIT 10 | SELECT TOP 10 * FROM tags ORDER BY Count DESC. | CREATE TABLE PostHistoryTypes (
Id number,
Name text
)
CREATE TABLE TagSynonyms (
Id number,
SourceTagName text,
TargetTagName text,
CreationDate time,
OwnerUserId number,
AutoRenameCount number,
LastAutoRename time,
Score number,
ApprovedByUserId number,
ApprovalDate ti... |
SELECT AVG(crowd) FROM table_name_6 WHERE home_team = "essendon" | What is the average crowd size for the home team essendon? | CREATE TABLE table_name_6 (crowd INTEGER, home_team VARCHAR) |
SELECT COUNT(name) FROM table_16654785_2 WHERE length__m_ = 455 | How many had a length of 455? | CREATE TABLE table_16654785_2 (name VARCHAR, length__m_ VARCHAR) |
SELECT school_club_team FROM table_name_60 WHERE pick = 139 | Which school or club team has a pick of 139? | CREATE TABLE table_name_60 (
school_club_team VARCHAR,
pick VARCHAR
) |
SELECT home_team AS score FROM table_name_49 WHERE away_team = "north melbourne" | What is the home team score when north Melbourne was the away team? | CREATE TABLE table_name_49 (home_team VARCHAR, away_team VARCHAR) |
SELECT MIN(average_climb___percentage_) FROM table_16654785_2 WHERE name = "Tenbosse" | What is the average climb for Tenbosse? | CREATE TABLE table_16654785_2 (average_climb___percentage_ INTEGER, name VARCHAR) |
SELECT circuit FROM table_name_15 WHERE team = "volvo cars australia" | What circuit has volvo cars australia as the team? | CREATE TABLE table_name_15 (
circuit VARCHAR,
team VARCHAR
) |
SELECT AVG(grid) FROM table_name_33 WHERE constructor = "brm" AND laps < 63 | What is the average grid with brm and under 63 laps? | CREATE TABLE table_name_33 (grid INTEGER, constructor VARCHAR, laps VARCHAR) |
SELECT number FROM table_16654785_2 WHERE kilometer = 233 | How many have a kilometers of 233? | CREATE TABLE table_16654785_2 (number VARCHAR, kilometer VARCHAR) |
SELECT economics FROM table_145439_1 WHERE education = "92.0" | what's the economics score with education being 92.0 | CREATE TABLE table_145439_1 (
economics VARCHAR,
education VARCHAR
) |
SELECT circuit FROM table_name_68 WHERE date = "may 27" AND class = "gts-2" | On what circuit is there a class gts-2 race that takes place on May 27? | CREATE TABLE table_name_68 (circuit VARCHAR, date VARCHAR, class VARCHAR) |
SELECT COUNT(average_climb___percentage_) FROM table_16654785_2 WHERE length__m_ = 375 | How many have a length of 375? | CREATE TABLE table_16654785_2 (average_climb___percentage_ VARCHAR, length__m_ VARCHAR) |
SELECT MAX("Attendance") FROM table_78774 WHERE "Result" = '5-1' | What is the highest attendance at a game with a result of 5-1? | CREATE TABLE table_78774 (
"Date" text,
"Round" text,
"Opponent" text,
"Venue" text,
"Result" text,
"Attendance" real,
"Scorers" text
) |
SELECT circuit FROM table_name_69 WHERE length = "2 hours" | On what circuit is there a race that lasts 2 hours? | CREATE TABLE table_name_69 (circuit VARCHAR, length VARCHAR) |
SELECT playoffs FROM table_16636344_1 WHERE year = "2011" | What was the team's playoff status in 2011? | CREATE TABLE table_16636344_1 (playoffs VARCHAR, year VARCHAR) |
SELECT MIN(demographic.age) FROM demographic WHERE demographic.gender = "M" AND demographic.discharge_location = "LONG TERM CARE HOSPITAL" | calculate the minimum age of male patients who were discharged to long term hospital care. | CREATE TABLE prescriptions (
subject_id text,
hadm_id text,
icustay_id text,
drug_type text,
drug text,
formulary_drug_cd text,
route text,
drug_dose text
)
CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
... |
SELECT class FROM table_name_23 WHERE race = "the dodge dealers grand prix" | What class is the dodge dealers grand prix? | CREATE TABLE table_name_23 (class VARCHAR, race VARCHAR) |
SELECT league FROM table_16636344_1 WHERE year = "2010" | What was the team's league in 2010? | CREATE TABLE table_16636344_1 (league VARCHAR, year VARCHAR) |
SELECT away_team AS score FROM table_name_44 WHERE venue = "mcg" | What was the away team's score at the game held at MCG? | CREATE TABLE table_name_44 (
away_team VARCHAR,
venue VARCHAR
) |
SELECT length FROM table_name_95 WHERE race = "first union six hours at the glen" | What is the length of the First Union six hours at the Glen? | CREATE TABLE table_name_95 (length VARCHAR, race VARCHAR) |
SELECT league FROM table_16636344_1 WHERE regular_season = "2nd, Mid Atlantic" | What is the league name for the regular season status of 2nd, mid atlantic? | CREATE TABLE table_16636344_1 (league VARCHAR, regular_season VARCHAR) |
SELECT "Manufacturer" FROM table_8809 WHERE "Class" = 'b-2' | What manufacturer made class b-2? | CREATE TABLE table_8809 (
"Class" text,
"Wheel arrangement" text,
"Fleet number(s)" text,
"Manufacturer" text,
"Year made" text,
"Quantity made" text,
"Quantity preserved" text
) |
SELECT class FROM table_name_20 WHERE date = "august 25" | What is the class of the race that takes place on August 25? | CREATE TABLE table_name_20 (class VARCHAR, date VARCHAR) |
SELECT winning_driver FROM table_16670746_2 WHERE circuit = "Okayama International circuit" | Who was the winning driver at Okayama International Circuit? | CREATE TABLE table_16670746_2 (winning_driver VARCHAR, circuit VARCHAR) |
SELECT away FROM table_name_14 WHERE home = "marathon" | What is Away, when Home is 'marathon'? | CREATE TABLE table_name_14 (
away VARCHAR,
home VARCHAR
) |
SELECT score FROM table_name_94 WHERE home = "montreal" | What was the score when Montreal was home? | CREATE TABLE table_name_94 (score VARCHAR, home VARCHAR) |
SELECT fastest_lap FROM table_16670746_2 WHERE winning_team = "TOM'S Racing" | Who had the fastest lap when the winning team was Tom's Racing? | CREATE TABLE table_16670746_2 (fastest_lap VARCHAR, winning_team VARCHAR) |
SELECT partner FROM table_name_35 WHERE surface = "hard" AND tournament = "amarante" | Who was Silva's Partner in the Amarante Tournament played on a Hard Surface? | CREATE TABLE table_name_35 (
partner VARCHAR,
surface VARCHAR,
tournament VARCHAR
) |
SELECT score FROM table_name_72 WHERE result = "w" AND date = "9/3/97" | On 9/3/97, what was the score that resulted in a w? | CREATE TABLE table_name_72 (score VARCHAR, result VARCHAR, date VARCHAR) |
SELECT fastest_lap FROM table_16670746_2 WHERE winning_team = "Team Impul" AND circuit = "Twin Ring Motegi" | Who had the fastest lap in the race won by Team Impul at the Twin Ring Motegi circuit? | CREATE TABLE table_16670746_2 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR) |
SELECT "First elected" FROM table_70142 WHERE "State" = 'vic' AND "Member" = 'hon don chipp' | What is the year First elected, when the State is vic, and when the Member is Hon Don Chipp? | CREATE TABLE table_70142 (
"Member" text,
"Party" text,
"Electorate" text,
"State" text,
"First elected" text
) |
SELECT name FROM table_name_35 WHERE roll = 422 | Who has a roll value of 422? | CREATE TABLE table_name_35 (name VARCHAR, roll VARCHAR) |
SELECT COUNT(opponents) FROM table_16677874_2 WHERE game = 13 | How many opponents did the team play in week 13? | CREATE TABLE table_16677874_2 (opponents VARCHAR, game VARCHAR) |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.icd9_code = "6959" AND prescriptions.drug_type = "BASE" | get the number of patients with base type drug prescription who have diagnoses icd9 code 6959. | CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob text,
gender text,
language text,
religion text,
admission_type text,
days_stay text,
insurance text,
ethnicity text,
expire_flag text,
admission_location t... |
SELECT area FROM table_name_44 WHERE decile = 10 | In what area is the decile value 10? | CREATE TABLE table_name_44 (area VARCHAR, decile VARCHAR) |
SELECT MAX(opponents) FROM table_16677887_2 WHERE date = "Sept. 14" | How many points did the opponent score on Sept. 14? | CREATE TABLE table_16677887_2 (opponents INTEGER, date VARCHAR) |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.days_stay > "34" AND prescriptions.drug = "Pancrelipase 5000" | how many patients stayed in hospital for more than 34 days and used the drug pancrelipase 5000? | CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob text,
gender text,
language text,
religion text,
admission_type text,
days_stay text,
insurance text,
ethnicity text,
expire_flag text,
admission_location t... |
SELECT MAX(decile) FROM table_name_46 WHERE roll > 301 AND area = "hauraki" | What is the highest decile value with a roll greater than 301 in Hauraki? | CREATE TABLE table_name_46 (decile INTEGER, roll VARCHAR, area VARCHAR) |
SELECT opponent FROM table_16677887_2 WHERE bills_first_downs = 23 | What team were the bills playing where their first down was 23? | CREATE TABLE table_16677887_2 (opponent VARCHAR, bills_first_downs VARCHAR) |
SELECT Code, Manufacturer FROM Products WHERE Price BETWEEN 60 AND 120 | For those products with a price between 60 and 120, show me about the correlation between code and manufacturer in a scatter chart. | CREATE TABLE Manufacturers (
Code INTEGER,
Name VARCHAR(255),
Headquarter VARCHAR(255),
Founder VARCHAR(255),
Revenue REAL
)
CREATE TABLE Products (
Code INTEGER,
Name VARCHAR(255),
Price DECIMAL,
Manufacturer INTEGER
) |
SELECT points_classification FROM table_name_85 WHERE trofeo_fast_team = "metauro mobili-pinarello" AND stage = "6" | Which Points classification has a Trofeo Fast Team of metauro mobili-pinarello, and a Stage of 6? | CREATE TABLE table_name_85 (points_classification VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR) |
SELECT record FROM table_16677887_2 WHERE date = "Sept. 14" | What was the record for the game on Sept. 14? | CREATE TABLE table_16677887_2 (record VARCHAR, date VARCHAR) |
SELECT college FROM table_name_86 WHERE team = "boston celtics" AND round = "7" | Name the college that has 7 rounds and boston celtics team | CREATE TABLE table_name_86 (
college VARCHAR,
team VARCHAR,
round VARCHAR
) |
SELECT stage FROM table_name_19 WHERE winner = "lucien van impe" | Which stage has a Winner of lucien van impe? | CREATE TABLE table_name_19 (stage VARCHAR, winner VARCHAR) |
SELECT MAX(gore_hundred) FROM table_16677738_1 WHERE spelthorne_hundred = 12743 | When 12743 is the spelthorne what is the largest gore hundred? | CREATE TABLE table_16677738_1 (gore_hundred INTEGER, spelthorne_hundred VARCHAR) |
SELECT COUNT("Number of Australians involved") FROM table_15938 WHERE "UN Operation title" = 'UN Commission on Korea' | How many Australians were in the UN commission on Korea? | CREATE TABLE table_15938 (
"UN Operation name" text,
"UN Operation title" text,
"Location" text,
"Dates of Australian involvement" text,
"Number of Australians involved" text,
"Australian role" text
) |
SELECT trofeo_fast_team FROM table_name_10 WHERE winner = "alessandro paganessi" | Which Trofeo Fast Team has a Winner of alessandro paganessi? | CREATE TABLE table_name_10 (trofeo_fast_team VARCHAR, winner VARCHAR) |
SELECT finsbury_division FROM table_16677738_1 WHERE inns_of_court_and_chancery = 1546 | When 1546 is inns of court and chancery what is the finsbury division? | CREATE TABLE table_16677738_1 (finsbury_division VARCHAR, inns_of_court_and_chancery VARCHAR) |
SELECT player FROM table_name_24 WHERE to_par = "+1" AND score = 73 - 71 - 71 = 217 | What Player has a To par of +1 and a Score of 73-71-71=217? | CREATE TABLE table_name_24 (
player VARCHAR,
to_par VARCHAR,
score VARCHAR
) |
SELECT general_classification FROM table_name_95 WHERE stage = "7" | Which General classification has a Stage of 7? | CREATE TABLE table_name_95 (general_classification VARCHAR, stage VARCHAR) |
SELECT MIN(year) FROM table_16677738_1 | What is the lowest overall year? | CREATE TABLE table_16677738_1 (year INTEGER) |
SELECT JOB_ID, AVG(SALARY) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) GROUP BY JOB_ID ORDER BY AVG(SALARY) DESC | For those employees who did not have any job in the past, a bar chart shows the distribution of job_id and the average of salary , and group by attribute job_id, and sort by the y axis in descending. | CREATE TABLE countries (
COUNTRY_ID varchar(2),
COUNTRY_NAME varchar(40),
REGION_ID decimal(10,0)
)
CREATE TABLE regions (
REGION_ID decimal(5,0),
REGION_NAME varchar(25)
)
CREATE TABLE jobs (
JOB_ID varchar(10),
JOB_TITLE varchar(35),
MIN_SALARY decimal(6,0),
MAX_SALARY decimal(6,... |
SELECT winner FROM table_name_78 WHERE trofeo_fast_team = "metauro mobili-pinarello" AND general_classification = "giuseppe saronni" | Which Winner has a Trofeo Fast Team of metauro mobili-pinarello, and a General classification of giuseppe saronni? | CREATE TABLE table_name_78 (winner VARCHAR, trofeo_fast_team VARCHAR, general_classification VARCHAR) |
SELECT inns_of_court_and_chancery FROM table_16677738_1 WHERE without_the_walls = 70489 | When 70489 is without walls what is the inns of court and chancery? | CREATE TABLE table_16677738_1 (inns_of_court_and_chancery VARCHAR, without_the_walls VARCHAR) |
SELECT T1.Name, COUNT(T1.Name) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T1.Name ORDER BY T1.Name | For those records from the products and each product's manufacturer, a bar chart shows the distribution of name and the amount of name , and group by attribute name, and list from low to high by the Name please. | CREATE TABLE Products (
Code INTEGER,
Name VARCHAR(255),
Price DECIMAL,
Manufacturer INTEGER
)
CREATE TABLE Manufacturers (
Code INTEGER,
Name VARCHAR(255),
Headquarter VARCHAR(255),
Founder VARCHAR(255),
Revenue REAL
) |
SELECT report FROM table_name_67 WHERE circuit = "mosport park" | What's the report for the mosport park circuit? | CREATE TABLE table_name_67 (report VARCHAR, circuit VARCHAR) |
SELECT MIN(without_the_walls) FROM table_16677738_1 WHERE within_the_walls > 56174.0 | When within the walls is larger than 56174.0 what is the lowest amount without the walls? | CREATE TABLE table_16677738_1 (without_the_walls INTEGER, within_the_walls INTEGER) |
SELECT "Player" FROM table_17064 WHERE "School" = 'Vista Murrieta High School' | What player represented Vista Murrieta High School? | CREATE TABLE table_17064 (
"Player" text,
"Position" text,
"School" text,
"Hometown" text,
"College" text
) |
SELECT pole_position FROM table_name_13 WHERE circuit = "nürburgring" | Who has the pole position for the nürburgring circuit? | CREATE TABLE table_name_13 (pole_position VARCHAR, circuit VARCHAR) |
SELECT MAX(holborn_division) FROM table_16677738_1 WHERE tower_division = 272966 | When 272966 is the tower division what is the highest holborn division? | CREATE TABLE table_16677738_1 (holborn_division INTEGER, tower_division VARCHAR) |
SELECT "Days held" FROM table_15274 WHERE "Current champion(s)" = 'dean ambrose' | Name the days for current champions of dean ambrose | CREATE TABLE table_15274 (
"Championship" text,
"Current champion(s)" text,
"Reign" text,
"Date won" text,
"Days held" real,
"Location" text
) |
SELECT date FROM table_name_77 WHERE winning_driver = "pedro rodríguez" | When was pedro rodríguez the winning driver? | CREATE TABLE table_name_77 (date VARCHAR, winning_driver VARCHAR) |
SELECT MAX(stolen_ends_against) FROM table_16684420_2 WHERE country = Japan | What is the maximum number of stolen ends against for Japan? | CREATE TABLE table_16684420_2 (stolen_ends_against INTEGER, country VARCHAR, Japan VARCHAR) |
SELECT written_by FROM table_26826304_1 WHERE production_code = "5AKY04" | Who was the writer of the episode with a production code of 5aky04? | CREATE TABLE table_26826304_1 (
written_by VARCHAR,
production_code VARCHAR
) |
SELECT report FROM table_name_92 WHERE race = "mexican grand prix" | What's the report for the mexican grand prix? | CREATE TABLE table_name_92 (report VARCHAR, race VARCHAR) |
SELECT skip FROM table_16684420_2 WHERE stolen_ends_against = 13 | Who was the skip when the stolen ends against was 13? | CREATE TABLE table_16684420_2 (skip VARCHAR, stolen_ends_against VARCHAR) |
SELECT COUNT(episode) FROM table_17641206_8 WHERE original_airdate = "22January2009" | How many episodes aired on 22january2009 | CREATE TABLE table_17641206_8 (
episode VARCHAR,
original_airdate VARCHAR
) |
SELECT time_retired FROM table_name_6 WHERE driver = "nigel mansell" | What is nigel mansell's time/retired? | CREATE TABLE table_name_6 (time_retired VARCHAR, driver VARCHAR) |
SELECT batting_partners FROM table_1670921_1 WHERE season = "1997" | Who are the batting partners for the 1997 season? | CREATE TABLE table_1670921_1 (batting_partners VARCHAR, season VARCHAR) |
SELECT "Airport" FROM table_36855 WHERE "ICAO" = 'ybcg' | Which airport has an ICAO of ybcg? | CREATE TABLE table_36855 (
"City" text,
"State/Territory" text,
"IATA" text,
"ICAO" text,
"Airport" text,
"Begin" text
) |
SELECT away_team FROM table_name_20 WHERE venue = "junction oval" | What team was the away team at Junction Oval? | CREATE TABLE table_name_20 (away_team VARCHAR, venue VARCHAR) |
SELECT season FROM table_1670921_1 WHERE wicket = "7th" | Which season reported wickets of 7th? | CREATE TABLE table_1670921_1 (season VARCHAR, wicket VARCHAR) |
SELECT title FROM table_11630008_7 WHERE production_code = 514 | What is the title of production code 514? | CREATE TABLE table_11630008_7 (
title VARCHAR,
production_code VARCHAR
) |
SELECT home FROM table_name_26 WHERE visitor = "mavericks" | What is the home team when the visiting team is the Mavericks? | CREATE TABLE table_name_26 (home VARCHAR, visitor VARCHAR) |
SELECT fielding_team FROM table_1670921_1 WHERE wicket = "9th" | Which team is 9th in wickets? | CREATE TABLE table_1670921_1 (fielding_team VARCHAR, wicket VARCHAR) |
SELECT "Language" FROM table_27392 WHERE "Sopachuy Municipality" = '10' | Name the language for sopachuy 10 | CREATE TABLE table_27392 (
"Language" text,
"Padilla Municipality" real,
"Tomina Municipality" real,
"Sopachuy Municipality" real,
"Villa Alcal\u00e1 Municipality" real,
"El Villar Municipality" real
) |
SELECT AVG(year) FROM table_name_13 WHERE mintage < 10 OFFSET 000 | What was the average year for a coin that had a mintage smaller than 10,000? | CREATE TABLE table_name_13 (year INTEGER, mintage INTEGER) |
SELECT venue FROM table_1670921_1 WHERE batting_partners = "Mahela Jayawardene and Prasanna Jayawardene" | What is the venue for batting partners Mahela Jayawardene and Prasanna Jayawardene | CREATE TABLE table_1670921_1 (venue VARCHAR, batting_partners VARCHAR) |
SELECT student_id FROM student_course_registrations UNION SELECT student_id FROM student_course_attendance | What are the id of students who registered courses or attended courses? | CREATE TABLE student_course_attendance (
student_id number,
course_id number,
date_of_attendance time
)
CREATE TABLE candidate_assessments (
candidate_id number,
qualification text,
assessment_date time,
asessment_outcome_code text
)
CREATE TABLE candidates (
candidate_id number,
c... |
SELECT atsushi_aoki FROM table_name_96 WHERE black_tiger_v = "ibushi (16:35)" | What is he Atsushi Aoki when the Black Tiger V is ibushi (16:35)? | CREATE TABLE table_name_96 (atsushi_aoki VARCHAR, black_tiger_v VARCHAR) |
SELECT COUNT(batting_team) FROM table_1670921_1 WHERE wicket = "3rd" | How many teams are listed for 3rd wickets? | CREATE TABLE table_1670921_1 (batting_team VARCHAR, wicket VARCHAR) |
SELECT qual_1 FROM table_name_93 WHERE name = "alex tagliani" | What did Alex Tagliani get for Qual 1? | CREATE TABLE table_name_93 (
qual_1 VARCHAR,
name VARCHAR
) |
SELECT akira FROM table_name_94 WHERE tiger_mask_iv = "akira (10:05)" | What is the Akira when Tiger Mask IV is Akira (10:05)? | CREATE TABLE table_name_94 (akira VARCHAR, tiger_mask_iv VARCHAR) |
SELECT COUNT(batting_partners) FROM table_1670921_2 WHERE season = "2006" | How many total batting partners were most successful in the 2006 season? | CREATE TABLE table_1670921_2 (batting_partners VARCHAR, season VARCHAR) |
SELECT "Championship" FROM table_39604 WHERE "Margin" = '8 strokes' | Which championship has a margin of 8 strokes? | CREATE TABLE table_39604 (
"Year" real,
"Championship" text,
"54 Holes" text,
"Winning Score" text,
"Margin" text,
"Runner(s)-up" text
) |
SELECT akira FROM table_name_58 WHERE milano_collection_at = "milano (10:29)" | What is the corresponding Akira when Milano Collection A.T is Milano (10:29)? | CREATE TABLE table_name_58 (akira VARCHAR, milano_collection_at VARCHAR) |
SELECT batting_partners FROM table_1670921_2 WHERE batting_team = "Pakistan" | What batting partners batted for pakistan? | CREATE TABLE table_1670921_2 (batting_partners VARCHAR, batting_team VARCHAR) |
SELECT method FROM table_name_27 WHERE record = "3-0" | Which method has a record of 3-0? | CREATE TABLE table_name_27 (
method VARCHAR,
record VARCHAR
) |
SELECT block_a FROM table_name_49 WHERE prince_devitt = "devitt (9:53)" | What is Block A when Prince Devitt is Devitt (9:53)? | CREATE TABLE table_name_49 (block_a VARCHAR, prince_devitt VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.