question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
What is the overall number for a pick of #10, from Louisiana Tech, and a round bigger than 3?
|
CREATE TABLE table_name_99 (
overall INTEGER,
round VARCHAR,
pick__number VARCHAR,
college VARCHAR
)
|
SELECT SUM(overall) FROM table_name_99 WHERE pick__number = '10' AND college LIKE '%louisiana tech%' AND round > '3'
|
What is the Date with a Set 1 with 15 1?
|
CREATE TABLE table_52874 (
"Date" text,
"Score" text,
"Set 1" text,
"Set 2" text,
"Set 3" text,
"Total" text
)
|
SELECT "Date" FROM table_52874 WHERE "Set 1" LIKE '%15–1%'
|
What was the average number of starts Michael Henig had in a year when he had more than 1201 yards?
|
CREATE TABLE table_name_54 (
starts INTEGER,
yards INTEGER
)
|
SELECT AVG(starts) FROM table_name_54 WHERE yards > 1201
|
What was their record on week 11?
|
CREATE TABLE table_name_15 (
record VARCHAR,
week VARCHAR
)
|
SELECT record FROM table_name_15 WHERE week LIKE '%11%'
|
Name the lowest Founded with the Name cougars?
|
CREATE TABLE table_name_42 (
founded INTEGER,
nickname VARCHAR
)
|
SELECT MIN(founded) FROM table_name_42 WHERE nickname LIKE "%cougars%"
|
When did the episode first air that had a production code of 102?
|
CREATE TABLE table_18335117_2 (
original_air_date VARCHAR,
production_code VARCHAR
)
|
SELECT original_air_date FROM table_18335117_2 WHERE production_code LIKE '%102%'
|
What December is 8.77 in January
|
CREATE TABLE table_15945862_1 (
december VARCHAR,
january VARCHAR
)
|
SELECT december FROM table_15945862_1 WHERE january LIKE "%8.77%"
|
Where is David Frost from?
|
CREATE TABLE table_50955 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text
)
|
SELECT "Place" FROM table_50955 WHERE "Player" LIKE '%david frost%'
|
What was the report in the race where the winning team was Roush Fenway Racing?
|
CREATE TABLE table_2220432_1 (
report VARCHAR,
team VARCHAR
)
|
SELECT report FROM table_2220432_1 WHERE team LIKE "%roush fenway racing%"
|
Which college is Kellen Davis from?
|
CREATE TABLE table_name_44 (
college VARCHAR,
player VARCHAR
)
|
SELECT college FROM table_name_44 WHERE player LIKE "%kellen davis%"
|
When is the earliest year with a Power of 90kw (121hp) @ 4000?
|
CREATE TABLE table_69441 (
"Engine" text,
"Displacement" text,
"Power" text,
"Torque" text,
"Year" real
)
|
SELECT MIN("Year") FROM table_69441 WHERE "Power" LIKE '%90kw (121hp) @ 4000%'
|
Which Host Team has Final Score of 42-23?
|
CREATE TABLE table_name_86 (
host_team VARCHAR,
final_score VARCHAR
)
|
SELECT host_team FROM table_name_86 WHERE final_score LIKE "%42-23%"
|
Who owns the station with the frequency FM 92.1?
|
CREATE TABLE table_37151 (
"Frequency" text,
"Call sign" text,
"Branding" text,
"Format" text,
"Owner" text
)
|
SELECT "Owner" FROM table_37151 WHERE "Frequency" LIKE '%fm 92.1%'
|
What was the high rebounds for the game that had a score of w 76-66?
|
CREATE TABLE table_name_83 (
high_rebounds VARCHAR,
score VARCHAR
)
|
SELECT high_rebounds FROM table_name_83 WHERE score LIKE "%w 76-66%"
|
What country has chunkath, mohan verghese as the name?
|
CREATE TABLE table_33897 (
"Position" real,
"Name" text,
"Country" text,
"Win-Loss" text,
"Spread" real
)
|
SELECT "Country" FROM table_33897 WHERE "Name" LIKE '%chunkath, mohan verghese%'
|
what was the position number of gail devers ?
|
CREATE TABLE table_203_211 (
id number,
"pos." number,
"time" text,
"athlete" text,
"country" text,
"venue" text,
"date" text
)
|
SELECT "pos." FROM table_203_211 WHERE "athlete" LIKE '%gail devers%'
|
What is the low grid for gerhard berger for laps over 56?
|
CREATE TABLE table_name_18 (
grid INTEGER,
driver VARCHAR,
laps VARCHAR
)
|
SELECT MIN(grid) FROM table_name_18 WHERE driver LIKE "%gerhard berger%" AND laps > 56
|
Name the most legs for steinlager 2
|
CREATE TABLE table_256862_1 (
legs INTEGER,
winning_yacht VARCHAR
)
|
SELECT MAX(legs) FROM table_256862_1 WHERE winning_yacht LIKE "%steinlager 2%"
|
What season began on december 5, 1953?
|
CREATE TABLE table_20316 (
"Series #" real,
"Season #" real,
"Title" text,
"Directed by:" text,
"Written by:" text,
"Original air date" text
)
|
SELECT MAX("Season #") FROM table_20316 WHERE "Original air date" LIKE '%december 5, 1953%'
|
Where did the Home Team score 5.10 (40)?
|
CREATE TABLE table_11269 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Date" text
)
|
SELECT "Venue" FROM table_11269 WHERE "Home team score" LIKE '%5.10 (40)%'
|
What is the number of guns when the superintendent was Silas Talbot?
|
CREATE TABLE table_67148 (
"Ship" text,
"Site" text,
"Guns" real,
"Naval constructor" text,
"Superintendent" text
)
|
SELECT "Guns" FROM table_67148 WHERE "Superintendent" LIKE '%silas talbot%'
|
What is the smallest code associated with a type of m for a region less than 17 named, named saint-sylv re?
|
CREATE TABLE table_name_98 (
code INTEGER,
region VARCHAR,
type VARCHAR,
name VARCHAR
)
|
SELECT MIN(code) FROM table_name_98 WHERE type LIKE "%m%" AND name LIKE "%saint-sylvère%" AND region < 17
|
What stake has realtor for American equity realty as their occupation?
|
CREATE TABLE table_name_98 (
stake VARCHAR,
occupation VARCHAR
)
|
SELECT stake FROM table_name_98 WHERE occupation LIKE "%realtor for american equity realty%"
|
What's the part 3 of the verb whose class is 4?
|
CREATE TABLE table_21709 (
"Class" text,
"Part 1" text,
"Part 2" text,
"Part 3" text,
"Part 4" text,
"Verb meaning" text
)
|
SELECT "Part 3" FROM table_21709 WHERE "Class" LIKE '%4%'
|
what is the least amount in the tournament?
|
CREATE TABLE table_12755786_8 (
league INTEGER
)
|
SELECT MIN(league) AS Cup FROM table_12755786_8
|
What is the to par of player hunter mahan?
|
CREATE TABLE table_13595 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text
)
|
SELECT "To par" FROM table_13595 WHERE "Player" LIKE '%hunter mahan%'
|
What team was the opponent on 1990-10-21?
|
CREATE TABLE table_58512 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Venue" text,
"Attendance" text
)
|
SELECT "Opponent" FROM table_58512 WHERE "Date" LIKE '%1990-10-21%'
|
what place has the club of sevilla
|
CREATE TABLE table_name_76 (
away VARCHAR,
club VARCHAR
)
|
SELECT away FROM table_name_76 WHERE club LIKE "%sevilla%"
|
What's the highest Pl GP with a Reg GP over 18?
|
CREATE TABLE table_name_22 (
pl_gp INTEGER,
reg_gp INTEGER
)
|
SELECT MAX(pl_gp) FROM table_name_22 WHERE reg_gp > 18
|
What was Buck Pierce's highest average when there were less than 2 fumbles?
|
CREATE TABLE table_name_41 (
avg INTEGER,
player VARCHAR,
fumbles VARCHAR
)
|
SELECT MAX(avg) FROM table_name_41 WHERE player LIKE "%buck pierce%" AND fumbles < 2
|
What is the sum of week number(s) had an attendance of 61,985?
|
CREATE TABLE table_name_95 (
week VARCHAR,
attendance VARCHAR
)
|
SELECT COUNT(week) FROM table_name_95 WHERE attendance LIKE '%61%' LIMIT 1 OFFSET 985
|
What is the number of members that have boroughs of Bandon Bridge?
|
CREATE TABLE table_24329520_8 (
members VARCHAR,
borough VARCHAR
)
|
SELECT COUNT(members) FROM table_24329520_8 WHERE borough LIKE "%bandon bridge%"
|
When rank is more than 10, what is the total rate?
|
CREATE TABLE table_63428 (
"Rank" real,
"Player" text,
"Goals" real,
"Apps" real,
"Rate" real
)
|
SELECT SUM("Rate") FROM table_63428 WHERE "Rank" > 10
|
Name the area for north bay village
|
CREATE TABLE table_22916979_5 (
metropolitan_area VARCHAR,
densest_incorporated_place VARCHAR
)
|
SELECT metropolitan_area FROM table_22916979_5 WHERE densest_incorporated_place LIKE "%north bay village%"
|
What date has Vancouver Canucks as the original team, Ryan Kesler as the player, and matched as the Result?
|
CREATE TABLE table_name_26 (
date VARCHAR,
player VARCHAR,
original_team VARCHAR,
result VARCHAR
)
|
SELECT date FROM table_name_26 WHERE original_team LIKE "%vancouver canucks%" AND result LIKE "%matched%" AND player LIKE "%ryan kesler%"
|
How big was the crowd in a game that had a home team score of 15.15 (105)?
|
CREATE TABLE table_57612 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
)
|
SELECT "Crowd" FROM table_57612 WHERE "Home team score" LIKE '%15.15 (105)%'
|
Which tournament had a 2009 result of 1R?
|
CREATE TABLE table_name_77 (
tournament VARCHAR
)
|
SELECT tournament FROM table_name_77 WHERE "2009" LIKE '%1r%'
|
Who was the top goalscorer for season 2001-02?
|
CREATE TABLE table_2429942_2 (
top_goalscorer VARCHAR,
season VARCHAR
)
|
SELECT top_goalscorer FROM table_2429942_2 WHERE season LIKE "%2001-02%"
|
How many people attended the game whose score was 1-1?
|
CREATE TABLE table_46372 (
"Game" real,
"Date" text,
"Opponent" text,
"Result" text,
"Score" text,
"Record" text,
"Streak" text,
"Attendance" real
)
|
SELECT "Attendance" FROM table_46372 WHERE "Record" LIKE '%1-1%'
|
What is Partner Tomas Behrend's Score in the final?
|
CREATE TABLE table_name_48 (
score_in_the_final VARCHAR,
partner VARCHAR
)
|
SELECT score_in_the_final FROM table_name_48 WHERE partner LIKE "%tomas behrend%"
|
What is the average number of wins for the person who coached from 1951 to 1956 and had less than 174 losses and less than 6 ties?
|
CREATE TABLE table_name_70 (
wins INTEGER,
ties VARCHAR,
losses VARCHAR,
years VARCHAR
)
|
SELECT AVG(wins) FROM table_name_70 WHERE CAST(losses AS INTEGER) < 174 AND years LIKE "%1951 to 1956%" AND CAST(ties AS INTEGER) < 6
|
What is the lowest React, when Mark is 46.26 sb, and when Lane is greater than 6?
|
CREATE TABLE table_name_61 (
react INTEGER,
mark VARCHAR,
lane VARCHAR
)
|
SELECT MIN(react) FROM table_name_61 WHERE mark LIKE "%46.26 sb%" AND lane > 6
|
Who wrote the episodes that had a viewership of 7.14?
|
CREATE TABLE table_24910737_1 (
written_by VARCHAR,
us_viewers__millions_ VARCHAR
)
|
SELECT written_by FROM table_24910737_1 WHERE us_viewers__millions_ LIKE "%7.14%"
|
Which Attendance has an Away of real juventud?
|
CREATE TABLE table_9469 (
"Date" text,
"Home" text,
"Score" text,
"Away" text,
"Attendance" real
)
|
SELECT SUM("Attendance") FROM table_9469 WHERE "Away" LIKE '%real juventud%'
|
Which genre aired on 12 feb- 9 mar?
|
CREATE TABLE table_name_27 (
genre VARCHAR,
airing_date VARCHAR
)
|
SELECT genre FROM table_name_27 WHERE airing_date LIKE "%12 feb- 9 mar%"
|
What is the type of station for ESPN International Sports?
|
CREATE TABLE table_name_74 (
type VARCHAR,
name VARCHAR
)
|
SELECT type FROM table_name_74 WHERE name LIKE "%espn international sports%"
|
Where did the episode rank that was written by thomas l. moran?
|
CREATE TABLE table_28026156_1 (
rank__week_ VARCHAR,
written_by VARCHAR
)
|
SELECT rank__week_ FROM table_28026156_1 WHERE written_by LIKE '%thomas l. moran%'
|
What is the lowest Decile for a school with a roll smaller than 3?
|
CREATE TABLE table_name_40 (
decile INTEGER,
roll INTEGER
)
|
SELECT MIN(decile) FROM table_name_40 WHERE roll < 3
|
What selection was the springfield olympics (nejhl)?
|
CREATE TABLE table_2850912_12 (
pick__number INTEGER,
college_junior_club_team VARCHAR
)
|
SELECT MAX(pick__number) FROM table_2850912_12 WHERE college_junior_club_team LIKE "%springfield olympics (nejhl)%"
|
What is the highest evening gown score of the contestant from Tennessee with an interview score larger than 9.36 and an average larger than 9.75 have?
|
CREATE TABLE table_55521 (
"Country" text,
"Interview" real,
"Swimsuit" real,
"Evening Gown" real,
"Average" real
)
|
SELECT MAX("Evening Gown") FROM table_55521 WHERE "Interview" > 9.36 AND "Country" LIKE '%tennessee%' AND "Average" > 9.75
|
Which of the countries showed a score of 71-72=143?
|
CREATE TABLE table_name_8 (
country VARCHAR,
score VARCHAR
)
|
SELECT country FROM table_name_8 WHERE score = '-1'
|
Which Games is the lowest one that has a Number of 98?
|
CREATE TABLE table_name_88 (
games INTEGER,
number VARCHAR
)
|
SELECT MIN(games) AS "↑" FROM table_name_88 WHERE number LIKE '%98%'
|
What college did Francis Bellefroid go to?
|
CREATE TABLE table_30267 (
"Pick #" real,
"CFL Team" text,
"Player" text,
"Position" text,
"College" text
)
|
SELECT "College" FROM table_30267 WHERE "Player" LIKE '%francis bellefroid%'
|
What country has a loan as the type?
|
CREATE TABLE table_name_6 (
country VARCHAR,
type VARCHAR
)
|
SELECT country FROM table_name_6 WHERE type LIKE "%loan%"
|
What venue has 2 as the rank?
|
CREATE TABLE table_35612 (
"Rank" text,
"Margin" text,
"Opponent" text,
"Venue" text,
"Season" text
)
|
SELECT "Venue" FROM table_35612 WHERE "Rank" LIKE '%2%'
|
Who was the bronze medal when the Asian Games were held in Busan?
|
CREATE TABLE table_35916 (
"Year" real,
"Location" text,
"Gold" text,
"Silver" text,
"Bronze" text
)
|
SELECT "Bronze" FROM table_35916 WHERE "Location" LIKE '%busan%'
|
If the time on Wed aug 25 was 20' 09.25 112.324mph, what was the time on sat Aug 28?
|
CREATE TABLE table_26986076_1 (
sat_28_aug VARCHAR,
wed_25_aug VARCHAR
)
|
SELECT sat_28_aug FROM table_26986076_1 WHERE wed_25_aug LIKE "%20' 09.25 112.324mph%"
|
What is the highest wins a tournament with 3 cuts and more than 4 events has?
|
CREATE TABLE table_name_27 (
wins INTEGER,
cuts_made VARCHAR,
events VARCHAR
)
|
SELECT MAX(wins) FROM table_name_27 WHERE cuts_made LIKE '%3%' AND events > 4
|
What was the standing in the season that the pct% was 0.769?
|
CREATE TABLE table_2110959_1 (
standing VARCHAR,
pct__percentage VARCHAR
)
|
SELECT standing FROM table_2110959_1 WHERE pct__percentage LIKE "%0.769%"
|
Can you name the drawn with a Lost of 1?
|
CREATE TABLE table_name_60 (
drawn VARCHAR,
lost VARCHAR
)
|
SELECT drawn FROM table_name_60 WHERE lost LIKE "%1%"
|
When the game had a loss of Koch (0-1) what was the attendance?
|
CREATE TABLE table_name_12 (
attendance VARCHAR,
loss VARCHAR
)
|
SELECT attendance FROM table_name_12 WHERE loss LIKE "%koch (0-1)%"
|
what are the number of times tour of qatar is listed as the race ?
|
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 "race" LIKE '%tour of qatar%'
|
Which team had a season 1954-55?
|
CREATE TABLE table_name_80 (
teams VARCHAR,
season VARCHAR
)
|
SELECT teams FROM table_name_80 WHERE season LIKE "%1954-55%"
|
Name the least population 1.1.2008 with population per square km of 1.957 and population 1.1.2006 less than 12.67
|
CREATE TABLE table_name_62 (
population_112008 INTEGER,
population_per_square_km VARCHAR,
population_112006 VARCHAR
)
|
SELECT MIN(population_112008) FROM table_name_62 WHERE population_per_square_km LIKE '%1.957%' AND population_112006 < '12.67'
|
Tell me the title for pages of 96
|
CREATE TABLE table_32055 (
"Title" text,
"Year" real,
"ISBN" text,
"Volume" text,
"Strips" text,
"Pages" real,
"Colors" text
)
|
SELECT "Title" FROM table_32055 WHERE "Pages" = 96
|
How many high school principals were there in 2000-2001?
|
CREATE TABLE table_25037577_1 (
high_school_principal VARCHAR,
year VARCHAR
)
|
SELECT high_school_principal FROM table_25037577_1 WHERE year LIKE "%2000-2001%"
|
What is the score for the interview for the state of New York?
|
CREATE TABLE table_12094300_1 (
interview VARCHAR,
state VARCHAR
)
|
SELECT interview FROM table_12094300_1 WHERE state LIKE '%new york%'
|
What did carlton score while away?
|
CREATE TABLE table_name_65 (
away_team VARCHAR
)
|
SELECT away_team AS score FROM table_name_65 WHERE away_team LIKE "%carlton%"
|
What was the score for game number 30?
|
CREATE TABLE table_name_71 (
score VARCHAR,
game VARCHAR
)
|
SELECT score FROM table_name_71 WHERE game LIKE '%30%'
|
How many points were scored by the player with 79 goals and who played 38 games?
|
CREATE TABLE table_name_32 (
points VARCHAR,
goals VARCHAR,
games VARCHAR
)
|
SELECT points FROM table_name_32 WHERE goals LIKE "%79%" AND games LIKE "%38%"
|
Name Road Team of Game of game 4?
|
CREATE TABLE table_name_66 (
road_team VARCHAR,
game VARCHAR
)
|
SELECT road_team FROM table_name_66 WHERE game LIKE "%game 4%"
|
Which teams had the 1st position and entered 1 race?
|
CREATE TABLE table_name_42 (
team VARCHAR,
races VARCHAR,
position VARCHAR
)
|
SELECT team FROM table_name_42 WHERE races LIKE "%1%" AND position LIKE "%1st%"
|
What score did John Mahaffey have?
|
CREATE TABLE table_8942 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text
)
|
SELECT "Score" FROM table_8942 WHERE "Player" LIKE '%john mahaffey%'
|
What is the ab ripper x when exercise is x stretch?
|
CREATE TABLE table_74121 (
"Program" text,
"Exercise" text,
"Week" text,
"Muscles Worked" text,
"Type" text,
"Ab Ripper X" text,
"Length" text,
"Equipment" text
)
|
SELECT "Ab Ripper X" FROM table_74121 WHERE "Exercise" LIKE '%x stretch%'
|
Who was the other team on march 27?
|
CREATE TABLE table_27712702_11 (
team VARCHAR,
date VARCHAR
)
|
SELECT team FROM table_27712702_11 WHERE date LIKE "%march 27%"
|
How many golds have a silver greater than 1, vietnam as the nation, with a bronze less than 3?
|
CREATE TABLE table_42702 (
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
)
|
SELECT COUNT("Gold") FROM table_42702 WHERE "Silver" > '1' AND "Nation" LIKE '%vietnam%' AND "Bronze" < '3'
|
What is the number of starts for 1987?
|
CREATE TABLE table_13026799_3 (
starts VARCHAR,
year VARCHAR
)
|
SELECT COUNT(starts) FROM table_13026799_3 WHERE year LIKE '%1987%'
|
What is the average Silver with a Total that is smaller than 1?
|
CREATE TABLE table_name_97 (
silver INTEGER,
total INTEGER
)
|
SELECT AVG(silver) FROM table_name_97 WHERE total < 1
|
What is the venue of the game where hibernian won and the rangers were the runner-up?
|
CREATE TABLE table_name_15 (
venue VARCHAR,
runner_up VARCHAR,
winner VARCHAR
)
|
SELECT venue FROM table_name_15 WHERE runner_up LIKE "%rangers%" AND winner LIKE "%hibernian%"
|
What is the results from 2003 that has a 2012 result of 1r and a 2004 result of 2r and from the Australian Open?
|
CREATE TABLE table_name_67 (
tournament VARCHAR
)
|
SELECT "2003" FROM table_name_67 WHERE "2012" LIKE '%1r%' AND "2004" LIKE '%2r%' AND tournament LIKE '%australian open%'
|
When did the king who entered office in 1012 leave office?
|
CREATE TABLE table_36346 (
"Throne Name" text,
"Title" text,
"Born-Died" text,
"Entered office" text,
"Left office" text,
"Family Relations" text
)
|
SELECT "Left office" FROM table_36346 WHERE "Entered office" LIKE '%1012%'
|
What is Score, when Date is '13 March 1985', and when Away Team is 'Millwall'?
|
CREATE TABLE table_name_67 (
score VARCHAR,
date VARCHAR,
away_team VARCHAR
)
|
SELECT score FROM table_name_67 WHERE date LIKE "%13 march 1985%" AND away_team LIKE "%millwall%"
|
Which Year is the lowest one that has a US Cham Rank smaller than 1?
|
CREATE TABLE table_name_16 (
year INTEGER,
us_cham_rank INTEGER
)
|
SELECT MIN(year) FROM table_name_16 WHERE us_cham_rank < 1
|
Which team has a long of 67?
|
CREATE TABLE table_name_6 (
team VARCHAR,
long VARCHAR
)
|
SELECT team FROM table_name_6 WHERE long LIKE "%67%"
|
What is the total number of sd listings where the status is quarterfinals lost to Novak Djokovic [1]?
|
CREATE TABLE table_27615896_18 (
sd VARCHAR,
status VARCHAR
)
|
SELECT COUNT(sd) FROM table_27615896_18 WHERE status LIKE '%quarterfinals lost to novak djokovic [1]%'
|
How many distinct types of accounts are there?
|
CREATE TABLE customer (
acc_type VARCHAR
)
|
SELECT COUNT(DISTINCT acc_type) FROM customer
|
What country was the game in when the player was Craig Stadler?
|
CREATE TABLE table_name_20 (
country VARCHAR,
player VARCHAR
)
|
SELECT country FROM table_name_20 WHERE player LIKE "%craig stadler%"
|
How many yards for the player with tfl-yds of 2.5-4?
|
CREATE TABLE table_18064020_21 (
no_yds VARCHAR,
tfl_yds VARCHAR
)
|
SELECT no_yds FROM table_18064020_21 WHERE tfl_yds LIKE "%2.5-4%"
|
Which Run 4 has a Run 1 of 1:25.82?
|
CREATE TABLE table_name_59 (
run_4 VARCHAR,
run_1 VARCHAR
)
|
SELECT run_4 FROM table_name_59 WHERE run_1 LIKE "%1:25.82%"
|
Which Variant id has the GenBank id of nm_005411.4?
|
CREATE TABLE table_5219 (
"Variant id" text,
"5\u2019UTR splice" text,
"Coding" text,
"3\u2019UTR sequence" text,
"GenBank id" text
)
|
SELECT "Variant id" FROM table_5219 WHERE "GenBank id" LIKE '%nm_005411.4%'
|
What is the tie no for the home team swansea city?
|
CREATE TABLE table_name_26 (
tie_no VARCHAR,
home_team VARCHAR
)
|
SELECT tie_no FROM table_name_26 WHERE home_team LIKE "%swansea city%"
|
What home team had 2 ties?
|
CREATE TABLE table_name_86 (
home_team VARCHAR,
tie_no VARCHAR
)
|
SELECT home_team FROM table_name_86 WHERE tie_no LIKE "%2%"
|
Which station has the frequency of 107.3?
|
CREATE TABLE table_19131921_1 (
station VARCHAR,
frequency VARCHAR
)
|
SELECT station FROM table_19131921_1 WHERE frequency LIKE "%107.3%"
|
Which Date has a Partner of daniella dominikovic?
|
CREATE TABLE table_name_66 (
date VARCHAR,
partner VARCHAR
)
|
SELECT date FROM table_name_66 WHERE partner LIKE "%daniella dominikovic%"
|
teams where the number of games played was the same as number of games won .
|
CREATE TABLE table_203_506 (
id number,
"opponent" text,
"played" number,
"won" number,
"lost" number,
"drawn" number,
"% won overall" text
)
|
SELECT "opponent" FROM table_203_506 WHERE "played" = "won"
|
Name the population for s rv gur
|
CREATE TABLE table_16278673_1 (
population VARCHAR,
municipality VARCHAR
)
|
SELECT population FROM table_16278673_1 WHERE municipality LIKE "%sørvágur%"
|
What competition has 17-1 as the result?
|
CREATE TABLE table_name_71 (
competition VARCHAR,
result VARCHAR
)
|
SELECT competition FROM table_name_71 WHERE result LIKE "%17-1%"
|
What is the most losses for positions under 15 and 66 goals against?
|
CREATE TABLE table_name_50 (
lost INTEGER,
goals_against VARCHAR,
position VARCHAR
)
|
SELECT MAX(lost) FROM table_name_50 WHERE goals_against LIKE '%66%' AND position < '15'
|
I want the ICAO for city of xi'an
|
CREATE TABLE table_name_51 (
icao VARCHAR,
city VARCHAR
)
|
SELECT icao FROM table_name_51 WHERE city LIKE '%xi''an%'
|
Who was the opponent for week 6?
|
CREATE TABLE table_name_40 (
opponent VARCHAR,
week VARCHAR
)
|
SELECT opponent FROM table_name_40 WHERE week LIKE '%6%'
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.