question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
When was Alianza's first season in first division with a promotion after 1959?
|
CREATE TABLE table_name_63 (
first_season_in_first_division VARCHAR,
first_season_after_most_recent_promotion VARCHAR,
name VARCHAR
)
|
SELECT first_season_in_first_division FROM table_name_63 WHERE first_season_after_most_recent_promotion LIKE "%1959%" AND name LIKE "%alianza%"
|
If the grand average is 12.76-202, who is the player?
|
CREATE TABLE table_27533947_1 (
players VARCHAR,
grand_average VARCHAR
)
|
SELECT players FROM table_27533947_1 WHERE grand_average LIKE '%12.76-202%'
|
what is the road numbers when the class is z-7?
|
CREATE TABLE table_name_66 (
road_numbers VARCHAR,
class VARCHAR
)
|
SELECT road_numbers FROM table_name_66 WHERE class LIKE "%z-7%"
|
What is the number of meaning where full name is chidinma anulika?
|
CREATE TABLE table_17247 (
"Full Name" text,
"Nickname" text,
"Gender" text,
"Weight at birth" text,
"Meaning" text
)
|
SELECT COUNT("Meaning") FROM table_17247 WHERE "Full Name" LIKE '%chidinma anulika%'
|
What is Date, when Opponents In The Final, is Maria-Fernanda Alves St phanie Dubois?
|
CREATE TABLE table_name_59 (
date VARCHAR,
opponents_in_the_final VARCHAR
)
|
SELECT date FROM table_name_59 WHERE opponents_in_the_final LIKE "%maria-fernanda alves stéphanie dubois%"
|
Which team played as the home team when north melbourne played as away?
|
CREATE TABLE table_name_75 (
home_team VARCHAR,
away_team VARCHAR
)
|
SELECT home_team FROM table_name_75 WHERE away_team LIKE "%north melbourne%"
|
What venue had less than 2 goals?
|
CREATE TABLE table_name_80 (
venue VARCHAR,
goal INTEGER
)
|
SELECT venue FROM table_name_80 WHERE goal < 2
|
What is the Sum of ERP W, when Call Sign is K216GA?
|
CREATE TABLE table_77228 (
"Call sign" text,
"Frequency MHz" real,
"City of license" text,
"ERP W" real,
"Class" text,
"FCC info" text
)
|
SELECT SUM("ERP W") FROM table_77228 WHERE "Call sign" LIKE '%k216ga%'
|
When was the 'first season of current spell in top division' if the first season in top division is in 1964-65?
|
CREATE TABLE table_18143210_2 (
first_season_of_current_spell_in_top_division VARCHAR,
first_season_in_top_division VARCHAR
)
|
SELECT first_season_of_current_spell_in_top_division FROM table_18143210_2 WHERE first_season_in_top_division LIKE "%1964-65%"
|
Which Venue has a Year of 1911?
|
CREATE TABLE table_5765 (
"Opposition" text,
"Score" text,
"Venue" text,
"City" text,
"Year" real
)
|
SELECT "Venue" FROM table_5765 WHERE "Year" = 1911
|
What was the score of the game when the team was 1-2?
|
CREATE TABLE table_13557843_3 (
score VARCHAR,
record VARCHAR
)
|
SELECT score FROM table_13557843_3 WHERE record LIKE "%1-2%"
|
Who directed Tequila?
|
CREATE TABLE table_name_50 (
director VARCHAR,
title VARCHAR
)
|
SELECT director FROM table_name_50 WHERE title LIKE "%tequila%"
|
Can you tell me the average Total that has the To par of 15?
|
CREATE TABLE table_name_36 (
total INTEGER,
to_par VARCHAR
)
|
SELECT AVG(total) FROM table_name_36 WHERE to_par LIKE '%15%'
|
Which Record has a Score of 0 2?
|
CREATE TABLE table_69744 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Record" text
)
|
SELECT "Record" FROM table_69744 WHERE "Score" LIKE '%0–2%'
|
What were the LOA metres for the yacht ichi ban?
|
CREATE TABLE table_25594271_2 (
loa__metres_ VARCHAR,
yacht VARCHAR
)
|
SELECT loa__metres_ FROM table_25594271_2 WHERE yacht LIKE '%ichi ban%'
|
What iwas the attendance of the game that took place on december 6, 1998?
|
CREATE TABLE table_8742 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" text
)
|
SELECT "Attendance" FROM table_8742 WHERE "Date" LIKE '%december 6, 1998%'
|
Name the poles for 25th position
|
CREATE TABLE table_1708050_1 (
poles VARCHAR,
position VARCHAR
)
|
SELECT poles FROM table_1708050_1 WHERE position LIKE "%25th%"
|
What Constellation has a Object type of globular cluster and a NGC number of 5986?
|
CREATE TABLE table_name_17 (
constellation VARCHAR,
object_type VARCHAR,
ngc_number VARCHAR
)
|
SELECT constellation FROM table_name_17 WHERE object_type LIKE "%globular cluster%" AND ngc_number LIKE "%5986%"
|
Which Total has a Finish of t64, and a Year won larger than 2006?
|
CREATE TABLE table_name_64 (
total INTEGER,
finish VARCHAR,
year_won VARCHAR
)
|
SELECT MAX(total) FROM table_name_64 WHERE finish LIKE "%t64%" AND year_won > "2006"
|
What city is located in Oklahoma?
|
CREATE TABLE table_32896 (
"Region" text,
"Host" text,
"Venue" text,
"City" text,
"State" text
)
|
SELECT "City" FROM table_32896 WHERE "State" LIKE '%oklahoma%'
|
What is the total pick number of Virginia Tech?
|
CREATE TABLE table_name_68 (
pick VARCHAR,
school VARCHAR
)
|
SELECT COUNT(pick) FROM table_name_68 WHERE school LIKE "%virginia tech%"
|
Which goals/game ratio has fewer than 201 goals and fewer than 170 appearances?
|
CREATE TABLE table_41629 (
"Name" text,
"Career" text,
"Goals" real,
"Appearances" real,
"Goals/Game Ratio" real
)
|
SELECT "Goals/Game Ratio" FROM table_41629 WHERE "Goals" < 201 AND "Appearances" < 170
|
Name the most cuts made with top-25 more than 4 and top 5 of 1 with wins more than 0
|
CREATE TABLE table_name_61 (
cuts_made INTEGER,
wins VARCHAR,
top_25 VARCHAR,
top_5 VARCHAR
)
|
SELECT MAX(cuts_made) FROM table_name_61 WHERE top_25 > 4 AND top_5 LIKE '1' AND wins LIKE '%0%'
|
who directed the episode that have 14.59 million viewers
|
CREATE TABLE table_19417244_2 (
directed_by VARCHAR,
us_viewers__millions_ VARCHAR
)
|
SELECT directed_by FROM table_19417244_2 WHERE us_viewers__millions_ LIKE "%14.59%"
|
Which Position has a Difference of 5, and a Drawn smaller than 3?
|
CREATE TABLE table_name_84 (
position INTEGER,
difference VARCHAR,
drawn VARCHAR
)
|
SELECT MIN(position) FROM table_name_84 WHERE difference LIKE "%5%" AND drawn < 3
|
Which player from the 2004 CFL draft attended Wilfrid Laurier?
|
CREATE TABLE table_10975034_2 (
player VARCHAR,
college VARCHAR
)
|
SELECT player FROM table_10975034_2 WHERE college LIKE "%wilfrid laurier%"
|
What is the total combined weight of players from minnetonka, mn?
|
CREATE TABLE table_9864 (
"Name" text,
"Position" text,
"Height" text,
"Weight" real,
"Year" text,
"Home Town" text
)
|
SELECT SUM("Weight") FROM table_9864 WHERE "Home Town" LIKE '%minnetonka, mn%'
|
Which attendance number was taken in a week less than 16 when the Washington Redskins were the opponents?
|
CREATE TABLE table_name_39 (
attendance VARCHAR,
week VARCHAR,
opponent VARCHAR
)
|
SELECT attendance FROM table_name_39 WHERE week < '16' AND opponent LIKE '%washington redskins%'
|
Please show the most common age of editors.
|
CREATE TABLE editor (
Age VARCHAR
)
|
SELECT Age FROM editor GROUP BY Age ORDER BY COUNT(*) DESC LIMIT 1
|
Who was the second when Ilian Kirilov was the lead?
|
CREATE TABLE table_35947 (
"Nation" text,
"Skip" text,
"Third" text,
"Second" text,
"Lead" text
)
|
SELECT "Second" FROM table_35947 WHERE "Lead" LIKE '%ilian kirilov%'
|
What district had elections in 1964?
|
CREATE TABLE table_1341568_14 (
district VARCHAR,
elected VARCHAR
)
|
SELECT district FROM table_1341568_14 WHERE elected = '1964'
|
What was the record after the January 18 game?
|
CREATE TABLE table_name_86 (
record VARCHAR,
date VARCHAR
)
|
SELECT record FROM table_name_86 WHERE date LIKE "%january 18%"
|
What are the number of days in 1945 where the constituent was heywood and radcliffe?
|
CREATE TABLE table_name_18 (
days VARCHAR,
year VARCHAR,
constituency VARCHAR
)
|
SELECT days FROM table_name_18 WHERE year LIKE "%1945%" AND constituency LIKE "%heywood and radcliffe%"
|
Who had the high points while Dirk Nowitzki (13) had the high rebounds?
|
CREATE TABLE table_17288869_7 (
high_points VARCHAR,
high_rebounds VARCHAR
)
|
SELECT high_points FROM table_17288869_7 WHERE high_rebounds LIKE "%dirk nowitzki (13)%"
|
What is the name of the company that constructed the vehicle for Timo Glock?
|
CREATE TABLE table_name_15 (
constructor VARCHAR,
driver VARCHAR
)
|
SELECT constructor FROM table_name_15 WHERE driver LIKE "%timo glock%"
|
What is the status when the against is 11?
|
CREATE TABLE table_78923 (
"Opposing Teams" text,
"Against" real,
"Date" text,
"Venue" text,
"Status" text
)
|
SELECT "Status" FROM table_78923 WHERE "Against" = 11
|
What was the last week when the team had a bye week?
|
CREATE TABLE table_name_58 (
week INTEGER,
result VARCHAR
)
|
SELECT MAX(week) FROM table_name_58 WHERE result LIKE "%bye%"
|
What's the format of the season that ended on June 25?
|
CREATE TABLE table_1949994_7 (
format VARCHAR,
end_date VARCHAR
)
|
SELECT format FROM table_1949994_7 WHERE end_date LIKE '%june 25%'
|
When marcus camby (15) has the highest amount of rebounds who has the highest amount of assists?
|
CREATE TABLE table_23286158_10 (
high_assists VARCHAR,
high_rebounds VARCHAR
)
|
SELECT high_assists FROM table_23286158_10 WHERE high_rebounds LIKE "%marcus camby (15)%"
|
What iwas the attendance of the game that took place on december 6, 1998?
|
CREATE TABLE table_name_41 (
attendance VARCHAR,
date VARCHAR
)
|
SELECT attendance FROM table_name_41 WHERE date LIKE "%december 6, 1998%"
|
What is the Place of the Player with a Score of 70-71=141?
|
CREATE TABLE table_name_61 (
place VARCHAR,
score VARCHAR
)
|
SELECT place FROM table_name_61 WHERE score = '-1'
|
Which Away team score has a Home team of richmond?
|
CREATE TABLE table_name_58 (
away_team VARCHAR,
home_team VARCHAR
)
|
SELECT away_team AS score FROM table_name_58 WHERE home_team LIKE "%richmond%"
|
Total of 3, and a Gold larger than 0, and a Nation of belarus, and a Silver larger than 2 has what sum of bronze?
|
CREATE TABLE table_35262 (
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
)
|
SELECT SUM("Bronze") FROM table_35262 WHERE "Total" = 3 AND "Gold" > 0 AND "Nation" LIKE '%belarus%' AND "Silver" > 2
|
What was the attendance at the game played on December 10, 1972?
|
CREATE TABLE table_14959246_2 (
attendance VARCHAR,
date VARCHAR
)
|
SELECT attendance FROM table_14959246_2 WHERE date LIKE "%december 10, 1972%"
|
Name the cfl team for steven turner
|
CREATE TABLE table_27275 (
"Pick #" real,
"CFL Team" text,
"Player" text,
"Position" text,
"College" text
)
|
SELECT "CFL Team" FROM table_27275 WHERE "Player" LIKE '%steven turner%'
|
What is the smallest number of medals a country with more than 14 silver has?
|
CREATE TABLE table_name_78 (
total INTEGER,
silver INTEGER
)
|
SELECT MIN(total) FROM table_name_78 WHERE silver > 14
|
If grid is 2, what is the minimum fin. pos number?
|
CREATE TABLE table_21571 (
"Fin. Pos" real,
"Car No." real,
"Driver" text,
"Team" text,
"Laps" real,
"Time/Retired" text,
"Grid" real,
"Laps Led" real,
"Points" text
)
|
SELECT MIN("Fin. Pos") FROM table_21571 WHERE "Grid" = 2
|
which country came in first ?
|
CREATE TABLE table_204_910 (
id number,
"rank" number,
"name" text,
"nationality" text,
"result" number,
"notes" text
)
|
SELECT "nationality" FROM table_204_910 WHERE id = 1
|
What year was Jamboree made?
|
CREATE TABLE table_77366 (
"Movie Title" text,
"Year" real,
"Role" text,
"Director" text,
"Producer" text
)
|
SELECT "Year" FROM table_77366 WHERE "Movie Title" LIKE '%jamboree%'
|
How many times did episode number 8 air?
|
CREATE TABLE table_24399615_5 (
cable_rank VARCHAR,
episode_no VARCHAR
)
|
SELECT COUNT(cable_rank) FROM table_24399615_5 WHERE episode_no LIKE '%8%'
|
What venue is on the date of 8/6/03
|
CREATE TABLE table_name_5 (
venue VARCHAR,
date VARCHAR
)
|
SELECT venue FROM table_name_5 WHERE date LIKE "%8/6/03%"
|
If the POS is 3, what is the 08 points?
|
CREATE TABLE table_22011138_7 (
pos VARCHAR
)
|
SELECT 08 AS _pts FROM table_22011138_7 WHERE pos LIKE '%3%'
|
When did Adam Thompson play in the final?
|
CREATE TABLE table_37632 (
"Date" text,
"Tournament" text,
"Surface" text,
"Opponent in the final" text,
"Score" text
)
|
SELECT "Date" FROM table_37632 WHERE "Opponent in the final" LIKE '%adam thompson%'
|
which party is the newark representative from
|
CREATE TABLE table_31167 (
"District" real,
"Representative" text,
"Party" text,
"Residence" text,
"First Elected" text,
"Term Limited" real
)
|
SELECT "Party" FROM table_31167 WHERE "Residence" LIKE '%newark%'
|
What is the qual with 200 laps and a rank of 27?
|
CREATE TABLE table_71763 (
"Year" text,
"Start" text,
"Qual" text,
"Rank" text,
"Finish" text,
"Laps" real
)
|
SELECT "Qual" FROM table_71763 WHERE "Laps" = 200 AND "Rank" LIKE '%27%'
|
In what class does the verb with part 4 gelopen belong to?
|
CREATE TABLE table_21702 (
"Class" text,
"Part 1" text,
"Part 2" text,
"Part 3" text,
"Part 4" text,
"Verb meaning" text
)
|
SELECT "Class" FROM table_21702 WHERE "Part 4" LIKE '%gelopen%'
|
Which player is in round 5?
|
CREATE TABLE table_11803648_20 (
player VARCHAR,
round VARCHAR
)
|
SELECT player FROM table_11803648_20 WHERE round LIKE '%5%'
|
What solvent has a boiling point of 100 103 c?
|
CREATE TABLE table_name_55 (
solvent VARCHAR,
boiling_point VARCHAR
)
|
SELECT solvent FROM table_name_55 WHERE boiling_point LIKE "%100–103 °c%"
|
Where are the Alexandria enrollment locations?
|
CREATE TABLE table_2076608_3 (
enrollment VARCHAR,
location_s_ VARCHAR
)
|
SELECT enrollment FROM table_2076608_3 WHERE location_s_ LIKE '%alexandria%'
|
I want the driver for grid of 9
|
CREATE TABLE table_name_59 (
driver VARCHAR,
grid VARCHAR
)
|
SELECT driver FROM table_name_59 WHERE grid LIKE '%9%'
|
Which team/s have 48 goals total?
|
CREATE TABLE table_18967450_2 (
club VARCHAR,
goals VARCHAR
)
|
SELECT club FROM table_18967450_2 WHERE goals LIKE '%48%'
|
List all the places that the Apocalypstix occupied when the Denim Demons were 2nd.
|
CREATE TABLE table_29619494_2 (
apocalypstix VARCHAR,
denim_demons VARCHAR
)
|
SELECT apocalypstix FROM table_29619494_2 WHERE denim_demons LIKE "%2nd%"
|
Who was the athlete with a wind of 1.8?
|
CREATE TABLE table_79418 (
"Time" text,
"Wind" text,
"Athlete" text,
"Nationality" text,
"Location of race" text,
"Date" text
)
|
SELECT "Athlete" FROM table_79418 WHERE "Wind" LIKE '%1.8%'
|
when was the first year of rugby of the terrapins ?
|
CREATE TABLE table_204_442 (
id number,
"institution" text,
"location" text,
"enrollment" number,
"nickname" text,
"varsity\nsports" number,
"rugby\nsince" text,
"head coach" text
)
|
SELECT "rugby\nsince" FROM table_204_442 WHERE "nickname" LIKE '%terrapins%'
|
In what Year is Keith Smith's Cross Code Debut RL Test v Wales?
|
CREATE TABLE table_64940 (
"Player" text,
"Int'l Debut" text,
"Year" text,
"Cross Code Debut" text,
"Date" text
)
|
SELECT "Year" FROM table_64940 WHERE "Cross Code Debut" LIKE '%rl test v wales%' AND "Player" LIKE '%keith smith%'
|
what has been the last song this artist has made an other appearance on ?
|
CREATE TABLE table_204_643 (
id number,
"release" number,
"artist" text,
"title" text,
"notes" text,
"album" text
)
|
SELECT "title" FROM table_204_643 ORDER BY id DESC LIMIT 1
|
What is the sum of the weeks on a chart a song with a position less than 1 haas?
|
CREATE TABLE table_name_92 (
weeks_on_chart INTEGER,
position INTEGER
)
|
SELECT SUM(weeks_on_chart) FROM table_name_92 WHERE position < 1
|
what is the affiliation of the hilltoppers mascot?
|
CREATE TABLE table_20887670_1 (
affiliation VARCHAR,
mascot VARCHAR
)
|
SELECT affiliation FROM table_20887670_1 WHERE mascot LIKE "%hilltoppers%"
|
Which Home team has a Home team score of 7.8 (50)?
|
CREATE TABLE table_10213 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
)
|
SELECT "Home team" FROM table_10213 WHERE "Home team score" LIKE '%7.8 (50)%'
|
Which democratic incumbent is from the district of ohio 7?
|
CREATE TABLE table_name_93 (
incumbent VARCHAR,
party VARCHAR,
district VARCHAR
)
|
SELECT incumbent FROM table_name_93 WHERE party LIKE "%democratic%" AND district LIKE "%ohio 7%"
|
When ihaia tainui is the incumbent what is the date?
|
CREATE TABLE table_28898948_3 (
date VARCHAR,
incumbent VARCHAR
)
|
SELECT date FROM table_28898948_3 WHERE incumbent LIKE "%ihaia tainui%"
|
Name the transfer window of realmadrid
|
CREATE TABLE table_name_12 (
transfer_window VARCHAR,
moving_to VARCHAR
)
|
SELECT transfer_window FROM table_name_12 WHERE moving_to LIKE '%realmadrid%'
|
Which pick number resulted in a defensive end?
|
CREATE TABLE table_name_34 (
pick VARCHAR,
position VARCHAR
)
|
SELECT pick FROM table_name_34 WHERE position LIKE "%defensive end%"
|
Where was the game where the senators scored 80 points?
|
CREATE TABLE table_50508 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Location" text,
"Attendance" real,
"Record" text,
"Points" real
)
|
SELECT "Location" FROM table_50508 WHERE "Points" = 80
|
What is the Finish of 28 Wins?
|
CREATE TABLE table_name_49 (
finish VARCHAR,
wins VARCHAR
)
|
SELECT finish FROM table_name_49 WHERE wins LIKE "%28%"
|
What is the Population of the nation that has an Area (km ) of 70,273?
|
CREATE TABLE table_name_31 (
population VARCHAR,
area__km²_ VARCHAR
)
|
SELECT population FROM table_name_31 WHERE area__km²_ LIKE "%70,273%"
|
Who is the 92.5 with the press of 282.5?
|
CREATE TABLE table_name_26 (
press VARCHAR
)
|
SELECT 925 FROM table_name_26 WHERE press LIKE "%282.5%"
|
What was the aggregate score that had Union Douala as Team 1?
|
CREATE TABLE table_70498 (
"Team 1" text,
"Agg." text,
"Team 2" text,
"1st leg" text,
"2nd leg" text
)
|
SELECT "Agg." FROM table_70498 WHERE "Team 1" LIKE '%union douala%'
|
What shows for ICAO when the IATA is sin?
|
CREATE TABLE table_40046 (
"City" text,
"Country" text,
"IATA" text,
"ICAO" text,
"Airport" text
)
|
SELECT "ICAO" FROM table_40046 WHERE "IATA" LIKE '%sin%'
|
Name the total number of popular votes for mn attorney general in 1994
|
CREATE TABLE table_name_74 (
popular_votes VARCHAR,
office VARCHAR,
year VARCHAR
)
|
SELECT COUNT(popular_votes) FROM table_name_74 WHERE office LIKE "%mn attorney general%" AND year = '1994'
|
How many games did Robert Peare play?
|
CREATE TABLE table_28693349_2 (
games INTEGER,
player VARCHAR
)
|
SELECT MAX(games) FROM table_28693349_2 WHERE player LIKE "%robert peare%"
|
What Tournament was the 2010 Olympic Games?
|
CREATE TABLE table_name_58 (
tournament VARCHAR
)
|
SELECT tournament FROM table_name_58 WHERE "2010" LIKE '%olympic games%'
|
When the home team was geelong, who played as the away team?
|
CREATE TABLE table_name_80 (
away_team VARCHAR,
home_team VARCHAR
)
|
SELECT away_team FROM table_name_80 WHERE home_team LIKE "%geelong%"
|
Where did the artist All Mixed Up place?
|
CREATE TABLE table_12082 (
"Draw" real,
"Artist" text,
"Song" text,
"Points" real,
"Place" real
)
|
SELECT MIN("Place") FROM table_12082 WHERE "Artist" LIKE '%all mixed up%'
|
Who had the most points in the game on November 12?
|
CREATE TABLE table_46393 (
"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_46393 WHERE "Date" LIKE '%november 12%'
|
David James Elliott directed which episode number within the series?
|
CREATE TABLE table_228973_11 (
no_in_series VARCHAR,
directed_by VARCHAR
)
|
SELECT no_in_series FROM table_228973_11 WHERE directed_by LIKE "%david james elliott%"
|
What week did the Galaxy play the Amsterdam Admirals?
|
CREATE TABLE table_24814477_2 (
week VARCHAR,
opponent VARCHAR
)
|
SELECT week FROM table_24814477_2 WHERE opponent LIKE "%amsterdam admirals%"
|
What is the sum of Rank, when Assists is '82'?
|
CREATE TABLE table_name_21 (
rank INTEGER,
assists VARCHAR
)
|
SELECT SUM(rank) FROM table_name_21 WHERE assists LIKE '%82%'
|
Who is the player with an average of 35.42?
|
CREATE TABLE table_28846752_13 (
player VARCHAR,
average VARCHAR
)
|
SELECT player FROM table_28846752_13 WHERE average LIKE "%35.42%"
|
what's the competition where aggregate is 4 7
|
CREATE TABLE table_1061075_1 (
competition VARCHAR,
aggregate VARCHAR
)
|
SELECT competition FROM table_1061075_1 WHERE aggregate LIKE "%4–7%"
|
How much Total has a Silver smaller than 0?
|
CREATE TABLE table_name_38 (
total VARCHAR,
silver INTEGER
)
|
SELECT COUNT(total) FROM table_name_38 WHERE silver < 0
|
What is the record of the match on 2009-07-18?
|
CREATE TABLE table_67650 (
"Res." text,
"Record" text,
"Opponent" text,
"Type" text,
"Rd., Time" text,
"Date" text
)
|
SELECT "Record" FROM table_67650 WHERE "Date" LIKE '%2009-07-18%'
|
who was the last opponent on the list , chronologically ?
|
CREATE TABLE table_204_376 (
id number,
"date" text,
"venue" text,
"opponents" text,
"score" text,
"competition" text
)
|
SELECT "opponents" FROM table_204_376 ORDER BY "date" DESC LIMIT 1
|
Tell me the sum of rank for placings of 58
|
CREATE TABLE table_57157 (
"Rank" real,
"Name" text,
"Nation" text,
"Points" real,
"Placings" real
)
|
SELECT SUM("Rank") FROM table_57157 WHERE "Placings" = 58
|
How many candidates won the election of john n. sandlin?
|
CREATE TABLE table_18718 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Result" text,
"Candidates" text
)
|
SELECT COUNT("Candidates") FROM table_18718 WHERE "Incumbent" LIKE '%john n. sandlin%'
|
What is the name when weight shows head coach: Aleksandr Kabanov?
|
CREATE TABLE table_59131 (
"Name" text,
"Pos." text,
"Height" text,
"Weight" text,
"Date of Birth" text,
"Club" text
)
|
SELECT "Name" FROM table_59131 WHERE "Weight" LIKE '%head coach: aleksandr kabanov%'
|
What role was played in 2007?
|
CREATE TABLE table_name_37 (
role VARCHAR,
year VARCHAR
)
|
SELECT role FROM table_name_37 WHERE year LIKE '%2007%'
|
How many Apps did Player Gilberto with more than 1 Goals have?
|
CREATE TABLE table_name_64 (
apps INTEGER,
player VARCHAR,
goals VARCHAR
)
|
SELECT AVG(apps) FROM table_name_64 WHERE player LIKE "%gilberto%" AND goals > 1
|
What is the playoffs Game number on April 26?
|
CREATE TABLE table_name_94 (
game VARCHAR,
date VARCHAR
)
|
SELECT game FROM table_name_94 WHERE date LIKE "%april 26%"
|
When has a Score of 6 3, 6 4?
|
CREATE TABLE table_5788 (
"Date" text,
"Tournament" text,
"Surface" text,
"Partnering" text,
"Opponents in the final" text,
"Score" text
)
|
SELECT "Date" FROM table_5788 WHERE "Score" LIKE '%6–3, 6–4%'
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.