question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
Name the total number of dar for disney channel and number is 613
|
CREATE TABLE table_15887683_9 (
dar VARCHAR,
television_service VARCHAR,
n° VARCHAR
)
|
SELECT COUNT(dar) FROM table_15887683_9 WHERE television_service LIKE "%disney channel%" AND n° = 613
|
What competition took place on 28/04/1906?
|
CREATE TABLE table_name_11 (
competition VARCHAR,
date VARCHAR
)
|
SELECT competition FROM table_name_11 WHERE date LIKE "%28/04/1906%"
|
Who was the winner when the score was 281 (-6)?
|
CREATE TABLE table_11621799_1 (
winner VARCHAR,
score VARCHAR
)
|
SELECT winner FROM table_11621799_1 WHERE score LIKE "%281 (-6)%"
|
What is the value for 2011 when `a` is the value for 2009, and 4r is the value for 2013?
|
CREATE TABLE table_14618 (
"Tournament" text,
"2006" text,
"2007" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text,
"2012" text,
"2013" text
)
|
SELECT "2011" FROM table_14618 WHERE "2009" LIKE '%a%' AND "2013" LIKE '%4r%'
|
When the poll source is research 2000/daily kos, what is the total number of dates administered?
|
CREATE TABLE table_16751596_13 (
dates_administered VARCHAR,
poll_source VARCHAR
)
|
SELECT COUNT(dates_administered) FROM table_16751596_13 WHERE poll_source LIKE "%research 2000/daily kos%"
|
Which Total Goals have an FA Cup Goals of 0, and an FA Cup Apps of 3, and a Position of fw?
|
CREATE TABLE table_name_92 (
total_goals INTEGER,
position VARCHAR,
fa_cup_goals VARCHAR,
fa_cup_apps VARCHAR
)
|
SELECT AVG(total_goals) FROM table_name_92 WHERE fa_cup_goals = '0' AND fa_cup_apps LIKE '%3%' AND position LIKE '%fw%'
|
what was the first year where tamarine tanasugarn won a silver medal in singles ?
|
CREATE TABLE table_204_765 (
id number,
"year" number,
"location" text,
"gold" text,
"silver" text,
"bronze" text
)
|
SELECT MIN("year") FROM table_204_765 WHERE "silver" LIKE '%tamarine tanasugarn%'
|
What is the most recent year founded that has a nickname of bruins?
|
CREATE TABLE table_name_7 (
founded INTEGER,
nickname VARCHAR
)
|
SELECT MAX(founded) FROM table_name_7 WHERE nickname LIKE "%bruins%"
|
Name the first elected for jacob markell
|
CREATE TABLE table_2668352_11 (
first_elected VARCHAR,
incumbent VARCHAR
)
|
SELECT first_elected FROM table_2668352_11 WHERE incumbent LIKE "%jacob markell%"
|
What is the maximum number of episodes in the series listed?
|
CREATE TABLE table_18424435_4 (
no INTEGER
)
|
SELECT MAX(no) FROM table_18424435_4
|
What is Alexander Wronski's Position?
|
CREATE TABLE table_5406 (
"Number" real,
"Name" text,
"Position" text,
"Date of birth" text,
"Height" text
)
|
SELECT "Position" FROM table_5406 WHERE "Name" LIKE '%alexander wronski%'
|
Name the record for houston
|
CREATE TABLE table_23186738_6 (
record VARCHAR,
team VARCHAR
)
|
SELECT record FROM table_23186738_6 WHERE team LIKE "%houston%"
|
What is the record of the game with a game number greater than 36 on January 20 at scotiabank place with an attendance greater than 19,029?
|
CREATE TABLE table_49198 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Location" text,
"Attendance" real,
"Record" text,
"Points" real
)
|
SELECT "Record" FROM table_49198 WHERE "Game" > 36 AND "Location" LIKE '%scotiabank place%' AND "Attendance" > 19029 AND "Date" LIKE '%january 20%'
|
What was the date of the game when the record was 46-31?
|
CREATE TABLE table_64462 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Location/Attendance" text,
"Record" text
)
|
SELECT "Date" FROM table_64462 WHERE "Record" LIKE '%46-31%'
|
What are all names for the position FS?
|
CREATE TABLE table_19449 (
"Position" text,
"Number" real,
"Name" text,
"Height" text,
"Weight" text,
"Class" text,
"Hometown" text,
"Games\u2191" real
)
|
SELECT "Name" FROM table_19449 WHERE "Position" LIKE '%fs%'
|
what's the salmonella with shigella being ipgc
|
CREATE TABLE table_10321124_1 (
salmonella VARCHAR,
shigella VARCHAR
)
|
SELECT salmonella FROM table_10321124_1 WHERE shigella LIKE "%ipgc%"
|
Who is the away side when collingwood is at home?
|
CREATE TABLE table_name_34 (
away_team VARCHAR,
home_team VARCHAR
)
|
SELECT away_team FROM table_name_34 WHERE home_team LIKE "%collingwood%"
|
what game had an attendance of 21,629
|
CREATE TABLE table_name_70 (
record VARCHAR,
attendance VARCHAR
)
|
SELECT record FROM table_name_70 WHERE attendance LIKE "%21,629%"
|
what's the highest position with artbeingt being frankie avalon
|
CREATE TABLE table_13805432_2 (
highest_position VARCHAR,
artist VARCHAR
)
|
SELECT highest_position FROM table_13805432_2 WHERE artist LIKE "%frankie avalon%"
|
Which Third has a Nation of hungary?
|
CREATE TABLE table_name_6 (
third VARCHAR,
nation VARCHAR
)
|
SELECT third FROM table_name_6 WHERE nation LIKE "%hungary%"
|
What is the Offensive Guard Player from Mississippi State College with a Pick number larter than 44?
|
CREATE TABLE table_name_68 (
player VARCHAR,
college VARCHAR,
pick VARCHAR,
position VARCHAR
)
|
SELECT player FROM table_name_68 WHERE pick > 44 AND position LIKE "%offensive guard%" AND college LIKE "%mississippi state%"
|
What is the average number of bronze medals with 1 silver, 5 gold, and over 6 total medals?
|
CREATE TABLE table_6751 (
"Rank" real,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
)
|
SELECT AVG("Bronze") FROM table_6751 WHERE "Silver" = 1 AND "Gold" = 5 AND "Total" < 6
|
Which opponent had a result of 0:1?
|
CREATE TABLE table_4996 (
"Date" text,
"City" text,
"Opponent" text,
"Results\u00b9" text,
"Type of game" text
)
|
SELECT "Opponent" FROM table_4996 WHERE "Results¹" LIKE '%0:1%'
|
Which Points for has a Losing bonus of 2, and a Club of bridgend sports rfc?
|
CREATE TABLE table_name_33 (
points_for VARCHAR,
losing_bonus VARCHAR,
club VARCHAR
)
|
SELECT points_for FROM table_name_33 WHERE losing_bonus LIKE "%2%" AND club LIKE "%bridgend sports rfc%"
|
what was the reason Richard K. Meade ( d ) became a successor?
|
CREATE TABLE table_228439_4 (
reason_for_change VARCHAR,
successor VARCHAR
)
|
SELECT reason_for_change FROM table_228439_4 WHERE successor LIKE "%richard k. meade ( d )%"
|
What is the nation when the place is 2?
|
CREATE TABLE table_26677836_1 (
nation VARCHAR,
place VARCHAR
)
|
SELECT nation FROM table_26677836_1 WHERE CAST(place AS INTEGER) = 2
|
How many ties were there for game 36 started?
|
CREATE TABLE table_1051 (
"Quarterback" text,
"Jersey No." text,
"Games Started" real,
"Wins" real,
"Losses" real,
"Ties" real,
"Winning Pct." text
)
|
SELECT COUNT("Ties") FROM table_1051 WHERE "Games Started" = 36
|
Where was the title released in 1977?
|
CREATE TABLE table_name_98 (
country_of_release VARCHAR,
year_of_release VARCHAR
)
|
SELECT country_of_release FROM table_name_98 WHERE year_of_release LIKE '%1977%'
|
How many times did jim vivona win?
|
CREATE TABLE table_54366 (
"Season" text,
"Winner" text,
"Team" text,
"Position" text,
"Win #" real
)
|
SELECT COUNT("Win #") FROM table_54366 WHERE "Winner" LIKE '%jim vivona%'
|
Which leagues is the Galena school in?
|
CREATE TABLE table_11044765_1 (
league VARCHAR,
school VARCHAR
)
|
SELECT league FROM table_11044765_1 WHERE school LIKE "%galena%"
|
Who did the high assists in the game against Portland?
|
CREATE TABLE table_23248869_6 (
high_assists VARCHAR,
team VARCHAR
)
|
SELECT high_assists FROM table_23248869_6 WHERE team LIKE '%portland%'
|
What is the traffic direction of 97th street?
|
CREATE TABLE table_56947 (
"Street" text,
"West" text,
"East" text,
"# of lanes" text,
"Traffic direction" text
)
|
SELECT "Traffic direction" FROM table_56947 WHERE "Street" LIKE '%97th street%'
|
On what date did they play in Boston Garden with a record of 22-4?
|
CREATE TABLE table_name_24 (
date VARCHAR,
location VARCHAR,
record VARCHAR
)
|
SELECT date FROM table_name_24 WHERE location LIKE "%boston garden%" AND record LIKE "%22-4%"
|
What was the score of the match on 11/2/01?
|
CREATE TABLE table_10491 (
"Date" text,
"Competition" text,
"Venue" text,
"Result" text,
"Score" text,
"Goals" text
)
|
SELECT "Score" FROM table_10491 WHERE "Date" LIKE '%11/2/01%'
|
On what date was the lead 8.6%?
|
CREATE TABLE table_name_25 (
date_s__conducted VARCHAR,
lead VARCHAR
)
|
SELECT date_s__conducted FROM table_name_25 WHERE lead LIKE "%8.6%"
|
What is the total of rebound averages with more than 98 games and a rank of 7?
|
CREATE TABLE table_name_16 (
reb_avg INTEGER,
games VARCHAR,
rank VARCHAR
)
|
SELECT SUM(reb_avg) FROM table_name_16 WHERE games > '98' AND rank LIKE '%7%'
|
What was the distance in 1997?
|
CREATE TABLE table_name_71 (
distance VARCHAR,
year VARCHAR
)
|
SELECT distance FROM table_name_71 WHERE year LIKE '%1997%'
|
What is the French translation for the English word 'orange'?
|
CREATE TABLE table_23900 (
"Central-Southern Calabrian" text,
"Phonetic Greek" text,
"Italian" text,
"French" text,
"English" text
)
|
SELECT "French" FROM table_23900 WHERE "English" LIKE '%orange%'
|
What engine did the mclaren mp4-20 use?
|
CREATE TABLE table_14476 (
"Year" real,
"Entrant" text,
"Chassis" text,
"Engine" text,
"Points" text
)
|
SELECT "Engine" FROM table_14476 WHERE "Chassis" LIKE '%mclaren mp4-20%'
|
On what date was the surface clay with Cyril Saulnier as the opponent in the final?
|
CREATE TABLE table_57812 (
"Date" text,
"Tournament" text,
"Surface" text,
"Opponent in the final" text,
"Score" text
)
|
SELECT "Date" FROM table_57812 WHERE "Surface" LIKE '%clay%' AND "Opponent in the final" LIKE '%cyril saulnier%'
|
When was the locomotive named fighter command built?
|
CREATE TABLE table_name_28 (
whenbuilt VARCHAR,
name VARCHAR
)
|
SELECT whenbuilt FROM table_name_28 WHERE name LIKE "%fighter command%"
|
When karl ridderbusch is the la roche who is the olivier?
|
CREATE TABLE table_29728787_1 (
olivier VARCHAR,
la_roche VARCHAR
)
|
SELECT olivier FROM table_29728787_1 WHERE la_roche LIKE "%karl ridderbusch%"
|
What is the hometown of Bubba Starling?
|
CREATE TABLE table_17043 (
"Player" text,
"Position" text,
"School" text,
"Hometown" text,
"MLB Draft" text
)
|
SELECT "Hometown" FROM table_17043 WHERE "Player" LIKE '%bubba starling%'
|
Which winner won by a score of 6 7(4), 7 6(3), [11 9]?
|
CREATE TABLE table_name_60 (
winner VARCHAR,
score VARCHAR
)
|
SELECT winner FROM table_name_60 WHERE score LIKE "%6–7(4), 7–6(3), [11–9]%"
|
What is the total for the team with 0 bronze and 3 silver?
|
CREATE TABLE table_50473 (
"Rank" real,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
)
|
SELECT SUM("Total") FROM table_50473 WHERE "Bronze" = 0 AND "Silver" = 3
|
Santa Clara was played how many times?
|
CREATE TABLE table_21058836_1 (
opponents VARCHAR,
opponent VARCHAR
)
|
SELECT opponents FROM table_21058836_1 WHERE opponent LIKE '%santa clara%'
|
What is the average defenses a champion with 404 days held and a reign larger than 1 has?
|
CREATE TABLE table_name_57 (
defenses INTEGER,
days_held VARCHAR,
reign VARCHAR
)
|
SELECT AVG(defenses) FROM table_name_57 WHERE days_held LIKE "%404%" AND reign > 1
|
What is the lowest week that has an attendance greater than 23,058, with october 24, 1943 as the date?
|
CREATE TABLE table_75374 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" real
)
|
SELECT MIN("Week") FROM table_75374 WHERE "Attendance" > 23058 AND "Date" LIKE '%october 24, 1943%'
|
What is the result of the game with a game number greater than 6 and an away venue?
|
CREATE TABLE table_name_7 (
result VARCHAR,
venue VARCHAR,
game VARCHAR
)
|
SELECT result FROM table_name_7 WHERE venue LIKE '%away%' AND game > 6
|
What is the result week 1?
|
CREATE TABLE table_name_2 (
result VARCHAR,
week VARCHAR
)
|
SELECT result FROM table_name_2 WHERE week LIKE '%1%'
|
Tell me the surface for 16 april 2007
|
CREATE TABLE table_32052 (
"Outcome" text,
"Date" text,
"Tournament" text,
"Surface" text,
"Partner" text,
"Opponents in the final" text,
"Score in the final" text
)
|
SELECT "Surface" FROM table_32052 WHERE "Date" LIKE '%16 april 2007%'
|
what is the date that the away team is aldershot?
|
CREATE TABLE table_8553 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
)
|
SELECT "Date" FROM table_8553 WHERE "Away team" LIKE '%aldershot%'
|
Who operates the xfm station?
|
CREATE TABLE table_1389 (
"Frequency" text,
"Station" text,
"Operator" text,
"Language" text,
"Genre" text,
"Coverage Area" text
)
|
SELECT "Operator" FROM table_1389 WHERE "Station" LIKE '%xfm%'
|
What is the average Points For when there are Points Against more than 780, and Points smaller than 0?
|
CREATE TABLE table_40768 (
"Club" text,
"Wins" real,
"Losses" real,
"Points For" real,
"Points Against" real,
"Percentage" real,
"Points" real
)
|
SELECT AVG("Points For") FROM table_40768 WHERE "Points Against" > 780 AND "Points" < 0
|
What is the Lomavren associated with a Hindi of s t?
|
CREATE TABLE table_38100 (
"Hindi" text,
"Romani" text,
"Domari" text,
"Lomavren" text,
"Persian" text
)
|
SELECT "Lomavren" FROM table_38100 WHERE "Hindi" LIKE '%sāt%'
|
What was the average pick of northwestern state college under round 3?
|
CREATE TABLE table_67012 (
"Round" real,
"Pick" real,
"Name" text,
"Position" text,
"College" text
)
|
SELECT AVG("Pick") FROM table_67012 WHERE "Round" < 3 AND "College" LIKE '%northwestern state%'
|
What is the score for the game with 213 attending?
|
CREATE TABLE table_12702 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Attendance" text
)
|
SELECT "Score" FROM table_12702 WHERE "Attendance" LIKE '%213%'
|
what's the result with district illinois 15
|
CREATE TABLE table_1341472_15 (
result VARCHAR,
district VARCHAR
)
|
SELECT result FROM table_1341472_15 WHERE district LIKE '%illinois 15%'
|
Which week's game had an attendance of 90,138?
|
CREATE TABLE table_name_37 (
week VARCHAR,
attendance VARCHAR
)
|
SELECT week FROM table_name_37 WHERE attendance LIKE "%90,138%"
|
Who was the Opponent when the Attendance was 38,150?
|
CREATE TABLE table_name_25 (
opponent VARCHAR,
attendance VARCHAR
)
|
SELECT opponent FROM table_name_25 WHERE attendance LIKE "%38,150%"
|
What is the title of Amenemhat II?
|
CREATE TABLE table_name_78 (
title VARCHAR,
name VARCHAR
)
|
SELECT title FROM table_name_78 WHERE name LIKE "%amenemhat ii%"
|
Name the part 3 for treffen
|
CREATE TABLE table_1745843_9 (
part_3 VARCHAR,
part_1 VARCHAR
)
|
SELECT part_3 FROM table_1745843_9 WHERE part_1 LIKE "%treffen%"
|
Which 2010 has a 2006 of w?
|
CREATE TABLE table_name_51 (
Id VARCHAR
)
|
SELECT 2010 FROM table_name_51 WHERE 2006 LIKE "%w%"
|
Which Country has a Label of Toshiba-emi and a Catalog of vjcp-68403?
|
CREATE TABLE table_name_95 (
country VARCHAR,
label VARCHAR,
catalog VARCHAR
)
|
SELECT country FROM table_name_95 WHERE label LIKE "%toshiba-emi%" AND catalog LIKE "%vjcp-68403%"
|
What is the Score with a Home with hornets?
|
CREATE TABLE table_57892 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Leading scorer" text,
"Record" text
)
|
SELECT "Score" FROM table_57892 WHERE "Home" LIKE '%hornets%'
|
What is the maximum fc matches?
|
CREATE TABLE table_17178 (
"Name of ground" text,
"Location" text,
"Year" text,
"FC matches" real,
"LA matches" real,
"T20 matches" real,
"Total" real
)
|
SELECT MAX("FC matches") FROM table_17178
|
Who is in November after 1988 when Prinzzess is in October?
|
CREATE TABLE table_14154 (
"Year" real,
"September" text,
"October" text,
"November" text,
"December" text
)
|
SELECT "November" FROM table_14154 WHERE "Year" > 1988 AND "October" LIKE '%prinzzess%'
|
What is listed in new points when status is second round lost to xavier malisse?
|
CREATE TABLE table_29572583_19 (
new_points INTEGER,
status VARCHAR
)
|
SELECT MIN(new_points) FROM table_29572583_19 WHERE status LIKE '%second round lost to xavier malisse%'
|
Which Nationality has a School/Club Team of louisiana state?
|
CREATE TABLE table_7449 (
"Player" text,
"Nationality" text,
"Position" text,
"Years in Orlando" text,
"School/Club Team" text
)
|
SELECT "Nationality" FROM table_7449 WHERE "School/Club Team" LIKE '%louisiana state%'
|
What is the economy of the player with BBI of 3/33?
|
CREATE TABLE table_28846752_13 (
economy VARCHAR,
bbi VARCHAR
)
|
SELECT economy FROM table_28846752_13 WHERE bbi LIKE '%3/33%'
|
I want to know the average attendance for n venue and f round
|
CREATE TABLE table_name_49 (
attendance INTEGER,
venue VARCHAR,
round VARCHAR
)
|
SELECT AVG(attendance) FROM table_name_49 WHERE venue LIKE "%n%" AND round LIKE "%f%"
|
What is the total gold from New zealand and a rank less than 14?
|
CREATE TABLE table_69668 (
"Rank" real,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
)
|
SELECT SUM("Gold") FROM table_69668 WHERE "Nation" LIKE '%new zealand%' AND "Rank" < 14
|
what is the number of area where the county is marsabit?
|
CREATE TABLE table_1404486_1 (
area__km_2__ VARCHAR,
county VARCHAR
)
|
SELECT COUNT(area__km_2__) FROM table_1404486_1 WHERE county LIKE "%marsabit%"
|
Who won gold when the world championships were held in Phoenix?
|
CREATE TABLE table_name_21 (
gold VARCHAR,
place VARCHAR
)
|
SELECT gold FROM table_name_21 WHERE place LIKE "%phoenix%"
|
What Venue has a Position of 12th (sf)?
|
CREATE TABLE table_68160 (
"Year" real,
"Competition" text,
"Venue" text,
"Position" text,
"Event" text
)
|
SELECT "Venue" FROM table_68160 WHERE "Position" LIKE '%12th (sf)%'
|
What is Run 4, when Run 2 is 1:25.84?
|
CREATE TABLE table_10020 (
"Rank" text,
"Team" text,
"Athletes" text,
"Run 1" text,
"Run 2" text,
"Run 3" text,
"Run 4" text,
"Final" text
)
|
SELECT "Run 4" FROM table_10020 WHERE "Run 2" LIKE '%1:25.84%'
|
How man cuts were there of players who had 0 wins but had 1 player in the top 25 with more than 4 events?
|
CREATE TABLE table_name_76 (
cuts_made INTEGER,
events VARCHAR,
wins VARCHAR,
top_25 VARCHAR
)
|
SELECT SUM(cuts_made) FROM table_name_76 WHERE wins LIKE '0' AND top_25 LIKE '1' AND events > 4
|
How many people attended the September 14, 1968 game?
|
CREATE TABLE table_62777 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" real
)
|
SELECT COUNT("Attendance") FROM table_62777 WHERE "Date" LIKE '%september 14, 1968%'
|
What year had 32 moves?
|
CREATE TABLE table_name_23 (
year INTEGER,
moves VARCHAR
)
|
SELECT SUM(year) FROM table_name_23 WHERE moves LIKE '%32%'
|
Which Score has a January larger than 21, and Points of 63?
|
CREATE TABLE table_name_18 (
score VARCHAR,
january VARCHAR,
points VARCHAR
)
|
SELECT score FROM table_name_18 WHERE CAST(january AS INTEGER) > 21 AND points LIKE '%63%'
|
What period(s) featured a left inside linebacker?
|
CREATE TABLE table_28606933_7 (
period VARCHAR,
position VARCHAR
)
|
SELECT period FROM table_28606933_7 WHERE position LIKE '%left inside linebacker%'
|
What Song has a Draw of less than 4 with a Percentage of 32.22%?
|
CREATE TABLE table_62955 (
"Draw" real,
"Artist" text,
"Song" text,
"Percentage" text,
"Place" real
)
|
SELECT "Song" FROM table_62955 WHERE "Draw" < 4 AND "Percentage" LIKE '%32.22%'
|
What year was the SL 350 Model?
|
CREATE TABLE table_79622 (
"Model" text,
"Years" text,
"Type/code" text,
"Power@rpm" text,
"Torque@rpm" text
)
|
SELECT "Years" FROM table_79622 WHERE "Model" LIKE '%sl 350%'
|
What is the sum of averages with a long value of 32?
|
CREATE TABLE table_name_70 (
avg INTEGER,
long VARCHAR
)
|
SELECT SUM(avg) FROM table_name_70 WHERE long LIKE '%32%'
|
What was the time when the method was TKO?
|
CREATE TABLE table_name_61 (
time VARCHAR,
method VARCHAR
)
|
SELECT time FROM table_name_61 WHERE method LIKE "%tko%"
|
Can you tell me the Out of that has the Source of united nations, and the Rank larger than 47, and the Year smaller than 2003?
|
CREATE TABLE table_40484 (
"Name" text,
"Rank" real,
"Out of" text,
"Source" text,
"Year" real
)
|
SELECT "Out of" FROM table_40484 WHERE "Source" LIKE '%united nations%' AND "Rank" > 47 AND "Year" < 2003
|
Name the No. 10 which has a No. 8 of jackson, and a No. 9 of jayden?
|
CREATE TABLE table_name_94 (
no_10 VARCHAR,
no_8 VARCHAR,
no_9 VARCHAR
)
|
SELECT no_10 FROM table_name_94 WHERE no_8 LIKE "%jackson%" AND no_9 LIKE "%jayden%"
|
Name the player with pick number of 7
|
CREATE TABLE table_36378 (
"Pick #" real,
"MLS Team" text,
"Player" text,
"Position" text,
"Affiliation" text
)
|
SELECT "Player" FROM table_36378 WHERE "Pick #" = 7
|
How many game entries are there when the points are 57?
|
CREATE TABLE table_27501030_7 (
game VARCHAR,
points VARCHAR
)
|
SELECT COUNT(game) FROM table_27501030_7 WHERE points LIKE '%57%'
|
On what date was the record 21-25?
|
CREATE TABLE table_name_79 (
date VARCHAR,
record VARCHAR
)
|
SELECT date FROM table_name_79 WHERE record LIKE "%21-25%"
|
How many Mixed Doubles won when Oliver Pongratz won the Men's Singles?
|
CREATE TABLE table_12164707_1 (
mixed_doubles VARCHAR,
mens_singles VARCHAR
)
|
SELECT COUNT(mixed_doubles) FROM table_12164707_1 WHERE mens_singles LIKE "%oliver pongratz%"
|
allergy to adhesives
|
CREATE TABLE table_train_163 (
"id" int,
"pulse_oximetry" int,
"hemoglobin_a1c_hba1c" float,
"body_weight" float,
"allergy_to_adhesive" bool,
"creatinine_clearance_cl" float,
"NOUSE" float
)
|
SELECT * FROM table_train_163 WHERE allergy_to_adhesive = 1
|
What is team 1 when the 1st leg is 92-82?
|
CREATE TABLE table_64689 (
"Team #1" text,
"Agg." text,
"Team #2" text,
"1st leg" text,
"2nd leg" text
)
|
SELECT "Team #1" FROM table_64689 WHERE "1st leg" LIKE '%92-82%'
|
What was the audience for Episode 21?
|
CREATE TABLE table_name_36 (
audience VARCHAR,
episode VARCHAR
)
|
SELECT audience FROM table_name_36 WHERE episode LIKE "%21%"
|
Which Moving from has a Nat of ned?
|
CREATE TABLE table_name_26 (
moving_from VARCHAR,
nat VARCHAR
)
|
SELECT moving_from FROM table_name_26 WHERE nat LIKE "%ned%"
|
What was the score against fabrice martin?
|
CREATE TABLE table_name_66 (
score VARCHAR,
opponent VARCHAR
)
|
SELECT score FROM table_name_66 WHERE opponent LIKE "%fabrice martin%"
|
What Artist had a Percentage of 17.14%?
|
CREATE TABLE table_63259 (
"Draw" real,
"Artist" text,
"Song" text,
"Percentage" text,
"Place" real
)
|
SELECT "Artist" FROM table_63259 WHERE "Percentage" LIKE '%17.14%'
|
What is the number of turns for the City of san antonio?
|
CREATE TABLE table_37334 (
"Track" text,
"City" text,
"State" text,
"Opened" text,
"Major Series" text,
"Turns" text
)
|
SELECT "Turns" FROM table_37334 WHERE "City" LIKE '%san antonio%'
|
What was the final score for the game on May 1?
|
CREATE TABLE table_name_72 (
score VARCHAR,
date VARCHAR
)
|
SELECT score FROM table_name_72 WHERE date LIKE "%may 1%"
|
When and where did Eddie Smith win the mixed veteran?
|
CREATE TABLE table_28211674_3 (
date_location VARCHAR,
mixed_veteran VARCHAR
)
|
SELECT COUNT(date_location) FROM table_28211674_3 WHERE mixed_veteran LIKE "%eddie smith%"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.