question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
Which Pick # has a Round larger than 5, and a Position of wide receiver, and a Name of gregory spann, and an Overall larger than 228? | CREATE TABLE table_name_67 (
pick__number INTEGER,
overall VARCHAR,
name VARCHAR,
round VARCHAR,
position VARCHAR
) | SELECT AVG(pick__number) FROM table_name_67 WHERE round > 5 AND position LIKE '%wide receiver%' AND name LIKE '%gregory spann%' AND overall > 228 |
in what date was aired the first broacast of the episode 1x02 | CREATE TABLE table_17413485_1 (
first_broadcast VARCHAR,
episode VARCHAR
) | SELECT first_broadcast FROM table_17413485_1 WHERE episode LIKE "%1x02%" |
What is the hometown for the player that is defensive back and went to alabama? | CREATE TABLE table_54596 (
"Player" text,
"Position" text,
"School" text,
"Hometown" text,
"College" text
) | SELECT "Hometown" FROM table_54596 WHERE "Position" LIKE '%defensive back%' AND "College" LIKE '%alabama%' |
What was the outcome of the match on February 17, 2003? | CREATE TABLE table_name_13 (
outcome VARCHAR,
date__final_ VARCHAR
) | SELECT outcome FROM table_name_13 WHERE date__final_ LIKE '%february 17, 2003%' |
How many races had the pole position Alain Prost and the race winner Keke Rosberg? | CREATE TABLE table_16730 (
"Rnd" real,
"Race" text,
"Date" text,
"Location" text,
"Pole Position" text,
"Fastest Lap" text,
"Race Winner" text,
"Constructor" text,
"Report" text
) | SELECT COUNT("Race") FROM table_16730 WHERE "Pole Position" LIKE '%alain prost%' AND "Race Winner" LIKE '%keke rosberg%' |
What's the Lowest Volume Number that was published November 2004? | CREATE TABLE table_name_5 (
vol__number INTEGER,
publication_date VARCHAR
) | SELECT MIN(vol__number) FROM table_name_5 WHERE publication_date LIKE "%november 2004%" |
Tell me the player from dallas burn | CREATE TABLE table_name_64 (
player VARCHAR,
mls_team VARCHAR
) | SELECT player FROM table_name_64 WHERE mls_team LIKE "%dallas burn%" |
Car number 15 earned what time? | CREATE TABLE table_17244483_1 (
time_retired VARCHAR,
car_no VARCHAR
) | SELECT time_retired FROM table_17244483_1 WHERE car_no LIKE '%15%' |
Show all locations and the number of gas stations in each location ordered by the count. | CREATE TABLE gas_station (
LOCATION VARCHAR
) | SELECT LOCATION, COUNT(*) FROM gas_station GROUP BY LOCATION ORDER BY COUNT(*) |
What game was played at Philadelphia? | CREATE TABLE table_name_36 (
game INTEGER,
team VARCHAR
) | SELECT AVG(game) FROM table_name_36 WHERE team LIKE "%philadelphia%" |
when points against is points again, which are the drawn? | CREATE TABLE table_20396710_1 (
drawn VARCHAR
) | SELECT drawn FROM table_20396710_1 WHERE "points_against" LIKE "%points_against%" |
Where was the 05/09/1973 venue? | CREATE TABLE table_name_63 (
venue VARCHAR,
date VARCHAR
) | SELECT venue FROM table_name_63 WHERE date LIKE "%05/09/1973%" |
Which home team's venue is junction oval? | CREATE TABLE table_name_71 (
home_team VARCHAR,
venue VARCHAR
) | SELECT home_team FROM table_name_71 WHERE venue LIKE "%junction oval%" |
How many terms did the governor that left office on August 4, 1825 serve? | CREATE TABLE table_name_46 (
terms VARCHAR,
left_office VARCHAR
) | SELECT terms FROM table_name_46 WHERE lower(left_office) LIKE '%august 4, 1825%' |
What is the mark for Grenada in group A? | CREATE TABLE table_64536 (
"Rank" text,
"Group" text,
"Name" text,
"Nationality" text,
"Mark" text
) | SELECT "Mark" FROM table_64536 WHERE "Group" LIKE '%a%' AND "Nationality" LIKE '%grenada%' |
as of october 25 , 2005 , how many voters are either democratic or republican ? | CREATE TABLE table_200_35 (
id number,
"party" text,
"active voters" number,
"inactive voters" number,
"total voters" number,
"percentage" text
) | SELECT SUM("total voters") FROM table_200_35 WHERE "party" LIKE '%democratic%' OR "party" LIKE '%republican%' |
What is the lowest silver that has 2 as the bronze, with a total greater than 4? | CREATE TABLE table_name_33 (
silver INTEGER,
bronze VARCHAR,
total VARCHAR
) | SELECT MIN(silver) FROM table_name_33 WHERE bronze LIKE '%2%' AND total > '4' |
Name the driver passenger for 394 points | CREATE TABLE table_16941304_4 (
driver___passenger VARCHAR,
points VARCHAR
) | SELECT driver___passenger FROM table_16941304_4 WHERE points = '394' |
How many marriages between women have % same-sex marriages of 1.06? | CREATE TABLE table_23098 (
"Year" text,
"Marriages between men" real,
"Marriages between women" real,
"Same-sex marriages" real,
"Total marriages" real,
"% same-sex marriages" text
) | SELECT "Marriages between women" FROM table_23098 WHERE "% same-sex marriages" LIKE '%1.06%' |
was there a result of 1st place after the year 2006 ? | CREATE TABLE table_203_300 (
id number,
"year" number,
"tournament" text,
"venue" text,
"result" text,
"extra" text
) | SELECT (SELECT COUNT(*) FROM table_203_300 WHERE "result" LIKE '%1%' AND "year" > 2006) > 0 |
Which Date has a Record of 29 47? | CREATE TABLE table_name_4 (
date VARCHAR,
record VARCHAR
) | SELECT date FROM table_name_4 WHERE record LIKE "%29–47%" |
Find the name of the department which has the highest average salary of professors. | CREATE TABLE instructor (
dept_name VARCHAR,
salary INTEGER
) | SELECT dept_name FROM instructor GROUP BY dept_name ORDER BY AVG(salary) DESC LIMIT 1 |
What is the area (km 2) where the population density (/mk2) is 84.3? | CREATE TABLE table_1480455_1 (
area__km_2__ VARCHAR,
population_density___km_2__ VARCHAR
) | SELECT area__km_2__ FROM table_1480455_1 WHERE population_density___km_2__ LIKE "%84.3%" |
How many members of the military died in the conflict that had a total of 531 casualties? | CREATE TABLE table_name_38 (
military_deaths VARCHAR,
total_casualties VARCHAR
) | SELECT military_deaths FROM table_name_38 WHERE total_casualties LIKE "%531%" |
What was the Date of Death of the person whose Date of Birth was 28 May 1371? | CREATE TABLE table_55800 (
"Name" text,
"Date of birth" text,
"Date of death" text,
"Reign" text,
"Relationship with predecessor" text
) | SELECT "Date of death" FROM table_55800 WHERE "Date of birth" LIKE '%28 may 1371%' |
What is the original air date for episode 4? | CREATE TABLE table_23399481_3 (
original_air_date VARCHAR,
season__number VARCHAR
) | SELECT original_air_date FROM table_23399481_3 WHERE season__number LIKE '%4%' |
Which Game has a Score of 122 125? | CREATE TABLE table_name_74 (
game VARCHAR,
score VARCHAR
) | SELECT game FROM table_name_74 WHERE score LIKE "%122–125%" |
Who was the Opponent on a Hard (i) Surface? | CREATE TABLE table_35324 (
"Date" text,
"Tournament" text,
"Surface" text,
"Opponent" text,
"Score" text
) | SELECT "Opponent" FROM table_35324 WHERE "Surface" LIKE '%hard (i)%' |
What is the total number of medals when there are 18 gold medals? | CREATE TABLE table_75870 (
"Rank" text,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
) | SELECT SUM("Total") FROM table_75870 WHERE "Gold" = 18 |
What position does Cody Ceci play? | CREATE TABLE table_11803648_21 (
position VARCHAR,
player VARCHAR
) | SELECT position FROM table_11803648_21 WHERE player LIKE "%cody ceci%" |
Name the average number of seasons for Prva HNL of 17 | CREATE TABLE table_5658 (
"Club" text,
"Position in 2012\u201313" text,
"First season in top division" text,
"Number of seasons in top division" real,
"Number of seasons in Prva HNL" real,
"First season of current spell in top division" text,
"Top division titles" text,
"Last top division title" text
) | SELECT AVG("Number of seasons in top division") FROM table_5658 WHERE "Number of seasons in Prva HNL" = 17 |
What's Trina Gulliver's high checkout? | CREATE TABLE table_20351295_2 (
high_checkout VARCHAR,
player VARCHAR
) | SELECT high_checkout FROM table_20351295_2 WHERE player LIKE "%trina gulliver%" |
What is the infinitive stem that has a subjunctive present of ou? | CREATE TABLE table_name_10 (
inf_stem VARCHAR,
subj_pres VARCHAR
) | SELECT inf_stem FROM table_name_10 WHERE subj_pres LIKE '%ou%' |
Which High rebounds has a Score of w 81-69? | CREATE TABLE table_name_62 (
high_rebounds VARCHAR,
score VARCHAR
) | SELECT high_rebounds FROM table_name_62 WHERE score LIKE "%w 81-69%" |
Where does Geelong play their home game? | CREATE TABLE table_name_7 (
venue VARCHAR,
home_team VARCHAR
) | SELECT venue FROM table_name_7 WHERE home_team LIKE "%geelong%" |
What was the result of the game played at Jeppesen Stadium? | CREATE TABLE table_name_95 (
result VARCHAR,
game_site VARCHAR
) | SELECT result FROM table_name_95 WHERE game_site LIKE "%jeppesen stadium%" |
What's the number of the game played on June 22? | CREATE TABLE table_19778010_5 (
game INTEGER,
date VARCHAR
) | SELECT MAX(game) FROM table_19778010_5 WHERE date LIKE "%june 22%" |
What is Tries Against, when Tries For is 20? | CREATE TABLE table_name_22 (
tries_against VARCHAR,
tries_for VARCHAR
) | SELECT tries_against FROM table_name_22 WHERE tries_for LIKE "%20%" |
When the clippers are the team how many games are there? | CREATE TABLE table_23285849_10 (
game VARCHAR,
team VARCHAR
) | SELECT COUNT(game) FROM table_23285849_10 WHERE team LIKE "%clippers%" |
When Grand Rapids's fare was $377.29, what is the fare to Detroit? | CREATE TABLE table_1637981_7 (
detroit__dtw_ VARCHAR,
grand_rapids__grr_ VARCHAR
) | SELECT detroit__dtw_ FROM table_1637981_7 WHERE grand_rapids__grr_ LIKE '%$377.29%' |
What is the bleeding time for glanzmann's thrombasthenia? | CREATE TABLE table_238124_1 (
bleeding_time VARCHAR,
condition VARCHAR
) | SELECT bleeding_time FROM table_238124_1 WHERE condition LIKE '%glanzmann''s thrombasthenia%' |
What is the week 8 Oct 26 standing with georgia tech (8-2) on week 12 Nov 23? | CREATE TABLE table_name_1 (
week_8_oct_26 VARCHAR,
week_12_nov_23 VARCHAR
) | SELECT week_8_oct_26 FROM table_name_1 WHERE week_12_nov_23 LIKE "%georgia tech (8-2)%" |
What Player is from Iowa State? | CREATE TABLE table_name_6 (
player VARCHAR,
college VARCHAR
) | SELECT player FROM table_name_6 WHERE college LIKE "%iowa state%" |
What are the candidates in the district whose incumbent is Gus Yatron? | CREATE TABLE table_1341604_39 (
candidates VARCHAR,
incumbent VARCHAR
) | SELECT candidates FROM table_1341604_39 WHERE incumbent LIKE "%gus yatron%" |
What was the game site week 15? | CREATE TABLE table_name_79 (
game_site VARCHAR,
week VARCHAR
) | SELECT game_site FROM table_name_79 WHERE week LIKE '%15%' |
List all institutions with a team name of the Cardinals. | CREATE TABLE table_18483171_1 (
institution VARCHAR,
team_nickname VARCHAR
) | SELECT institution FROM table_18483171_1 WHERE team_nickname LIKE '%cardinals%' |
What is the gross capacity of the unit that started commercial operation on August 28, 1987? | CREATE TABLE table_53324 (
"Unit" text,
"Reactor Type" text,
"Net Capacity" text,
"Gross Capacity" text,
"Construction Start" text,
"Grid Connection" text,
"Commercial Operation" text,
"Status" text
) | SELECT "Gross Capacity" FROM table_53324 WHERE "Commercial Operation" LIKE '%august 28, 1987%' |
What is the variant when Alexander was the bodybuilder? | CREATE TABLE table_28035004_1 (
variant VARCHAR,
bodybuilder VARCHAR
) | SELECT variant FROM table_28035004_1 WHERE bodybuilder LIKE "%alexander%" |
What was the attendance for the game on August 16? | CREATE TABLE table_name_74 (
attendance INTEGER,
date VARCHAR
) | SELECT SUM(attendance) FROM table_name_74 WHERE date LIKE '%august 16%' |
Which entrant scored less than 8 points and used a Maserati chassis? | CREATE TABLE table_70593 (
"Year" real,
"Entrant" text,
"Chassis" text,
"Engine" text,
"Points" real
) | SELECT "Entrant" FROM table_70593 WHERE "Points" < 8 AND "Chassis" LIKE '%maserati%' |
What locomotive built after 1895 has the highest SLM number? | CREATE TABLE table_name_26 (
SLM INTEGER,
built INTEGER
) | SELECT MAX(SLM) AS number FROM table_name_26 WHERE built > 1895 |
What is the total number of against when they had 14 losses and more than 0 byes? | CREATE TABLE table_name_34 (
against INTEGER,
losses VARCHAR,
byes VARCHAR
) | SELECT SUM(against) FROM table_name_34 WHERE losses LIKE '%14%' AND byes > 0 |
Which Score has a To Par of 1? | CREATE TABLE table_59052 (
"Place" text,
"Player" text,
"Country" text,
"Score" real,
"To Par" text
) | SELECT MIN("Score") FROM table_59052 WHERE "To Par" LIKE '%–1%' |
Tell me the goals for score of 38-28 | CREATE TABLE table_name_54 (
goals VARCHAR,
score VARCHAR
) | SELECT goals FROM table_name_54 WHERE score LIKE "%38-28%" |
What is the rank where the gold is 0? | CREATE TABLE table_name_70 (
rank INTEGER,
gold INTEGER
) | SELECT AVG(rank) FROM table_name_70 WHERE gold < 0 |
What tournament had Greg Rusedski as a finalist? | CREATE TABLE table_name_68 (
tournament VARCHAR,
finalist VARCHAR
) | SELECT tournament FROM table_name_68 WHERE finalist LIKE "%greg rusedski%" |
What place has a To par of +4 and a score of 74-70-74-74=292? | CREATE TABLE table_name_77 (
place VARCHAR,
to_par VARCHAR,
score VARCHAR
) | SELECT place FROM table_name_77 WHERE to_par LIKE '%+4%' AND score = '292' |
Name the date which has type of plain stage | CREATE TABLE table_68334 (
"Date" text,
"Course" text,
"Distance" text,
"Type" text,
"Winner" text
) | SELECT "Date" FROM table_68334 WHERE "Type" LIKE '%plain stage%' |
What player was drafted in Round 5? | CREATE TABLE table_name_30 (
player VARCHAR,
round VARCHAR
) | SELECT player FROM table_name_30 WHERE round LIKE '%5%' |
What is the amount of viewers if the series number is 14? | CREATE TABLE table_24639086_3 (
viewers__in_millions_ VARCHAR,
series__number VARCHAR
) | SELECT viewers__in_millions_ FROM table_24639086_3 WHERE series__number LIKE '%14%' |
What is the against when the opposing team is Italy? | CREATE TABLE table_name_54 (
against VARCHAR,
opposing_teams VARCHAR
) | SELECT COUNT(against) FROM table_name_54 WHERE opposing_teams LIKE "%italy%" |
Who has the high assists when the team is Oklahoma City? | CREATE TABLE table_23285805_8 (
high_assists VARCHAR,
team VARCHAR
) | SELECT high_assists FROM table_23285805_8 WHERE team LIKE "%oklahoma city%" |
What 2006 has 0-0 as the 2011? | CREATE TABLE table_name_29 (
Id VARCHAR
) | SELECT 2006 FROM table_name_29 WHERE 2011 LIKE '%0-0%' |
Name the Tag Team with a Time of 03:34? | CREATE TABLE table_name_10 (
tag_team VARCHAR,
time VARCHAR
) | SELECT tag_team FROM table_name_10 WHERE time LIKE "%03:34%" |
Which romaji title, has Japanese title of 3? | CREATE TABLE table_name_94 (
romaji_title VARCHAR,
japanese_title VARCHAR
) | SELECT romaji_title FROM table_name_94 WHERE japanese_title LIKE "%菊次郎とさき 3%" |
What number has 2002-2003 as the season? | CREATE TABLE table_name_32 (
number VARCHAR,
season VARCHAR
) | SELECT number FROM table_name_32 WHERE season LIKE "%2002-2003%" |
what team played against zimbabwe in 1999? | CREATE TABLE table_name_11 (
team VARCHAR,
year VARCHAR,
versus VARCHAR
) | SELECT team FROM table_name_11 WHERE year LIKE '%1999%' AND versus LIKE '%zimbabwe%' |
What is the percentage of others when the number of others is 2286? | CREATE TABLE table_21582 (
"County" text,
"Kerry%" text,
"Kerry#" real,
"Bush%" text,
"Bush#" real,
"Others%" text,
"Others#" real
) | SELECT "Others%" FROM table_21582 WHERE "Others#" = 2286 |
What fleet numbers have a diagram less than 99 and built in 1960? | CREATE TABLE table_name_68 (
fleet_numbers VARCHAR,
diagram VARCHAR,
built VARCHAR
) | SELECT fleet_numbers FROM table_name_68 WHERE CAST(diagram AS INTEGER) < 99 AND built LIKE '%1960%' |
How many tries against got the club with 62 tries for? | CREATE TABLE table_13564702_4 (
tries_against VARCHAR,
tries_for VARCHAR
) | SELECT tries_against FROM table_13564702_4 WHERE tries_for LIKE "%62%" |
How many players only played for the Jazz in only 2010? | CREATE TABLE table_11545282_7 (
no VARCHAR,
years_for_jazz VARCHAR
) | SELECT COUNT(no) FROM table_11545282_7 WHERE years_for_jazz LIKE "%2010%" |
Name the number of species with sepal width of 3.4 and sepal length of 5.4 | CREATE TABLE table_16136 (
"Sepal length" text,
"Sepal width" text,
"Petal length" text,
"Petal width" text,
"Species" text
) | SELECT COUNT("Species") FROM table_16136 WHERE "Sepal width" LIKE '%3.4%' AND "Sepal length" LIKE '%5.4%' |
What is the code for rank 10? | CREATE TABLE table_name_18 (
code__iata_icao_ VARCHAR,
rank VARCHAR
) | SELECT code__iata_icao_ FROM table_name_18 WHERE rank LIKE '%10%' |
What is the Title of the Film with a Rank greater than 11 and Worldwide Gross of $131,002,597? | CREATE TABLE table_76239 (
"Rank" real,
"Title" text,
"Studio" text,
"Director" text,
"Worldwide Gross" text
) | SELECT "Title" FROM table_76239 WHERE "Rank" > 11 AND "Worldwide Gross" LIKE '%$131,002,597%' |
What Playoffs were held during the years of 2007-08? | CREATE TABLE table_name_70 (
playoffs VARCHAR,
year VARCHAR
) | SELECT playoffs FROM table_name_70 WHERE year LIKE "%2007-08%" |
The successor for the Massachusetts 20th district was seated on what date? | CREATE TABLE table_25068 (
"District" text,
"Vacator" text,
"Reason for change" text,
"Successor" text,
"Date successor seated" text
) | SELECT "Date successor seated" FROM table_25068 WHERE "District" LIKE '%massachusetts 20th%' |
Which Team has Podiums of 0, and a Position of nc ? | CREATE TABLE table_name_94 (
team VARCHAR,
podiums VARCHAR,
position VARCHAR
) | SELECT team FROM table_name_94 WHERE podiums LIKE "%0%" AND position LIKE "%nc†%" |
What province has a v valpara so region and an area of 927.2? | CREATE TABLE table_name_31 (
province VARCHAR,
region VARCHAR,
area VARCHAR
) | SELECT province FROM table_name_31 WHERE region LIKE "%v valparaíso%" AND area = 927.2 |
How many wins did they have at Richmond Cricket Ground Stadium? | CREATE TABLE table_name_20 (
wins VARCHAR,
stadium VARCHAR
) | SELECT wins FROM table_name_20 WHERE stadium LIKE "%richmond cricket ground%" |
What was the date of the game at Lake Oval? | CREATE TABLE table_10611 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | SELECT "Date" FROM table_10611 WHERE "Venue" LIKE '%lake oval%' |
in what sport did india win the most silver medals ? | CREATE TABLE table_204_103 (
id number,
"medal" text,
"name" text,
"sport" text,
"event" text
) | SELECT "sport" FROM table_204_103 GROUP BY "sport" ORDER BY COUNT("medal") DESC LIMIT 1 |
What college did Calvin McCarty play at? | CREATE TABLE table_100 (
"Pick #" real,
"CFL Team" text,
"Player" text,
"Position" text,
"College" text
) | SELECT "College" FROM table_100 WHERE "Player" LIKE '%calvin mccarty%' |
What was the attendance for the game held on September 18, 1994, with a week less than 5? | CREATE TABLE table_name_25 (
attendance VARCHAR,
week VARCHAR,
date VARCHAR
) | SELECT attendance FROM table_name_25 WHERE CAST(week AS INTEGER) < 5 AND date LIKE '%september 18, 1994%' |
Name the least season | CREATE TABLE table_2223177_3 (
season INTEGER
) | SELECT MIN(season) FROM table_2223177_3 |
What is the date for Hydra Head Records with a CD format? | CREATE TABLE table_name_21 (
date VARCHAR,
label VARCHAR,
format VARCHAR
) | SELECT date FROM table_name_21 WHERE label LIKE "%hydra head records%" AND format LIKE "%cd%" |
What are the stations in Tarzana? | CREATE TABLE table_2093995_1 (
stations VARCHAR,
city__neighborhood VARCHAR
) | SELECT stations FROM table_2093995_1 WHERE city__neighborhood LIKE "%tarzana%" |
What is other when registered voters is 50.7%? | CREATE TABLE table_27003186_3 (
other VARCHAR,
registered_voters VARCHAR
) | SELECT other FROM table_27003186_3 WHERE registered_voters LIKE "%50.7%" |
Who directed the movie The Star Packer? | CREATE TABLE table_67265 (
"Title" text,
"Studio" text,
"Role" text,
"Leading lady" text,
"Director" text
) | SELECT "Director" FROM table_67265 WHERE "Title" LIKE '%the star packer%' |
WHAT PLAYER HAS A PICK SMALLER THAN 110, AND DUKE AS COLLEGE? | CREATE TABLE table_48553 (
"Round" real,
"Pick" real,
"Player" text,
"Nationality" text,
"College" text
) | SELECT "Player" FROM table_48553 WHERE "Pick" < 110 AND "College" LIKE '%duke%' |
What team was ranked in 7th? | CREATE TABLE table_24765815_1 (
team VARCHAR,
rank VARCHAR
) | SELECT team FROM table_24765815_1 WHERE rank LIKE "%7th%" |
Name the least bronze for silver being less than 0 | CREATE TABLE table_name_45 (
bronze INTEGER,
silver INTEGER
) | SELECT MIN(bronze) FROM table_name_45 WHERE silver < 0 |
When was the game played in Zagreb? | CREATE TABLE table_4997 (
"Date" text,
"City" text,
"Opponent" text,
"Results\u00b9" text,
"Type of game" text
) | SELECT "Date" FROM table_4997 WHERE "City" LIKE '%zagreb%' |
Which date has a Surface of carpet (i)? | CREATE TABLE table_name_44 (
date VARCHAR,
surface VARCHAR
) | SELECT date FROM table_name_44 WHERE surface LIKE "%carpet (i)%" |
What is the weight of the player from the vk primorac kotor club? | CREATE TABLE table_name_42 (
weight VARCHAR,
club VARCHAR
) | SELECT weight FROM table_name_42 WHERE club LIKE "%vk primorac kotor%" |
What airport has an ICAO of Birk? | CREATE TABLE table_name_16 (
airport VARCHAR,
icao VARCHAR
) | SELECT airport FROM table_name_16 WHERE icao LIKE "%birk%" |
what's the winner with purse( $ ) value of bigger than 964017.2297960471 and date value of may 28 | CREATE TABLE table_11621915_1 (
winner VARCHAR,
purse__$__ VARCHAR,
date VARCHAR
) | SELECT winner FROM table_11621915_1 WHERE CAST(purse__$__ AS FLOAT) > 964017.2297960471 AND date LIKE '%may 28%' |
Where was the tournament where the match was on a hard surface and jan-michael gambill (19) was the finalist? | CREATE TABLE table_name_75 (
tournament VARCHAR,
surface VARCHAR,
finalist VARCHAR
) | SELECT tournament FROM table_name_75 WHERE surface LIKE "%hard%" AND finalist LIKE "%jan-michael gambill (19)%" |
What is the second leg that Valencia was on? | CREATE TABLE table_68891 (
"Team 1" text,
"Agg." text,
"Team 2" text,
"1st leg" text,
"2nd leg" text
) | SELECT "2nd leg" FROM table_68891 WHERE "Team 2" LIKE '%valencia%' |
When tim bridgman gregor fisken is the pole position who is the gt3 winner? | CREATE TABLE table_30062172_3 (
gt3_winner VARCHAR,
pole_position VARCHAR
) | SELECT gt3_winner FROM table_30062172_3 WHERE pole_position LIKE "%tim bridgman gregor fisken%" |
March 0.41 in July? | CREATE TABLE table_15945862_1 (
july VARCHAR,
march VARCHAR
) | SELECT july FROM table_15945862_1 WHERE march LIKE "%0.41%" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.