question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
What was the date of the game that had a loss of Burns (0-1)? | CREATE TABLE table_name_85 (
date VARCHAR,
loss VARCHAR
) | SELECT date FROM table_name_85 WHERE loss LIKE "%burns (0-1)%" |
What is the 2012 Employees (Total) when the rank (2012) is 7? | CREATE TABLE table_name_63 (
rank__2012_ VARCHAR
) | SELECT 2012 AS _employees__total_ FROM table_name_63 WHERE rank__2012_ LIKE '%7%' |
What is the PEPE Michinoku value for a Ryuji Hijikata value of sabin (12:33)? | CREATE TABLE table_55063 (
"Block A" text,
"Ryuji Hijikata" text,
"Shuji Kondo" text,
"El NOSAWA Mendoza" text,
"PEPE Michinoku" text,
"Katsuhiko Nakajima" text
) | SELECT "PEPE Michinoku" FROM table_55063 WHERE "Ryuji Hijikata" LIKE '%sabin (12:33)%' |
What is the call sign when the frequency is less than 95.5 MHz, and a ERP W is higher than 10? | CREATE TABLE table_name_16 (
call_sign VARCHAR,
frequency_mhz VARCHAR,
erp_w VARCHAR
) | SELECT call_sign FROM table_name_16 WHERE frequency_mhz < '95.5' AND erp_w > '10' |
What is the total number of Matches, when Clubs is 588 406? | CREATE TABLE table_40198 (
"Round" text,
"Date" text,
"Matches" real,
"Clubs" text,
"Prize money" text
) | SELECT COUNT("Matches") FROM table_40198 WHERE "Clubs" LIKE '%588 → 406%' |
What was the record on January 4? | CREATE TABLE table_45764 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"Record" text,
"Streak" text
) | SELECT "Record" FROM table_45764 WHERE "Date" LIKE '%january 4%' |
Who was the opponent at the game with a result of w 14 6? | CREATE TABLE table_name_60 (
opponent VARCHAR,
result VARCHAR
) | SELECT opponent FROM table_name_60 WHERE result LIKE "%w 14–6%" |
Which Draw has a Performer of jenny newman, and Points smaller than 77? | CREATE TABLE table_43725 (
"Draw" real,
"Song" text,
"Performer" text,
"Points" real,
"Rank" text
) | SELECT AVG("Draw") FROM table_43725 WHERE "Performer" LIKE '%jenny newman%' AND "Points" < 77 |
What is the regular season info that had a record of 20-10? | CREATE TABLE table_56560 (
"Year" text,
"League" text,
"Record" text,
"Reg. Season" text,
"Playoffs" text
) | SELECT "Reg. Season" FROM table_56560 WHERE "Record" LIKE '%20-10%' |
COunt the sum of Diameter (km) which has a Latitude of 62.7n? | CREATE TABLE table_name_25 (
diameter__km_ INTEGER,
latitude VARCHAR
) | SELECT SUM(diameter__km_) FROM table_name_25 WHERE latitude LIKE "%62.7n%" |
What is the height m/ft where 207 w. hastings st. is the address? | CREATE TABLE table_name_64 (
height_m___ft VARCHAR,
street_address VARCHAR
) | SELECT height_m___ft FROM table_name_64 WHERE lower(street_address) LIKE '%207 w. hastings st.%' |
What were the least Wins in 1988? | CREATE TABLE table_5724 (
"Year" real,
"Class" text,
"Team" text,
"Machine" text,
"Points" real,
"Wins" real
) | SELECT MIN("Wins") FROM table_5724 WHERE "Year" = 1988 |
What is the name of race that has a winning driver of Stirling moss and a Circuit of oulton park? | CREATE TABLE table_name_23 (
race_name VARCHAR,
winning_driver VARCHAR,
circuit VARCHAR
) | SELECT race_name FROM table_name_23 WHERE winning_driver LIKE "%stirling moss%" AND circuit LIKE "%oulton park%" |
Who was the opponent with the time 3:59? | CREATE TABLE table_name_52 (
opponent VARCHAR,
time VARCHAR
) | SELECT opponent FROM table_name_52 WHERE time LIKE "%3:59%" |
Who had the highest assists on November 4 | CREATE TABLE table_11959669_3 (
high_assists VARCHAR,
date VARCHAR
) | SELECT high_assists FROM table_11959669_3 WHERE date LIKE '%november 4%' |
what is the time/retired when the grid is 9? | CREATE TABLE table_name_77 (
time_retired VARCHAR,
grid VARCHAR
) | SELECT time_retired FROM table_name_77 WHERE grid LIKE '%9%' |
Among deaths 106 000 how many is crude rate. | CREATE TABLE table_21258_1 (
crude_death_rate VARCHAR,
deaths VARCHAR
) | SELECT crude_death_rate FROM table_21258_1 WHERE deaths LIKE "%106 000%" |
Name the 2012 for 2009 of a and 2010 of a and 2011 of a | CREATE TABLE table_6660 (
"Tournament" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text,
"2012" text
) | SELECT "2012" FROM table_6660 WHERE "2009" LIKE '%a%' AND "2010" LIKE '%a%' AND "2011" LIKE '%a%' |
Where is the Stadium of Gortakeegan located? | CREATE TABLE table_name_91 (
location VARCHAR,
stadium VARCHAR
) | SELECT location FROM table_name_91 WHERE stadium LIKE "%gortakeegan%" |
What party represents the district with john g. jackson? | CREATE TABLE table_2668378_18 (
party VARCHAR,
incumbent VARCHAR
) | SELECT party FROM table_2668378_18 WHERE incumbent LIKE "%john g. jackson%" |
What is the average no opinion score during 1954 November that is more favorable than 35? | CREATE TABLE table_9922 (
"Date" text,
"Favorable" real,
"No Opinion" real,
"Unfavorable" real,
"Net Favorable" text
) | SELECT AVG("No Opinion") FROM table_9922 WHERE "Date" LIKE '%1954 november%' AND "Favorable" > 35 |
What was the score of the game when Maurice Williams (7) had the high assists? | CREATE TABLE table_name_8 (
score VARCHAR,
high_assists VARCHAR
) | SELECT score FROM table_name_8 WHERE high_assists LIKE '%maurice williams (7)%' |
Which team had a manager replaced by Ebrahim Talebi? | CREATE TABLE table_22297140_3 (
team VARCHAR,
replaced_by VARCHAR
) | SELECT team FROM table_22297140_3 WHERE replaced_by LIKE "%ebrahim talebi%" |
Name the opponent for 10-04-2007 | CREATE TABLE table_name_46 (
opponent VARCHAR,
date VARCHAR
) | SELECT opponent FROM table_name_46 WHERE date LIKE "%10-04-2007%" |
What was the away team that played at Corio Oval? | CREATE TABLE table_name_9 (
away_team VARCHAR,
venue VARCHAR
) | SELECT away_team FROM table_name_9 WHERE venue LIKE "%corio oval%" |
What is the date when the opponent is the New England Patriots? | CREATE TABLE table_18847736_2 (
date VARCHAR,
opponent VARCHAR
) | SELECT date FROM table_18847736_2 WHERE opponent LIKE "%new england patriots%" |
Name the most year when population of woocoo is 2700 | CREATE TABLE table_12576536_1 (
year INTEGER,
population__woocoo_ VARCHAR
) | SELECT MAX(year) FROM table_12576536_1 WHERE population__woocoo_ LIKE '%2700%' |
What is the average gold of the winter athlete with 1 bronze, less than 3 silver, and less than 4 total medals? | CREATE TABLE table_75365 (
"Athlete" text,
"Sport" text,
"Type" text,
"Olympics" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
) | SELECT AVG("Gold") FROM table_75365 WHERE "Bronze" = 1 AND "Type" LIKE '%winter%' AND "Silver" < 3 AND "Total" < 4 |
What is the lowest Laps that has a Year after 2002 with Alexander Frei Bruno Besson? | CREATE TABLE table_name_4 (
laps INTEGER,
year VARCHAR,
co_drivers VARCHAR
) | SELECT MIN(laps) FROM table_name_4 WHERE year > '2002' AND co_drivers LIKE '%alexander frei bruno besson%' |
What team did the Wizards play against when their record was 2-5? | CREATE TABLE table_23274514_4 (
team VARCHAR,
record VARCHAR
) | SELECT team FROM table_23274514_4 WHERE record LIKE "%2-5%" |
What is Site, when Opponent is 'All times are in eastern.'? | CREATE TABLE table_9383 (
"Date" text,
"Opponent" text,
"Site" text,
"Result" text,
"Attendance" text
) | SELECT "Site" FROM table_9383 WHERE "Opponent" LIKE '%all times are in eastern.%' |
How many values for points have Sophia Witherspoon as the player? | CREATE TABLE table_27578 (
"Player" text,
"Games Played" real,
"Rebounds" real,
"Assists" real,
"Steals" real,
"Blocks" real,
"Points" real
) | SELECT COUNT("Points") FROM table_27578 WHERE "Player" LIKE '%sophia witherspoon%' |
Find the name of players whose card is yes in the descending order of training hours. | CREATE TABLE Player (
pName VARCHAR,
yCard VARCHAR,
HS VARCHAR
) | SELECT pName FROM Player WHERE yCard LIKE '%yes%' ORDER BY HS DESC |
How many people watched season 1? | CREATE TABLE table_name_69 (
viewers__in_millions_ VARCHAR,
season VARCHAR
) | SELECT viewers__in_millions_ FROM table_name_69 WHERE season LIKE "%1%" |
What type of school has the nickname the Oilers? | CREATE TABLE table_262560_2 (
type VARCHAR,
nickname VARCHAR
) | SELECT type FROM table_262560_2 WHERE nickname LIKE "%oilers%" |
What is the sum of matches played for teams with more than 10 losses and under 5 points? | CREATE TABLE table_64391 (
"Position" real,
"Name" text,
"Played" real,
"Drawn" real,
"Lost" real,
"Points" real
) | SELECT SUM("Played") FROM table_64391 WHERE "Lost" > 10 AND "Points" < 5 |
Name the total number of stage for lloyd mondory | CREATE TABLE table_22713796_14 (
stage VARCHAR,
mountains_classification VARCHAR
) | SELECT COUNT(stage) FROM table_22713796_14 WHERE mountains_classification LIKE "%lloyd mondory%" |
Which 2008 had a 1998 and 2006 that were a when 2009 was sf? | CREATE TABLE table_37949 (
"Tournament" text,
"1998" text,
"1999" text,
"2000" text,
"2001" text,
"2002" text,
"2003" text,
"2004" text,
"2005" text,
"2006" text,
"2007" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text
) | SELECT "2008" FROM table_37949 WHERE "1998" LIKE '%a%' AND "2009" LIKE '%sf%' AND "2006" LIKE '%a%' |
Who is the opponent the Seattle Seahawks played when their record was 1-3? | CREATE TABLE table_name_57 (
opponent VARCHAR,
record VARCHAR
) | SELECT opponent FROM table_name_57 WHERE record LIKE "%1-3%" |
what was the total attendance at the august 30 game against alabama ? | CREATE TABLE table_204_858 (
id number,
"date" text,
"time" text,
"opponent#" text,
"rank#" text,
"site" text,
"tv" text,
"result" text,
"attendance" number
) | SELECT "attendance" FROM table_204_858 WHERE "date" LIKE '%august 30%' AND "opponent#" LIKE '%alabama%' |
Which team was in the 2012 clausura tournament? | CREATE TABLE table_74453 (
"Tournament" text,
"Player" text,
"Nationality" text,
"Team" text,
"Games played" real,
"Goals conceded" real,
"Coefficient" text
) | SELECT "Team" FROM table_74453 WHERE "Tournament" LIKE '%2012 clausura%' |
Which Total is the highest one that has a Gold of 1, and a Nation of czechoslovakia? | CREATE TABLE table_name_29 (
total INTEGER,
gold VARCHAR,
nation VARCHAR
) | SELECT MAX(total) FROM table_name_29 WHERE gold LIKE '%1%' AND nation LIKE '%czechoslovakia%' |
What was the 2nd leg score for Chemie Halle? | CREATE TABLE table_name_73 (
team__number1 VARCHAR
) | SELECT 2 AS nd_leg FROM table_name_73 WHERE team__number1 LIKE "%chemie halle%" |
What is the English word that is abbreviated . .? | CREATE TABLE table_name_23 (
english_name VARCHAR,
abbr VARCHAR
) | SELECT english_name FROM table_name_23 WHERE abbr LIKE "%พ.ย.%" |
What is the 2013 of the grand slam tournaments? | CREATE TABLE table_name_71 (
tournament VARCHAR
) | SELECT 2013 FROM table_name_71 WHERE tournament LIKE "%grand slam tournaments%" |
How many wins did Cobden have when draws were more than 0? | CREATE TABLE table_name_90 (
wins VARCHAR,
club VARCHAR,
draws VARCHAR
) | SELECT COUNT(wins) FROM table_name_90 WHERE club LIKE "%cobden%" AND draws > 0 |
What type of motorsport has a session of pre-race test? | CREATE TABLE table_name_93 (
discipline VARCHAR,
session VARCHAR
) | SELECT discipline FROM table_name_93 WHERE session LIKE "%pre-race test%" |
On what day was the attendance that had a Tie value of 40? | CREATE TABLE table_name_84 (
attendance VARCHAR,
tie_no VARCHAR
) | SELECT attendance FROM table_name_84 WHERE tie_no LIKE "%40%" |
What season episode is directed by Skipp Sudduth? | CREATE TABLE table_21625 (
"Series #" real,
"Season #" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Original air date" text
) | SELECT "Season #" FROM table_21625 WHERE "Directed by" LIKE '%skipp sudduth%' |
What is the total number with Nov 2012 with a Jun 2013 larger than 542, and a Aug 2011 more than 935? | CREATE TABLE table_51531 (
"Feb 2010" text,
"Mar 2010" text,
"May 2010" real,
"Jun 2010" real,
"Jul 2010" real,
"Aug 2010" real,
"Sep 2010" real,
"Oct 2010" real,
"Nov 2010" real,
"Dec 2010" real,
"Jan 2011" real,
"Feb 2011" real,
"Mar 2011" real,
"Apr 2011" real,
"May 2011" real,
"Jun 2011" real,
"Jul 2011" real,
"Aug 2011" real,
"Sep 2011" real,
"Oct 2011" real,
"Nov 2011" real,
"Dec 2011" real,
"Jan 2012" real,
"Feb 2012" real,
"Mar 2012" real,
"Apr 2012" real,
"May 2012" real,
"Jun 2012" real,
"Jul 2012" real,
"Aug 2012" real,
"Sep 2012" real,
"Oct 2012" real,
"Nov 2012" real,
"Dec 2012" real,
"Jan 2013" real,
"Feb 2013" real,
"Mar 2013" real,
"Apr 2013" real,
"May 2013" real,
"Jun 2013" real,
"Jul 2013" real,
"Aug 2013" real,
"Sep 2013" real,
"Oct 2013" real
) | SELECT COUNT("Nov 2012") FROM table_51531 WHERE "Jun 2013" > 542 AND "Aug 2011" > 935 |
What is the average number of students for schools with a pupil to teacher ratio of 25.1? | CREATE TABLE table_39440 (
"School Name" text,
"City" text,
"Students" real,
"FTE Teachers" real,
"Pupil/Teacher Ratio" real
) | SELECT AVG("Students") FROM table_39440 WHERE "Pupil/Teacher Ratio" LIKE '%25.1%' |
What barony is Ballycunningham in? | CREATE TABLE table_30120566_1 (
barony VARCHAR,
townland VARCHAR
) | SELECT barony FROM table_30120566_1 WHERE townland LIKE "%ballycunningham%" |
Which Opponent has a Score of 3 6, 5 7? | CREATE TABLE table_38576 (
"Date" text,
"Tournament" text,
"Surface" text,
"Opponent" text,
"Score" text
) | SELECT "Opponent" FROM table_38576 WHERE "Score" LIKE '%3–6, 5–7%' |
What was the surface when he played with John Alexander? | CREATE TABLE table_26309085_1 (
surface VARCHAR,
partner VARCHAR
) | SELECT surface FROM table_26309085_1 WHERE partner LIKE '%john alexander%' |
Can you tell me the sum of Loss that has the Gain of 2646? | CREATE TABLE table_48411 (
"Name" text,
"Gain" real,
"Loss" real,
"Long" real,
"Avg/g" real
) | SELECT SUM("Loss") FROM table_48411 WHERE "Gain" = 2646 |
In what city is the Don Valley Stadium located? | CREATE TABLE table_33516 (
"Date" text,
"Result" text,
"Score" text,
"Stadium" text,
"City" text,
"Crowd" real
) | SELECT "City" FROM table_33516 WHERE "Stadium" LIKE '%don valley stadium%' |
What year did Tom Watson win? | CREATE TABLE table_name_78 (
year_s__won VARCHAR,
player VARCHAR
) | SELECT year_s__won FROM table_name_78 WHERE player LIKE "%tom watson%" |
What is Country, when Player is 'Billy Maxwell'? | CREATE TABLE table_name_77 (
country VARCHAR,
player VARCHAR
) | SELECT country FROM table_name_77 WHERE player LIKE "%billy maxwell%" |
WHEN has a Opponent of miami dolphins? | CREATE TABLE table_name_94 (
date VARCHAR,
opponent VARCHAR
) | SELECT date FROM table_name_94 WHERE opponent LIKE "%miami dolphins%" |
Who is the opponent for week 10? | CREATE TABLE table_31939 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" real
) | SELECT "Opponent" FROM table_31939 WHERE "Week" = 10 |
Which driver had an accident and laps smaller than 53? | CREATE TABLE table_36332 (
"Driver" text,
"Constructor" text,
"Laps" real,
"Time/Retired" text,
"Grid" text
) | SELECT "Driver" FROM table_36332 WHERE "Laps" < 53 AND "Time/Retired" LIKE '%accident%' |
What is the notes entry for the row with a Time of 1:42.309? | CREATE TABLE table_64368 (
"Rank" real,
"Athletes" text,
"Country" text,
"Time" text,
"Notes" text
) | SELECT "Notes" FROM table_64368 WHERE "Time" LIKE '%1:42.309%' |
What location had a VFL Game number of 9? | CREATE TABLE table_16527640_3 (
location VARCHAR,
vfl_games VARCHAR
) | SELECT location FROM table_16527640_3 WHERE vfl_games LIKE '%9%' |
What was the series score on april 17 with minnesota at home? | CREATE TABLE table_53053 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Decision" text,
"Attendance" real,
"Series" text
) | SELECT "Series" FROM table_53053 WHERE "Home" LIKE '%minnesota%' AND "Date" LIKE '%april 17%' |
What year was the Guard who currently plays for the Memphis Grizzlies born? | CREATE TABLE table_name_25 (
year_born VARCHAR,
position VARCHAR,
current_club VARCHAR
) | SELECT year_born FROM table_name_25 WHERE position LIKE "%guard%" AND current_club LIKE "%memphis grizzlies%" |
What team was the opponent when josh smith (8) had the high assists? | CREATE TABLE table_27734577_13 (
team VARCHAR,
high_assists VARCHAR
) | SELECT team FROM table_27734577_13 WHERE high_assists LIKE "%josh smith (8)%" |
List the name of artworks in ascending alphabetical order. | CREATE TABLE artwork (
Name VARCHAR
) | SELECT Name FROM artwork ORDER BY Name |
What Week had an Attendance smaller than 22,333? | CREATE TABLE table_5758 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" real
) | SELECT COUNT("Week") FROM table_5758 WHERE "Attendance" < 22333 |
What is the value for parentheses with a dots value of 0.\dot{6}? | CREATE TABLE table_36624 (
"Fraction" text,
"Ellipsis" text,
"Vinculum" text,
"Dots" text,
"Parentheses" text
) | SELECT "Parentheses" FROM table_36624 WHERE "Dots" LIKE '%0.\dot{6}%' |
What is Norway's least ends lost? | CREATE TABLE table_16922657_2 (
Ends INTEGER,
country VARCHAR,
Norway VARCHAR
) | SELECT MIN(Ends) AS lost FROM table_16922657_2 WHERE country LIKE '%norway%' |
How many laps associated with a Time/Retired of + 1:25.475? | CREATE TABLE table_name_62 (
laps VARCHAR,
time_retired VARCHAR
) | SELECT COUNT(laps) FROM table_name_62 WHERE time_retired LIKE '%+ 1:25.475%' |
What was the final score for the game played at 7:00 pm? | CREATE TABLE table_name_16 (
result VARCHAR,
time VARCHAR
) | SELECT result FROM table_name_16 WHERE time LIKE "%7:00 pm%" |
What is the frequency of KFNW? | CREATE TABLE table_name_36 (
frequency VARCHAR,
call_sign VARCHAR
) | SELECT frequency FROM table_name_36 WHERE call_sign LIKE "%kfnw%" |
When was the first year he placed 2nd in Izmir, Turkey? | CREATE TABLE table_51543 (
"Year" real,
"Tournament" text,
"Venue" text,
"Result" text,
"Event" text
) | SELECT MIN("Year") FROM table_51543 WHERE "Result" LIKE '%2nd%' AND "Venue" LIKE '%izmir, turkey%' |
What is the mean Fall 09 number where fall 05 is less than 3? | CREATE TABLE table_38830 (
"States" text,
"Fall 05" real,
"Fall 06" real,
"Fall 07" real,
"Fall 08" real,
"Fall 09" real
) | SELECT AVG("Fall 09") FROM table_38830 WHERE "Fall 05" < 3 |
What player originally played for the Los Angeles Kings? | CREATE TABLE table_name_26 (
player VARCHAR,
original_team VARCHAR
) | SELECT player FROM table_name_26 WHERE original_team LIKE "%los angeles kings%" |
What team has a home of 2-3? | CREATE TABLE table_59800 (
"Season" text,
"League" text,
"Teams" text,
"Home" text,
"Away" text
) | SELECT "Teams" FROM table_59800 WHERE "Home" LIKE '%2-3%' |
Name the Year with a Rank-Final smaller than 2, an Apparatus of team, and a Score-Qualifying smaller than 248.275? | CREATE TABLE table_name_8 (
year INTEGER,
score_qualifying VARCHAR,
rank_final VARCHAR,
apparatus VARCHAR
) | SELECT AVG(year) FROM table_name_8 WHERE rank_final < '2' AND apparatus LIKE '%team%' AND score_qualifying < '248.275' |
What college did Keith Shologan play for? | CREATE TABLE table_9494 (
"Pick #" real,
"CFL Team" text,
"Player" text,
"Position" text,
"College" text
) | SELECT "College" FROM table_9494 WHERE "Player" LIKE '%keith shologan%' |
Name the couty for others% 5.8 | CREATE TABLE table_23014476_1 (
county VARCHAR,
others__percentage VARCHAR
) | SELECT county FROM table_23014476_1 WHERE others__percentage LIKE "%5.8%" |
What is the date when the result was l 37-3? | CREATE TABLE table_13689 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" text
) | SELECT "Date" FROM table_13689 WHERE "Result" LIKE '%l 37-3%' |
What is the Team 2 with a Team 1 that is milli piyango sk? | CREATE TABLE table_name_34 (
team_2 VARCHAR,
team_1 VARCHAR
) | SELECT team_2 FROM table_name_34 WHERE team_1 LIKE "%milli piyango sk%" |
What is every equivalent for the example of asy28? | CREATE TABLE table_30011_2 (
equivalent VARCHAR,
example VARCHAR
) | SELECT equivalent FROM table_30011_2 WHERE example LIKE "%asy28%" |
When 31901 is the population what is the county? | CREATE TABLE table_23248420_1 (
county VARCHAR,
population VARCHAR
) | SELECT county FROM table_23248420_1 WHERE population LIKE '%31901%' |
On what date was the venue VFL Park? | CREATE TABLE table_name_50 (
date VARCHAR,
venue VARCHAR
) | SELECT date FROM table_name_50 WHERE venue LIKE "%vfl park%" |
Which developer has xbox 360 as the platform? | CREATE TABLE table_name_59 (
developer VARCHAR,
platform VARCHAR
) | SELECT developer FROM table_name_59 WHERE platform LIKE "%xbox 360%" |
What was the NBA draft status for Northeast High School? | CREATE TABLE table_name_7 (
nba_draft VARCHAR,
school VARCHAR
) | SELECT nba_draft FROM table_name_7 WHERE school LIKE "%northeast high school%" |
What's the home record of the team with percentage of .168? | CREATE TABLE table_22993636_2 (
home_record VARCHAR,
percentage VARCHAR
) | SELECT home_record FROM table_22993636_2 WHERE percentage LIKE "%.168%" |
Name the opponent for june 12 | CREATE TABLE table_73148 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location" text,
"Record" text
) | SELECT "Opponent" FROM table_73148 WHERE "Date" LIKE '%june 12%' |
Which province and flag has a water area (km 2) of 0? | CREATE TABLE table_name_40 (
name_and_flag VARCHAR,
water_area__km_2__ VARCHAR
) | SELECT name_and_flag FROM table_name_40 WHERE water_area__km_2__ LIKE '%0%' |
What type of settlement is (hungarian: orom)? | CREATE TABLE table_2562572_33 (
type VARCHAR,
cyrillic_name_other_names VARCHAR
) | SELECT type FROM table_2562572_33 WHERE cyrillic_name_other_names LIKE '%ором (hungarian: orom)%' |
What is the average rating of viewers 18 to 49 where the total viewer count is 3.93 million and share less than 4? | CREATE TABLE table_name_96 (
viewers__m_ VARCHAR,
share VARCHAR
) | SELECT AVG(CAST('18' AS INTEGER)) AS _49 FROM table_name_96 WHERE viewers__m_ LIKE '%3.93%' AND CAST(share AS INTEGER) < 4 |
What was the score for the game with a tie no of 1? | CREATE TABLE table_66645 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Attendance" text
) | SELECT "Score" FROM table_66645 WHERE "Tie no" LIKE '%1%' |
What is the College with a Round # that is 290? | CREATE TABLE table_name_20 (
college VARCHAR,
round__number VARCHAR
) | SELECT college FROM table_name_20 WHERE round__number LIKE '%290%' |
What is the 2004 when 2013 is 3rd? | CREATE TABLE table_name_17 (
Id VARCHAR
) | SELECT 2004 FROM table_name_17 WHERE 2013 LIKE "%3rd%" |
What is the highest cr number? | CREATE TABLE table_1886270_1 (
cr_no INTEGER
) | SELECT MAX(cr_no) FROM table_1886270_1 |
What was sweden's score in T9 place? | CREATE TABLE table_name_27 (
score VARCHAR,
place VARCHAR,
country VARCHAR
) | SELECT score FROM table_name_27 WHERE place LIKE "%t9%" AND country LIKE "%sweden%" |
How many gold medals did Denmark win? | CREATE TABLE table_name_65 (
gold INTEGER,
nation VARCHAR
) | SELECT MIN(gold) FROM table_name_65 WHERE nation LIKE "%denmark%" |
how many wins did tom boonen made ? | CREATE TABLE table_204_4 (
id number,
"date" text,
"race" text,
"competition" text,
"rider" text,
"country" text,
"location" text
) | SELECT COUNT(*) FROM table_204_4 WHERE "rider" LIKE '%tom boonen%' |
How many players named Dean Kirkland were picked | CREATE TABLE table_15353123_1 (
pick__number VARCHAR,
player VARCHAR
) | SELECT COUNT(pick__number) FROM table_15353123_1 WHERE player LIKE "%dean kirkland%" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.