question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
What was the regular season for 2012?
|
CREATE TABLE table_name_38 (
regular_season VARCHAR,
year VARCHAR
)
|
SELECT regular_season FROM table_name_38 WHERE year LIKE "%2012%"
|
What is the score points when the total is 20?
|
CREATE TABLE table_60583 (
"Shooter" text,
"Event" text,
"Rank points" text,
"Score points" text,
"Total" text
)
|
SELECT "Score points" FROM table_60583 WHERE "Total" LIKE '%20%'
|
How many teams drew the widnes vikings?
|
CREATE TABLE table_13018091_1 (
drawn VARCHAR,
club VARCHAR
)
|
SELECT COUNT(drawn) FROM table_13018091_1 WHERE club LIKE "%widnes vikings%"
|
What is the number of games for a club that has 34 match points?
|
CREATE TABLE table_name_39 (
games VARCHAR,
match_points VARCHAR
)
|
SELECT games FROM table_name_39 WHERE match_points LIKE "%34%"
|
What weekday has an against of kashima antlers?
|
CREATE TABLE table_name_68 (
weekday VARCHAR,
against VARCHAR
)
|
SELECT weekday FROM table_name_68 WHERE against LIKE "%kashima antlers%"
|
WHAT IS THE SUM PLAYED WITH POINTS 1 OF 53, AND POSITION LARGER THAN 3?
|
CREATE TABLE table_name_81 (
played INTEGER,
points_1 VARCHAR,
position VARCHAR
)
|
SELECT SUM(played) FROM table_name_81 WHERE points_1 LIKE "%53%" AND position > "3"
|
what country has won at least eight silvers ?
|
CREATE TABLE table_204_360 (
id number,
"year" number,
"host" text,
"gold" text,
"silver" text,
"bronze" text
)
|
SELECT "silver" FROM table_204_360 GROUP BY "silver" HAVING COUNT(*) >= 8
|
What is Position, when Overall is less than 590, and when Round is 3?
|
CREATE TABLE table_45024 (
"Player" text,
"Position" text,
"Round" real,
"Overall" real,
"MLB Team" text
)
|
SELECT "Position" FROM table_45024 WHERE "Overall" < 590 AND "Round" = 3
|
Which Losses have an Against smaller than 1464, and Draws smaller than 1, and Wins larger than 7?
|
CREATE TABLE table_12494 (
"Lexton Plains" text,
"Wins" real,
"Byes" real,
"Losses" real,
"Draws" real,
"Against" real
)
|
SELECT MIN("Losses") FROM table_12494 WHERE "Against" < 1464 AND "Draws" < 1 AND "Wins" > 7
|
Name the team on february 12
|
CREATE TABLE table_name_68 (
team VARCHAR,
date VARCHAR
)
|
SELECT team FROM table_name_68 WHERE date LIKE "%february 12%"
|
What is the agg of team 2 Dynamo Moscow?
|
CREATE TABLE table_name_2 (
agg VARCHAR,
team_2 VARCHAR
)
|
SELECT agg FROM table_name_2 WHERE team_2 LIKE "%dynamo moscow%"
|
Name the score which has opponent of stefano galvani
|
CREATE TABLE table_71606 (
"Outcome" text,
"Tournament" text,
"Surface" text,
"Opponent" text,
"Score" text
)
|
SELECT "Score" FROM table_71606 WHERE "Opponent" LIKE '%stefano galvani%'
|
What is the home town of David Noel?
|
CREATE TABLE table_20785990_2 (
home_town VARCHAR,
name VARCHAR
)
|
SELECT home_town FROM table_20785990_2 WHERE name LIKE "%david noel%"
|
What is the location and attendance for the game where b. benjamin (10) had the high rebounds?
|
CREATE TABLE table_27902171_7 (
location_attendance VARCHAR,
high_rebounds VARCHAR
)
|
SELECT location_attendance FROM table_27902171_7 WHERE high_rebounds LIKE "%b. benjamin (10)%"
|
What were the names of the episodes that had 3.02 million U.S. viewers?
|
CREATE TABLE table_11111116_7 (
title VARCHAR,
us_viewers__million_ VARCHAR
)
|
SELECT title FROM table_11111116_7 WHERE us_viewers__million_ LIKE "%3.02%"
|
What year was incumbent william f. stevenson first elected?
|
CREATE TABLE table_1342451_38 (
first_elected VARCHAR,
incumbent VARCHAR
)
|
SELECT first_elected FROM table_1342451_38 WHERE incumbent LIKE "%william f. stevenson%"
|
What is the score for the team that has a record of 80-64?
|
CREATE TABLE table_name_43 (
score VARCHAR,
record VARCHAR
)
|
SELECT score FROM table_name_43 WHERE record LIKE "%80-64%"
|
When is the last day any resident moved in?
|
CREATE TABLE Residents (
date_moved_in INTEGER
)
|
SELECT MAX(date_moved_in) FROM Residents
|
What is the total number of Season(s), when Original Airdate is January 24, 1999, and when Year is less than 1999?
|
CREATE TABLE table_name_67 (
season VARCHAR,
original_airdate VARCHAR,
year VARCHAR
)
|
SELECT COUNT(season) FROM table_name_67 WHERE original_airdate LIKE "%january 24, 1999%" AND year < "1999"
|
What was the score with the opponent being New Zealand Warriors?
|
CREATE TABLE table_71748 (
"Year" real,
"Opponent" text,
"Competition" text,
"Score" text,
"Venue" text,
"Attendance" text
)
|
SELECT "Score" FROM table_71748 WHERE "Opponent" LIKE '%new zealand warriors%'
|
Which Rider finished with a speed of 81.91mph?
|
CREATE TABLE table_32726 (
"Rank" real,
"Rider" text,
"Team" text,
"Speed" text,
"Time" text
)
|
SELECT "Rider" FROM table_32726 WHERE "Speed" LIKE '%81.91mph%'
|
What is the Birthplace, when the Jersey # is less than 18, when the Height (cm) is higher than 185, and when the Birthdate is March 3, 1980?
|
CREATE TABLE table_name_24 (
birthplace VARCHAR,
birthdate VARCHAR,
jersey__number VARCHAR,
height__cm_ VARCHAR
)
|
SELECT birthplace FROM table_name_24 WHERE jersey__number < '18' AND height__cm_ > '185' AND birthdate LIKE '%march 3, 1980%'
|
What is the 2012 result of a tournament that is 2R in 2007, 1R in 2008 and 1R in 2009?
|
CREATE TABLE table_name_29 (
Id VARCHAR
)
|
SELECT 2012 FROM table_name_29 WHERE 2009 LIKE '%1r%' AND 2008 LIKE '%1r%' AND 2007 LIKE '%2r%'
|
What is the average Year when Australia was the runner-up at victoria golf club?
|
CREATE TABLE table_name_8 (
year INTEGER,
runners_up VARCHAR,
venue VARCHAR
)
|
SELECT AVG(year) FROM table_name_8 WHERE runners_up LIKE "%australia%" AND venue LIKE "%victoria golf club%"
|
How many points are there when the lost is 26?
|
CREATE TABLE table_1166259_1 (
points VARCHAR,
lost VARCHAR
)
|
SELECT points FROM table_1166259_1 WHERE lost LIKE '%26%'
|
Which City has a Date of june 9, 1976?
|
CREATE TABLE table_name_39 (
city VARCHAR,
date VARCHAR
)
|
SELECT city FROM table_name_39 WHERE date LIKE "%june 9, 1976%"
|
What is the Date of the castle with a Historic Scotland Ownership?
|
CREATE TABLE table_name_38 (
date VARCHAR,
ownership VARCHAR
)
|
SELECT date FROM table_name_38 WHERE ownership LIKE "%historic scotland%"
|
What is Series, when Launch Date is 23 February 2013?
|
CREATE TABLE table_name_16 (
series VARCHAR,
launch_date VARCHAR
)
|
SELECT series FROM table_name_16 WHERE launch_date LIKE "%23 february 2013%"
|
What is the highest number of extra points for players with less than 2 touchdowns and less than 1 point?
|
CREATE TABLE table_name_47 (
extra_points INTEGER,
touchdowns VARCHAR,
points VARCHAR
)
|
SELECT MAX(extra_points) FROM table_name_47 WHERE touchdowns LIKE '%2%' AND points LIKE '%1%'
|
What was the score of the home team when Richmond was the away team?
|
CREATE TABLE table_name_42 (
home_team VARCHAR,
away_team VARCHAR
)
|
SELECT home_team AS score FROM table_name_42 WHERE away_team LIKE "%richmond%"
|
For what Class A is the school year 1987-88?
|
CREATE TABLE table_name_24 (
class_a VARCHAR,
school_year VARCHAR
)
|
SELECT class_a FROM table_name_24 WHERE school_year LIKE "%1987-88%"
|
What is the lowest value for apps in 2009 season in a division less than 1?
|
CREATE TABLE table_name_86 (
apps INTEGER,
season VARCHAR,
division VARCHAR
)
|
SELECT MIN(apps) FROM table_name_86 WHERE season LIKE "%2009%" AND division < 1
|
What is the 2003 statistic for the product that had 514,000 tonnes in 2001?
|
CREATE TABLE table_name_34 (
Id VARCHAR
)
|
SELECT 2003 FROM table_name_34 WHERE 2001 LIKE "%514,000 tonnes%"
|
What hometown was FR Year, and ha Brown's Gymnastics club?
|
CREATE TABLE table_46416 (
"Name" text,
"Height" text,
"Year" text,
"Hometown" text,
"Club" text
)
|
SELECT "Hometown" FROM table_46416 WHERE "Year" LIKE '%fr%' AND "Club" LIKE '%brown''s gymnastics%'
|
How many tickets were there sold/available in Barcelona?
|
CREATE TABLE table_name_54 (
tickets_sold___available VARCHAR,
city VARCHAR
)
|
SELECT tickets_sold___available FROM table_name_54 WHERE city LIKE '%barcelona%'
|
What is the result at match reports?
|
CREATE TABLE table_name_98 (
result VARCHAR,
location VARCHAR
)
|
SELECT result FROM table_name_98 WHERE location LIKE "%match reports%"
|
What is the First issue date of the title with a Last Issue of July 2010?
|
CREATE TABLE table_name_1 (
first_issue VARCHAR,
last_issue VARCHAR
)
|
SELECT first_issue FROM table_name_1 WHERE last_issue LIKE "%july 2010%"
|
Who directed the episode that was watched by 6.62 million U.S. viewers?
|
CREATE TABLE table_22181917_2 (
directed_by VARCHAR,
us_viewers__millions_ VARCHAR
)
|
SELECT directed_by FROM table_22181917_2 WHERE us_viewers__millions_ LIKE "%6.62%"
|
How many times did he hold 12 poles?
|
CREATE TABLE table_3561 (
"Season" real,
"Series" text,
"Team" text,
"Races" real,
"Wins" real,
"Poles" real,
"F/Laps" real,
"Podiums" real,
"Points" real,
"Position" text
)
|
SELECT COUNT("F/Laps") FROM table_3561 WHERE "Poles" = 12
|
What is the notes left for Berlin?
|
CREATE TABLE table_38837 (
"Distance" text,
"Time" text,
"Date" text,
"Location" text,
"Notes" text
)
|
SELECT "Notes" FROM table_38837 WHERE "Location" LIKE '%berlin%'
|
Tell me the result for primetime emmy awards
|
CREATE TABLE table_4371 (
"Year" real,
"Association" text,
"Category" text,
"Nominated work" text,
"Result" text
)
|
SELECT "Result" FROM table_4371 WHERE "Association" LIKE '%primetime emmy awards%'
|
What earliest year with points larger than 68 and a rank of 7th?
|
CREATE TABLE table_name_71 (
year INTEGER,
points VARCHAR,
rank VARCHAR
)
|
SELECT MIN(year) FROM table_name_71 WHERE points > 68 AND rank LIKE "%7th%"
|
What was the date of the game played after week 15?
|
CREATE TABLE table_name_86 (
date VARCHAR,
week INTEGER
)
|
SELECT date FROM table_name_86 WHERE week > 15
|
Who had the most rebounds in the game against Chicago?
|
CREATE TABLE table_name_52 (
high_rebounds VARCHAR,
team VARCHAR
)
|
SELECT high_rebounds FROM table_name_52 WHERE team LIKE "%chicago%"
|
Which Streak has a Game of 3?
|
CREATE TABLE table_name_35 (
streak VARCHAR,
game VARCHAR
)
|
SELECT streak FROM table_name_35 WHERE game LIKE '%3%'
|
What was the value in 2008 when 2012 was 1R, 2010 was A, and 2005 was A?
|
CREATE TABLE table_name_1 (
Id VARCHAR
)
|
SELECT 2008 FROM table_name_1 WHERE 2012 LIKE '%1r%' AND 2010 LIKE '%a%' AND 2005 LIKE '%a%'
|
What was the margin of the score 52-12?
|
CREATE TABLE table_11258 (
"Margin" real,
"Opponent" text,
"Score" text,
"Venue" text,
"Date" text
)
|
SELECT SUM("Margin") FROM table_11258 WHERE "Score" LIKE '%52-12%'
|
What day did the platform sell 9.87 million units?
|
CREATE TABLE table_18590048_1 (
release_date VARCHAR,
units_sold__in_millions_ VARCHAR
)
|
SELECT release_date FROM table_18590048_1 WHERE units_sold__in_millions_ LIKE "%9.87%"
|
Name the number opponent for loss result
|
CREATE TABLE table_20928661_1 (
opponent VARCHAR,
result VARCHAR
)
|
SELECT COUNT(opponent) FROM table_20928661_1 WHERE result LIKE '%loss%'
|
Who was the High Assist in game 1?
|
CREATE TABLE table_21520 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
)
|
SELECT "High assists" FROM table_21520 WHERE "Game" = 1
|
What is the attendance for the game on May 25?
|
CREATE TABLE table_75119 (
"Date" text,
"Opponent" text,
"Score" text,
"Loss" text,
"Attendance" real,
"Record" text
)
|
SELECT "Attendance" FROM table_75119 WHERE "Date" LIKE '%may 25%'
|
What day was geelong the away side?
|
CREATE TABLE table_name_96 (
date VARCHAR,
away_team VARCHAR
)
|
SELECT date FROM table_name_96 WHERE away_team LIKE "%geelong%"
|
Who's the player that's male and on the original season of RW: Key West?
|
CREATE TABLE table_name_36 (
player VARCHAR,
gender VARCHAR,
original_season VARCHAR
)
|
SELECT player FROM table_name_36 WHERE gender LIKE "%male%" AND original_season LIKE "%rw: key west%"
|
The box office was $961,147 in what year?
|
CREATE TABLE table_name_18 (
year VARCHAR,
box_office VARCHAR
)
|
SELECT year FROM table_name_18 WHERE box_office LIKE '%$961,147%'
|
What is the away side score when footscray is the home side?
|
CREATE TABLE table_32191 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
)
|
SELECT "Away team score" FROM table_32191 WHERE "Home team" LIKE '%footscray%'
|
What is every value for Points 2 when the value of won is 30?
|
CREATE TABLE table_17359181_1 (
points_2 VARCHAR,
won VARCHAR
)
|
SELECT points_2 FROM table_17359181_1 WHERE won LIKE '%30%'
|
What record has January 27 for the date?
|
CREATE TABLE table_name_49 (
record VARCHAR,
date VARCHAR
)
|
SELECT record FROM table_name_49 WHERE date LIKE "%january 27%"
|
What is the population density of mongmong-toto-maite?
|
CREATE TABLE table_2588674_1 (
pop_density INTEGER,
village VARCHAR
)
|
SELECT MIN(pop_density) FROM table_2588674_1 WHERE village LIKE "%mongmong-toto-maite%"
|
Who has a total number of 76 silver medals?
|
CREATE TABLE table_name_66 (
silver VARCHAR,
total VARCHAR
)
|
SELECT COUNT(silver) FROM table_name_66 WHERE total LIKE '%76%'
|
What is the sum of Game on february 28?
|
CREATE TABLE table_name_52 (
game INTEGER,
date VARCHAR
)
|
SELECT SUM(game) FROM table_name_52 WHERE date LIKE "%february 28%"
|
How many episodes had a series number of 95?
|
CREATE TABLE table_23287683_1 (
title VARCHAR,
series__number VARCHAR
)
|
SELECT COUNT(title) FROM table_23287683_1 WHERE series__number LIKE '%95%'
|
what is the location on november 23?
|
CREATE TABLE table_45658 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Location" text,
"Record" text
)
|
SELECT "Location" FROM table_45658 WHERE "Date" LIKE '%november 23%'
|
Which 1st Party has an election in 1847?
|
CREATE TABLE table_name_28 (
election VARCHAR
)
|
SELECT 1 AS st_party FROM table_name_28 WHERE election LIKE "%1847%"
|
how many competitors were from the united states ?
|
CREATE TABLE table_204_3 (
id number,
"rank" number,
"name" text,
"nationality" text,
"time" number
)
|
SELECT COUNT("name") FROM table_204_3 WHERE "nationality" LIKE '%united states%'
|
What place did bobby wadkins come in?
|
CREATE TABLE table_name_13 (
place VARCHAR,
player VARCHAR
)
|
SELECT place FROM table_name_13 WHERE player LIKE "%bobby wadkins%"
|
What date did series number 32 premiere?
|
CREATE TABLE table_2667438_5 (
original_air_date VARCHAR,
no_in_series VARCHAR
)
|
SELECT original_air_date FROM table_2667438_5 WHERE no_in_series LIKE '%32%'
|
Which Team has a Position in table of 15th (c)?
|
CREATE TABLE table_name_75 (
team VARCHAR,
position_in_table VARCHAR
)
|
SELECT team FROM table_name_75 WHERE position_in_table LIKE "%15th (c)%"
|
Which player number is 2.10 meters tall?
|
CREATE TABLE table_12962773_10 (
no VARCHAR,
height VARCHAR
)
|
SELECT no FROM table_12962773_10 WHERE height LIKE "%2.10%"
|
What is the location/state that has adelaide international raceway as the circuit?
|
CREATE TABLE table_41600 (
"Round" text,
"Circuit" text,
"Location / State" text,
"Date" text,
"Winner" text
)
|
SELECT "Location / State" FROM table_41600 WHERE "Circuit" LIKE '%adelaide international raceway%'
|
Name the location attendance for 20
|
CREATE TABLE table_17322817_6 (
location_attendance VARCHAR,
game VARCHAR
)
|
SELECT location_attendance FROM table_17322817_6 WHERE game LIKE '%20%'
|
What date did Episode 2-01 (42) air?
|
CREATE TABLE table_name_56 (
original_airdate VARCHAR,
episode VARCHAR
)
|
SELECT original_airdate FROM table_name_56 WHERE episode LIKE "%2-01 (42)%"
|
Name the city for IATA of llw
|
CREATE TABLE table_name_32 (
city VARCHAR,
iata VARCHAR
)
|
SELECT city FROM table_name_32 WHERE iata LIKE "%llw%"
|
What is the lowest number of people attending the game on May 30 with Colorado as the visitors?
|
CREATE TABLE table_name_27 (
attendance INTEGER,
visitor VARCHAR,
date VARCHAR
)
|
SELECT MIN(attendance) FROM table_name_27 WHERE visitor LIKE '%colorado%' AND date LIKE '%may 30%'
|
what's the result with first elected being 1922
|
CREATE TABLE table_1342359_15 (
result VARCHAR,
first_elected VARCHAR
)
|
SELECT result FROM table_1342359_15 WHERE first_elected LIKE '%1922%'
|
Name the sum of grid with laps more than 97
|
CREATE TABLE table_name_82 (
grid INTEGER,
laps INTEGER
)
|
SELECT SUM(grid) FROM table_name_82 WHERE laps > 97
|
What is the price (usd) for the model pq32mu?
|
CREATE TABLE table_29778616_1 (
price__usd_ INTEGER,
model VARCHAR
)
|
SELECT MIN(price__usd_) FROM table_29778616_1 WHERE model LIKE "%pq32mu%"
|
For the Loss of Plesac (1-5), what is the Record?
|
CREATE TABLE table_name_18 (
record VARCHAR,
loss VARCHAR
)
|
SELECT record FROM table_name_18 WHERE loss LIKE "%plesac (1-5)%"
|
How many Placings have Points smaller than 330.84, and a Name of silvo svajger?
|
CREATE TABLE table_76897 (
"Rank" real,
"Name" text,
"Nation" text,
"Points" real,
"Placings" real
)
|
SELECT COUNT("Placings") FROM table_76897 WHERE "Points" < 330.84 AND "Name" LIKE '%silvo svajger%'
|
How many shows were launched on CBS (2002)?
|
CREATE TABLE table_30775 (
"No." real,
"Name" text,
"Country" text,
"Original channel" text,
"No. of episodes" real,
"Running time" text,
"Launched" text,
"Date" text,
"IRST" text
)
|
SELECT COUNT("Launched") FROM table_30775 WHERE "Original channel" LIKE '%cbs (2002)%'
|
Which College/Junior/Club team has a Round of 6?
|
CREATE TABLE table_name_13 (
college_junior_club_team VARCHAR,
round VARCHAR
)
|
SELECT college_junior_club_team FROM table_name_13 WHERE round LIKE '%6%'
|
Who did the Jets play in their pre-week 9 game at the Robert F. Kennedy memorial stadium?
|
CREATE TABLE table_name_32 (
opponent VARCHAR,
week VARCHAR,
game_site VARCHAR
)
|
SELECT opponent FROM table_name_32 WHERE CAST(week AS INTEGER) < 9 AND game_site LIKE '%robert f. kennedy memorial stadium%'
|
What is the production code of the episode written by Jack Carrerrow?
|
CREATE TABLE table_20967430_4 (
prod_code VARCHAR,
written_by VARCHAR
)
|
SELECT prod_code FROM table_20967430_4 WHERE written_by LIKE "%jack carrerrow%"
|
how many correctional facilities are listed in yerevan ?
|
CREATE TABLE table_204_414 (
id number,
"name" text,
"armenian" text,
"location" text,
"# of prisoners designed for" number,
"notes" text
)
|
SELECT COUNT("name") FROM table_204_414 WHERE "location" LIKE '%yerevan%'
|
What is the highest number of wins when draws are larger than 1, and byes are larger than 0?
|
CREATE TABLE table_name_59 (
wins INTEGER,
draws VARCHAR,
byes VARCHAR
)
|
SELECT MAX(wins) FROM table_name_59 WHERE draws LIKE '%1%' AND byes LIKE '%0%'
|
Which country had a round of Q3?
|
CREATE TABLE table_9784 (
"Season" text,
"Round" text,
"Country" text,
"Club" text,
"Home" text,
"Away" text,
"Aggregate" text
)
|
SELECT "Country" FROM table_9784 WHERE "Round" LIKE '%q3%'
|
Can you tell me the Gold that has the Total larger than 2, and the Bronze smaller than 1?
|
CREATE TABLE table_66491 (
"Rank" text,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
)
|
SELECT "Gold" FROM table_66491 WHERE "Total" > 2 AND "Bronze" < 1
|
What is every team in the location of Port Moresby?
|
CREATE TABLE table_26358 (
"Team" text,
"Location" text,
"Home Ground" text,
"First year in Qld Cup" real,
"Last year in Qld Cup" real,
"Qld Cup Premierships" text
)
|
SELECT "Team" FROM table_26358 WHERE "Location" LIKE '%port moresby%'
|
Show the position of players and the corresponding number of players.
|
CREATE TABLE match_season (
POSITION VARCHAR
)
|
SELECT POSITION, COUNT(*) FROM match_season GROUP BY POSITION
|
Show the prices of publications whose publisher is either 'Person' or 'Wiley
|
CREATE TABLE publication (
Price VARCHAR,
Publisher VARCHAR
)
|
SELECT Price FROM publication WHERE Publisher LIKE "%person%" OR Publisher LIKE "%wiley%"
|
How many people per km2 are there in the municipality whose mayor is Boy Quiat?
|
CREATE TABLE table_216776_2 (
pop_density__per_km²_ VARCHAR,
municipal_mayor VARCHAR
)
|
SELECT pop_density__per_km²_ FROM table_216776_2 WHERE municipal_mayor LIKE "%boy quiat%"
|
What is the total number of Entered when the eliminated number is 3?
|
CREATE TABLE table_40405 (
"Eliminated" text,
"Wrestler" text,
"Entered" real,
"Eliminated by" text,
"Time" text
)
|
SELECT COUNT("Entered") FROM table_40405 WHERE "Eliminated" LIKE '%3%'
|
Which Colony Name is in west virginia?
|
CREATE TABLE table_name_82 (
colony_name VARCHAR,
state VARCHAR
)
|
SELECT colony_name FROM table_name_82 WHERE state LIKE "%west virginia%"
|
What position has a spread greater than -319, and United States as the country, a win loss of 11-13, and gabriel, marty as the name?
|
CREATE TABLE table_33898 (
"Position" real,
"Name" text,
"Country" text,
"Win-Loss" text,
"Spread" real
)
|
SELECT "Position" FROM table_33898 WHERE "Spread" > -319 AND "Country" LIKE '%united states%' AND "Win-Loss" LIKE '%11-13%' AND "Name" LIKE '%gabriel, marty%'
|
What is Surface, when Tournament is 'Sunderland , United Kingdom'?
|
CREATE TABLE table_name_4 (
surface VARCHAR,
tournament VARCHAR
)
|
SELECT surface FROM table_name_4 WHERE tournament LIKE "%sunderland , united kingdom%"
|
What is the Result of the game on 10/11/1930?
|
CREATE TABLE table_name_63 (
result VARCHAR,
date VARCHAR
)
|
SELECT result FROM table_name_63 WHERE date LIKE "%10/11/1930%"
|
What Time/Retired has a Points that's smaller than 11 and has a Laps of 74?
|
CREATE TABLE table_name_48 (
time_retired VARCHAR,
points VARCHAR,
laps VARCHAR
)
|
SELECT time_retired FROM table_name_48 WHERE CAST(points AS INTEGER) < 11 AND laps LIKE '%74%'
|
What were the high points on March 25?
|
CREATE TABLE table_29914 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
)
|
SELECT "High points" FROM table_29914 WHERE "Date" LIKE '%march 25%'
|
What was the score when they had 62 points?
|
CREATE TABLE table_23453931_8 (
score VARCHAR,
points VARCHAR
)
|
SELECT score FROM table_23453931_8 WHERE points LIKE '%62%'
|
what is the notes for andre vonarburg?
|
CREATE TABLE table_name_24 (
notes VARCHAR,
athlete VARCHAR
)
|
SELECT notes FROM table_name_24 WHERE athlete LIKE "%andre vonarburg%"
|
What Level has a Season larger than 2010?
|
CREATE TABLE table_name_54 (
level VARCHAR,
season INTEGER
)
|
SELECT level FROM table_name_54 WHERE season > 2010
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.