question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
What is the status of the fleet that was commissioned on July 28, 1963?
|
CREATE TABLE table_name_9 (
status VARCHAR,
commissioned VARCHAR
)
|
SELECT status FROM table_name_9 WHERE commissioned LIKE '%july 28, 1963%'
|
What is the mean pick when the play is Marc Lewis (lhp) and the round is less than 20?
|
CREATE TABLE table_name_76 (
pick INTEGER,
player VARCHAR,
round VARCHAR
)
|
SELECT AVG(pick) FROM table_name_76 WHERE player LIKE "%marc lewis (lhp)%" AND round < 20
|
Which label released the catalog Magik Muzik CD 07 on 28 March 2007?
|
CREATE TABLE table_name_86 (
label VARCHAR,
date VARCHAR,
catalog VARCHAR
)
|
SELECT label FROM table_name_86 WHERE date LIKE "%28 march 2007%" AND catalog LIKE "%magik muzik cd 07%"
|
How many laps did BRM have with a grid of 11?
|
CREATE TABLE table_name_33 (
laps VARCHAR,
constructor VARCHAR,
grid VARCHAR
)
|
SELECT COUNT(laps) FROM table_name_33 WHERE constructor LIKE "%brm%" AND grid = "11"
|
On what day was the record set at the 2002 Salt Lake City games with a time of 3:57.70?
|
CREATE TABLE table_name_49 (
date VARCHAR,
games VARCHAR,
time VARCHAR
)
|
SELECT date FROM table_name_49 WHERE games LIKE "%2002 salt lake city%" AND time LIKE "%3:57.70%"
|
What Event's Time is 4:01.00?
|
CREATE TABLE table_67971 (
"Event" text,
"Time" text,
"Nationality" text,
"Date" text,
"Meet" text,
"Location" text
)
|
SELECT "Event" FROM table_67971 WHERE "Time" LIKE '%4:01.00%'
|
What year was incumbent jim mcdermott first elected?
|
CREATE TABLE table_72369 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Status" text,
"Opponent" text
)
|
SELECT MIN("First elected") FROM table_72369 WHERE "Incumbent" LIKE '%jim mcdermott%'
|
What are the dates that Falling Angel aired?
|
CREATE TABLE table_28803803_1 (
date VARCHAR,
name VARCHAR
)
|
SELECT date FROM table_28803803_1 WHERE name LIKE "%falling angel%"
|
Which inhabitants have 2009 as the election, with cremona as the municipality?
|
CREATE TABLE table_13089 (
"Municipality" text,
"Inhabitants" real,
"Mayor" text,
"Party" text,
"Election" real
)
|
SELECT "Inhabitants" FROM table_13089 WHERE "Election" = 2009 AND "Municipality" LIKE '%cremona%'
|
How much does number 26 weigh?
|
CREATE TABLE table_name_31 (
weight VARCHAR,
number VARCHAR
)
|
SELECT weight FROM table_name_31 WHERE number LIKE "%26%"
|
Name the least matches for year 2008
|
CREATE TABLE table_15829930_5 (
matches INTEGER,
year VARCHAR
)
|
SELECT MIN(matches) FROM table_15829930_5 WHERE year LIKE '%2008%'
|
What is the title for episode number 7 in the season?
|
CREATE TABLE table_15431251_1 (
title VARCHAR,
no_in_season VARCHAR
)
|
SELECT COUNT(title) FROM table_15431251_1 WHERE no_in_season LIKE '%7%'
|
What was the score when the opponent was Dominika Cibulkov ?
|
CREATE TABLE table_72981 (
"Outcome" text,
"Edition" real,
"Round" text,
"Opponent Team" text,
"Surface" text,
"Opponent" text,
"Score" text
)
|
SELECT "Score" FROM table_72981 WHERE "Opponent" LIKE '%dominika cibulková%'
|
what is the italian word for the french word 'mer
|
CREATE TABLE table_name_37 (
italian VARCHAR,
french VARCHAR
)
|
SELECT italian FROM table_name_37 WHERE french LIKE "%mer%"
|
What is the home team score that played away team carlton?
|
CREATE TABLE table_name_60 (
home_team VARCHAR,
away_team VARCHAR
)
|
SELECT home_team AS score FROM table_name_60 WHERE away_team LIKE "%carlton%"
|
Tell me the constructor for grid of 17
|
CREATE TABLE table_name_9 (
constructor VARCHAR,
grid VARCHAR
)
|
SELECT constructor FROM table_name_9 WHERE grid LIKE '%17%'
|
Which FCC info has an ERP W of 100 watts?
|
CREATE TABLE table_75667 (
"Call sign" text,
"Frequency MHz" text,
"City of license" text,
"ERP W" text,
"FCC info" text
)
|
SELECT "FCC info" FROM table_75667 WHERE "ERP W" LIKE '%100 watts%'
|
what is the most draw when the competition is soviet league and dynamo is more than 34?
|
CREATE TABLE table_name_19 (
draw INTEGER,
competition VARCHAR,
dynamo VARCHAR
)
|
SELECT MAX(draw) FROM table_name_19 WHERE competition LIKE "%soviet league%" AND dynamo > 34
|
COunt the Founded which has a Venue of villa park?
|
CREATE TABLE table_8187 (
"Club" text,
"Sport" text,
"Founded" real,
"League" text,
"Venue" text
)
|
SELECT SUM("Founded") FROM table_8187 WHERE "Venue" LIKE '%villa park%'
|
In Ghent in 2011, what was the rank-qualifying value when the score-qualifying value was 14.850
|
CREATE TABLE table_26681728_1 (
rank_qualifying INTEGER,
score_qualifying VARCHAR,
location VARCHAR,
year VARCHAR
)
|
SELECT MAX(rank_qualifying) FROM table_26681728_1 WHERE location LIKE '%ghent%' AND year LIKE '%2011%' AND score_qualifying LIKE '%14.850%'
|
Which Game is the highest one that has High rebounds of pau gasol (11)?
|
CREATE TABLE table_name_12 (
game INTEGER,
high_rebounds VARCHAR
)
|
SELECT MAX(game) FROM table_name_12 WHERE lower(high_rebounds) LIKE "%pau gasol (11)%"
|
Which Rank has a Silver of 1, and a Gold of 0, and a Nation of austria?
|
CREATE TABLE table_65989 (
"Rank" text,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
)
|
SELECT "Rank" FROM table_65989 WHERE "Silver" = 1 AND "Gold" = 0 AND "Nation" LIKE '%austria%'
|
What is the highest amount of points for rank 95?
|
CREATE TABLE table_name_49 (
highest_point VARCHAR,
rank VARCHAR
)
|
SELECT highest_point FROM table_name_49 WHERE rank LIKE '%95%'
|
What is the average Wins, when Points is less than '19'?
|
CREATE TABLE table_name_32 (
wins INTEGER,
points INTEGER
)
|
SELECT AVG(wins) FROM table_name_32 WHERE points < 19
|
What was Barreto's song choice when the theme was samba?
|
CREATE TABLE table_27614571_1 (
song_choice VARCHAR,
theme VARCHAR
)
|
SELECT song_choice FROM table_27614571_1 WHERE theme LIKE "%samba%"
|
What place has the score of 67-74=141?
|
CREATE TABLE table_name_2 (
place VARCHAR,
score VARCHAR
)
|
SELECT place FROM table_name_2 WHERE score = '-7'
|
What year was USF founded?
|
CREATE TABLE table_1160660_1 (
date_founded VARCHAR,
acronym VARCHAR
)
|
SELECT date_founded FROM table_1160660_1 WHERE acronym LIKE '%usf%'
|
For week number of the top 40, what was the results?
|
CREATE TABLE table_22736523_1 (
result VARCHAR,
week__number VARCHAR
)
|
SELECT result FROM table_22736523_1 WHERE week__number LIKE "%top 40%"
|
What was the losing bonus that had 1 draw and a 10 try bonus?
|
CREATE TABLE table_name_51 (
losing_bonus VARCHAR,
drawn VARCHAR,
try_bonus VARCHAR
)
|
SELECT losing_bonus FROM table_name_51 WHERE drawn LIKE '%1%' AND try_bonus LIKE '%10%'
|
How many finals had more than 0 goals and 8 assists?
|
CREATE TABLE table_63272 (
"Name" text,
"Games" text,
"A-League" text,
"Finals" text,
"Goals" real,
"Assists" real,
"Years" text
)
|
SELECT "Finals" FROM table_63272 WHERE "Goals" > 0 AND "Assists" = 8
|
What was the number of fatalities for the Viscount 700?
|
CREATE TABLE table_name_71 (
fatalities VARCHAR,
aircraft VARCHAR
)
|
SELECT fatalities FROM table_name_71 WHERE aircraft LIKE "%viscount 700%"
|
What year and where was the tournament when fan ying won the womens singles?
|
CREATE TABLE table_28138035_26 (
year_location VARCHAR,
womens_singles VARCHAR
)
|
SELECT year_location FROM table_28138035_26 WHERE womens_singles LIKE "%fan ying%"
|
What is the lowest number of points of the team with 2 losses and a lower than 1 position?
|
CREATE TABLE table_name_73 (
points INTEGER,
losses VARCHAR,
position VARCHAR
)
|
SELECT MIN(points) FROM table_name_73 WHERE losses LIKE '%2%' AND position > '1'
|
What is the lowest attendance for a stadium that has an average smaller than 307?
|
CREATE TABLE table_name_24 (
lowest INTEGER,
average INTEGER
)
|
SELECT AVG(lowest) FROM table_name_24 WHERE average < 307
|
When are all years that the champion is Ji Min Jeong?
|
CREATE TABLE table_15315816_1 (
year VARCHAR,
champion VARCHAR
)
|
SELECT year FROM table_15315816_1 WHERE champion LIKE "%ji min jeong%"
|
What is the date where the result was L 27-10 in a week before week 9?
|
CREATE TABLE table_name_94 (
date VARCHAR,
week VARCHAR,
result VARCHAR
)
|
SELECT date FROM table_name_94 WHERE week < '9' AND result LIKE '%l 27-10%'
|
What was the type of sussex?
|
CREATE TABLE table_357 (
"L&CR No." real,
"Type" text,
"Manufacturer" text,
"Delivered" text,
"Name" text,
"Jt. Cttee No." real,
"1845 disposal" text
)
|
SELECT "Type" FROM table_357 WHERE "Name" LIKE '%sussex%'
|
What was the result when incumbent Tom Steed was elected?
|
CREATE TABLE table_1342198_36 (
result VARCHAR,
incumbent VARCHAR
)
|
SELECT result FROM table_1342198_36 WHERE incumbent LIKE "%tom steed%"
|
what is the home city for the stadion src mladost?
|
CREATE TABLE table_44912 (
"Team" text,
"Manager" text,
"Home city" text,
"Stadium" text,
"Capacity" real
)
|
SELECT "Home city" FROM table_44912 WHERE "Stadium" LIKE '%stadion src mladost%'
|
What is the average number of cuts made in events with fewer than 1 win and exactly 11 top-10s?
|
CREATE TABLE table_name_93 (
cuts_made INTEGER,
top_10 VARCHAR,
wins VARCHAR
)
|
SELECT AVG(cuts_made) FROM table_name_93 WHERE top_10 LIKE '%11%' AND wins LIKE '%< 1%'
|
What shirt No has a Birth Date of April 12, 1986 (age27)?
|
CREATE TABLE table_name_63 (
shirt_no INTEGER,
birth_date VARCHAR
)
|
SELECT MIN(shirt_no) FROM table_name_63 WHERE birth_date LIKE "%april 12, 1986 (age27)%"
|
What country is ranked 79?
|
CREATE TABLE table_name_19 (
country VARCHAR,
rank VARCHAR
)
|
SELECT country FROM table_name_19 WHERE rank LIKE '%79%'
|
March of 29 involves what highest scoring game?
|
CREATE TABLE table_name_40 (
game INTEGER,
march VARCHAR
)
|
SELECT MAX(game) FROM table_name_40 WHERE march LIKE '%29%'
|
Who directed episode 266 in the series?
|
CREATE TABLE table_2221484_2 (
directed_by VARCHAR,
series__number VARCHAR
)
|
SELECT directed_by FROM table_2221484_2 WHERE series__number LIKE '%266%'
|
Which Cover Model was featured on 8-03?
|
CREATE TABLE table_name_8 (
cover_model VARCHAR,
date VARCHAR
)
|
SELECT cover_model FROM table_name_8 WHERE date LIKE "%8-03%"
|
What's the sum of Top-10 that has Events that's larger than 16, and has a Top-5 that's also larger than 5?
|
CREATE TABLE table_name_87 (
top_10 VARCHAR,
events VARCHAR,
top_5 VARCHAR
)
|
SELECT COUNT(top_10) FROM table_name_87 WHERE events > 16 AND top_5 > 5
|
Name the verb meaning for half drosch
|
CREATE TABLE table_1745843_9 (
verb_meaning VARCHAR,
part_2 VARCHAR
)
|
SELECT verb_meaning FROM table_1745843_9 WHERE part_2 LIKE "%half drosch%"
|
Who was the team when the category is field goal percentage?
|
CREATE TABLE table_28628309_6 (
team VARCHAR,
category VARCHAR
)
|
SELECT team FROM table_28628309_6 WHERE category LIKE "%field goal percentage%"
|
Which Opponent has Attendances of 60,594?
|
CREATE TABLE table_name_34 (
opponent VARCHAR,
attendance VARCHAR
)
|
SELECT opponent FROM table_name_34 WHERE attendance LIKE "%60,594%"
|
Who is the lead for the team with Nkeiruka Ezekh as second?
|
CREATE TABLE table_name_59 (
lead VARCHAR,
second VARCHAR
)
|
SELECT lead FROM table_name_59 WHERE second LIKE "%nkeiruka ezekh%"
|
who is the first loser listed on this chart ?
|
CREATE TABLE table_204_373 (
id number,
"wager" text,
"winner" text,
"loser" text,
"location" text,
"date" text
)
|
SELECT "loser" FROM table_204_373 WHERE id = 1
|
On what date was the crowd size of 71,789?
|
CREATE TABLE table_name_35 (
date VARCHAR,
attendance VARCHAR
)
|
SELECT date FROM table_name_35 WHERE attendance LIKE "%71,789%"
|
What is the lowest number of silver medals with a rank of 4 and total medals greater than 1?
|
CREATE TABLE table_name_68 (
silver INTEGER,
rank VARCHAR,
total VARCHAR
)
|
SELECT MIN(silver) FROM table_name_68 WHERE rank LIKE '%4%' AND total > '1'
|
Who wrote when the original airdate is April 5, 1987?
|
CREATE TABLE table_24864 (
"No. in series" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Original air date" text,
"Production code" text
)
|
SELECT "Written by" FROM table_24864 WHERE "Original air date" LIKE '%april 5, 1987%'
|
Tell me the score of misa eguchi eri hozumi
|
CREATE TABLE table_name_62 (
score VARCHAR,
opponents VARCHAR
)
|
SELECT score FROM table_name_62 WHERE opponents LIKE "%misa eguchi eri hozumi%"
|
What to par has t3 as the place and england as the country?
|
CREATE TABLE table_name_96 (
to_par VARCHAR,
place VARCHAR,
country VARCHAR
)
|
SELECT to_par FROM table_name_96 WHERE place LIKE "%t3%" AND country LIKE "%england%"
|
What is the Team in Game 38?
|
CREATE TABLE table_name_46 (
team VARCHAR,
game VARCHAR
)
|
SELECT team FROM table_name_46 WHERE game LIKE '%38%'
|
What date is aston villa away?
|
CREATE TABLE table_43536 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
)
|
SELECT "Date" FROM table_43536 WHERE "Away team" LIKE '%aston villa%'
|
What is the attendance that has a record of 43-28?
|
CREATE TABLE table_name_86 (
attendance VARCHAR,
record VARCHAR
)
|
SELECT attendance FROM table_name_86 WHERE record LIKE "%43-28%"
|
What is the most points that the Maserati 250F chassis scored in years after 1955?
|
CREATE TABLE table_70779 (
"Year" real,
"Entrant" text,
"Chassis" text,
"Engine" text,
"Points" real
)
|
SELECT MAX("Points") FROM table_70779 WHERE "Chassis" LIKE '%maserati 250f%' AND "Year" > '1955'
|
Tell me what the notes are for South Australia
|
CREATE TABLE table_1000181_1 (
notes VARCHAR,
current_slogan VARCHAR
)
|
SELECT notes FROM table_1000181_1 WHERE current_slogan LIKE '%south australia%'
|
What is the latest year when Call of Duty 4: Modern Warfare was the game?
|
CREATE TABLE table_name_63 (
year INTEGER,
game VARCHAR
)
|
SELECT MAX(year) FROM table_name_63 WHERE game LIKE "%call of duty 4: modern warfare%"
|
In what year saw a total distance of 1,870.23 km?
|
CREATE TABLE table_name_52 (
year VARCHAR,
distance VARCHAR
)
|
SELECT year FROM table_name_52 WHERE distance LIKE '%1,870.23 km%'
|
Name the ship with hull number of aor-6
|
CREATE TABLE table_37185 (
"Ship" text,
"Hull No." text,
"Builder" text,
"Home Port" text,
"Commissioned\u2013 Decommissioned" text,
"NVR page" text
)
|
SELECT "Ship" FROM table_37185 WHERE "Hull No." LIKE '%aor-6%'
|
Which country has a finish of t22?
|
CREATE TABLE table_name_87 (
country VARCHAR,
finish VARCHAR
)
|
SELECT country FROM table_name_87 WHERE finish LIKE "%t22%"
|
Name the name of the state
|
CREATE TABLE table_15463188_7 (
name VARCHAR,
school_club_team VARCHAR
)
|
SELECT name FROM table_15463188_7 WHERE school_club_team LIKE '%state%'
|
What was the result of the game after week 6 against the cleveland browns?
|
CREATE TABLE table_8614 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Record" text,
"Attendance" text
)
|
SELECT "Result" FROM table_8614 WHERE "Week" < 6 AND "Opponent" LIKE '%cleveland browns%'
|
Find the accreditation level that more than 3 phones use.
|
CREATE TABLE phone (
Accreditation_level VARCHAR
)
|
SELECT Accreditation_level FROM phone GROUP BY Accreditation_level HAVING COUNT(*) > 3
|
such as are entire the rating of closing where championship is moscow
|
CREATE TABLE table_23197088_4 (
score_in_final VARCHAR,
championship VARCHAR
)
|
SELECT score_in_final FROM table_23197088_4 WHERE championship LIKE '%moscow%'
|
What is the Name of the Multiple Type museum in Anchorage?
|
CREATE TABLE table_name_54 (
name VARCHAR,
town_city VARCHAR,
type VARCHAR
)
|
SELECT name FROM table_name_54 WHERE town_city LIKE "%anchorage%" AND type LIKE "%multiple%"
|
What chassis did Gordon Johncock use with his cosworth engine?
|
CREATE TABLE table_4606 (
"Team" text,
"Chassis" text,
"Engine" text,
"Tires" text,
"Drivers" text
)
|
SELECT "Chassis" FROM table_4606 WHERE "Engine" LIKE '%cosworth%' AND "Drivers" LIKE '%gordon johncock%'
|
How many Gold medals did Great Britain with a Total of more than 2 medals receive?
|
CREATE TABLE table_43387 (
"Rank" real,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
)
|
SELECT MIN("Gold") FROM table_43387 WHERE "Nation" LIKE '%great britain%' AND "Total" > 2
|
What was the score when the home team was Stockport County?
|
CREATE TABLE table_47602 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
)
|
SELECT "Score" FROM table_47602 WHERE "Home team" LIKE '%stockport county%'
|
What was Carlton's score when they were the away team?
|
CREATE TABLE table_33047 (
"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_33047 WHERE "Away team" LIKE '%carlton%'
|
How many centerfold models were there when the cover model was Torrie Wilson?
|
CREATE TABLE table_1566852_4 (
centerfold_model VARCHAR,
cover_model VARCHAR
)
|
SELECT COUNT(centerfold_model) FROM table_1566852_4 WHERE cover_model LIKE "%torrie wilson%"
|
What position did the player from Rice College play who was picked under 15?
|
CREATE TABLE table_name_24 (
position VARCHAR,
pick VARCHAR,
college VARCHAR
)
|
SELECT position FROM table_name_24 WHERE pick < 15 AND college LIKE "%rice%"
|
Name the number of party with the incubent james william trimble
|
CREATE TABLE table_1341930_5 (
party VARCHAR,
incumbent VARCHAR
)
|
SELECT COUNT(party) FROM table_1341930_5 WHERE incumbent LIKE "%james william trimble%"
|
Which chassis had 16 points?
|
CREATE TABLE table_15327 (
"Year" real,
"Entrant" text,
"Chassis" text,
"Engine" text,
"Tyres" text,
"Points" real
)
|
SELECT "Chassis" FROM table_15327 WHERE "Points" = 16
|
What is the name of episode # 10a?
|
CREATE TABLE table_2701851_2 (
title VARCHAR,
no_in_series VARCHAR
)
|
SELECT title FROM table_2701851_2 WHERE no_in_series LIKE "%10a%"
|
What was the attendance at the week 2 game?
|
CREATE TABLE table_name_89 (
attendance VARCHAR,
week VARCHAR
)
|
SELECT attendance FROM table_name_89 WHERE week LIKE '%2%'
|
What is the score in the final with runner-up as the outcome and hard (i) as the surface?
|
CREATE TABLE table_71205 (
"Outcome" text,
"Date" text,
"Surface" text,
"Opponent in the final" text,
"Score in the final" text
)
|
SELECT "Score in the final" FROM table_71205 WHERE "Outcome" LIKE '%runner-up%' AND "Surface" LIKE '%hard (i)%'
|
What is the cyrillic name when the settlement is a anja?
|
CREATE TABLE table_2562572_52 (
cyrillic_name VARCHAR,
settlement VARCHAR
)
|
SELECT cyrillic_name FROM table_2562572_52 WHERE settlement LIKE '%ašanja%'
|
What league does Delaware Military Academy belong to
|
CREATE TABLE table_15475116_1 (
league VARCHAR,
school VARCHAR
)
|
SELECT league FROM table_15475116_1 WHERE school LIKE "%delaware military academy%"
|
What is the highest heat for Ihor Bodrov when the mark is 6.76 and the lane is less than 1?
|
CREATE TABLE table_7519 (
"Heat" real,
"Lane" real,
"Name" text,
"Country" text,
"Mark" text
)
|
SELECT MAX("Heat") FROM table_7519 WHERE "Mark" LIKE '%6.76%' AND "Name" LIKE '%ihor bodrov%' AND "Lane" < 1
|
what title came directly after this morning ?
|
CREATE TABLE table_204_208 (
id number,
"year" text,
"title" text,
"role" text,
"episodes" text
)
|
SELECT "title" FROM table_204_208 WHERE id = (SELECT id FROM table_204_208 WHERE "title" LIKE '%this morning%') + 1
|
What is the smallest number of extra points?
|
CREATE TABLE table_3283 (
"Player" text,
"Position" text,
"Starter" text,
"Touchdowns" real,
"Extra points" real,
"Field goals" real,
"Points" real
)
|
SELECT MIN("Extra points") FROM table_3283
|
Who did the Blue Jays lose to on July 16?
|
CREATE TABLE table_14606 (
"Date" text,
"Opponent" text,
"Score" text,
"Loss" text,
"Record" text
)
|
SELECT "Loss" FROM table_14606 WHERE "Date" LIKE '%july 16%'
|
What date did the episode with a production code of 3x6316 originally air?
|
CREATE TABLE table_28116528_1 (
original_air_date VARCHAR,
production_code VARCHAR
)
|
SELECT original_air_date FROM table_28116528_1 WHERE production_code LIKE '%3x6316%'
|
unable to swallow uncrushed oral medication in capsule form
|
CREATE TABLE table_train_78 (
"id" int,
"mini_mental_state_examination_mmse" int,
"consent" bool,
"swallow_oral_medication" bool,
"rosen_modified_hachinski_ischemic_score" int,
"NOUSE" float
)
|
SELECT * FROM table_train_78 WHERE swallow_oral_medication = 0
|
Count the Rank-Final which has a Year larger than 2008, and an Apparatus of balance beam, and a Rank-Qualifying larger than 4?
|
CREATE TABLE table_63827 (
"Year" real,
"Competition Description" text,
"Location" text,
"Apparatus" text,
"Rank-Final" real,
"Score-Final" real,
"Rank-Qualifying" real,
"Score-Qualifying" real
)
|
SELECT COUNT("Rank-Final") FROM table_63827 WHERE "Year" > 2008 AND "Apparatus" LIKE '%balance beam%' AND "Rank-Qualifying" > 4
|
What is the average number of rounds when fighting against Clay Guida?
|
CREATE TABLE table_name_54 (
round INTEGER,
opponent VARCHAR
)
|
SELECT AVG(round) FROM table_name_54 WHERE opponent LIKE "%clay guida%"
|
What was the Attendance in Week 10?
|
CREATE TABLE table_name_59 (
attendance VARCHAR,
week VARCHAR
)
|
SELECT attendance FROM table_name_59 WHERE week LIKE '%10%'
|
What is the Opponents on a clay surface with christophe rochus as partner?
|
CREATE TABLE table_42722 (
"Outcome" text,
"Date" text,
"Surface" text,
"Partner" text,
"Opponents" text,
"Score" text
)
|
SELECT "Opponents" FROM table_42722 WHERE "Surface" LIKE '%clay%' AND "Partner" LIKE '%christophe rochus%'
|
What was the lead margin when Nixon had 48% and reporting was done by Rasmussen Reports?
|
CREATE TABLE table_51069 (
"Poll Source" text,
"Dates administered" text,
"Democrat: Jay Nixon" text,
"Republican: Kenny Hulshof" text,
"Lead Margin" real
)
|
SELECT COUNT("Lead Margin") FROM table_51069 WHERE "Democrat: Jay Nixon" LIKE '%48%%' AND "Poll Source" LIKE '%rasmussen reports%'
|
How many total Silver has a Bronze larger than 19 and a Total smaller than 125?
|
CREATE TABLE table_55759 (
"Sport" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
)
|
SELECT SUM("Silver") FROM table_55759 WHERE "Bronze" > 19 AND "Total" < 125
|
Which Venue has Against smaller than 6?
|
CREATE TABLE table_62536 (
"Opposing Teams" text,
"Against" real,
"Date" text,
"Venue" text,
"Status" text
)
|
SELECT "Venue" FROM table_62536 WHERE "Against" < 6
|
what's the first operational with programming being not programmable single purpose
|
CREATE TABLE table_13636_1 (
first_operational VARCHAR,
programming VARCHAR
)
|
SELECT first_operational FROM table_13636_1 WHERE programming LIKE "%not programmable—single purpose%"
|
What is the name of the building that was the tallest from 1990 1997 in Frankfurt?
|
CREATE TABLE table_name_78 (
name VARCHAR,
city VARCHAR,
years_as_tallest VARCHAR
)
|
SELECT name FROM table_name_78 WHERE city LIKE "%frankfurt%" AND years_as_tallest LIKE "%1990–1997%"
|
What notes did the creature comforts film have?
|
CREATE TABLE table_35179 (
"Year" real,
"Title" text,
"Director" text,
"Writer" text,
"Notes" text
)
|
SELECT "Notes" FROM table_35179 WHERE "Title" LIKE '%creature comforts%'
|
Which Bronze has a Nation of austria, and a Total larger than 6?
|
CREATE TABLE table_65988 (
"Rank" text,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
)
|
SELECT MAX("Bronze") FROM table_65988 WHERE "Nation" LIKE '%austria%' AND "Total" > 6
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.