question
stringlengths 19
162
| table_info
stringlengths 39
951
| sql_query
stringlengths 24
181
|
---|---|---|
Name the incumbent for robert monell (j) 63.6% tilly lynde 36.4% | CREATE TABLE table_2668243_17 (
incumbent VARCHAR,
candidates VARCHAR
) | SELECT incumbent FROM table_2668243_17 WHERE candidates LIKE "%robert monell (j) 63.6% tilly lynde 36.4%" |
Which Opponent has a Week larger than 2 on november 19, 1995? | CREATE TABLE table_name_81 (
opponent VARCHAR,
week VARCHAR,
date VARCHAR
) | SELECT opponent FROM table_name_81 WHERE week > '2' AND date LIKE '%november 19, 1995%' |
Who is the home team with a tie no. 12? | CREATE TABLE table_name_70 (
home_team VARCHAR,
tie_no VARCHAR
) | SELECT home_team FROM table_name_70 WHERE tie_no LIKE "%12%" |
What is the density of San Sebasti n? | CREATE TABLE table_name_11 (
density__hab_km²_ VARCHAR,
city_district VARCHAR
) | SELECT density__hab_km²_ FROM table_name_11 WHERE city_district LIKE '%san sebastián%' |
What are the Podiums that has a Poles of 3? | CREATE TABLE table_50630 (
"Season" text,
"Series" text,
"Team" text,
"Races" text,
"Wins" text,
"Poles" text,
"F/Laps" text,
"Podiums" text,
"Points" text,
"Position" text
) | SELECT "Podiums" FROM table_50630 WHERE "Poles" LIKE '%3%' |
Which Bronze has a Silver of 15, and a Total smaller than 54? | CREATE TABLE table_13262 (
"Rank" text,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
) | SELECT MIN("Bronze") FROM table_13262 WHERE "Silver" = 15 AND "Total" < 54 |
Show the average share count of transactions for different investors. | CREATE TABLE TRANSACTIONS (
investor_id VARCHAR,
share_count INTEGER
) | SELECT investor_id, AVG(share_count) FROM TRANSACTIONS GROUP BY investor_id |
Who was the visitor on October 31? | CREATE TABLE table_37046 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Record" text
) | SELECT "Visitor" FROM table_37046 WHERE "Date" LIKE '%october 31%' |
In which game did the opponents score 14 points? | CREATE TABLE table_name_41 (
game VARCHAR,
opponents VARCHAR
) | SELECT game FROM table_name_41 WHERE opponents LIKE "%14%" |
Which countries has the most number of airlines? | CREATE TABLE airlines (
country VARCHAR
) | SELECT country FROM airlines GROUP BY country ORDER BY COUNT(*) DESC LIMIT 1 |
Which date has the tier of Itf $10k? | CREATE TABLE table_name_66 (
date VARCHAR,
tier VARCHAR
) | SELECT date FROM table_name_66 WHERE tier LIKE '%itf $10k%' |
Who won in 1979 with +8 to par? | CREATE TABLE table_name_46 (
player VARCHAR,
to_par VARCHAR,
year_s__won VARCHAR
) | SELECT player FROM table_name_46 WHERE to_par LIKE '%+8%' AND year_s__won LIKE '%1979%' |
What Partner had a Score of 6 3, 2 6, 6 3? | CREATE TABLE table_name_31 (
partner VARCHAR,
score VARCHAR
) | SELECT partner FROM table_name_31 WHERE score LIKE "%6–3, 2–6, 6–3%" |
Which interview score belongs to the state of Nevada contestant? | CREATE TABLE table_12338595_1 (
interview VARCHAR,
state VARCHAR
) | SELECT interview FROM table_12338595_1 WHERE state LIKE "%nevada%" |
What is the qual when there are 125 laps? | CREATE TABLE table_name_6 (
qual VARCHAR,
laps VARCHAR
) | SELECT qual FROM table_name_6 WHERE laps LIKE '%125%' |
Kaluvanchikudy is the main town in what DS division? | CREATE TABLE table_12485020_1 (
ds_division VARCHAR,
main_town VARCHAR
) | SELECT ds_division FROM table_12485020_1 WHERE main_town LIKE "%kaluvanchikudy%" |
Tell me the record for december 3 | CREATE TABLE table_name_47 (
record VARCHAR,
date VARCHAR
) | SELECT record FROM table_name_47 WHERE date LIKE "%december 3%" |
When did the 113 episode air? | CREATE TABLE table_10718631_2 (
original_air_date VARCHAR,
no_in_series VARCHAR
) | SELECT original_air_date FROM table_10718631_2 WHERE no_in_series LIKE '%113%' |
In which district is Robert W. Edgar the incumbent? | CREATE TABLE table_1341598_39 (
district VARCHAR,
incumbent VARCHAR
) | SELECT district FROM table_1341598_39 WHERE incumbent LIKE "%robert w. edgar%" |
What genders did Lynmore Primary School take? | CREATE TABLE table_69162 (
"Name" text,
"Years" text,
"Gender" text,
"Area" text,
"Authority" text,
"Decile" text
) | SELECT "Gender" FROM table_69162 WHERE "Name" LIKE '%lynmore primary school%' |
Which home team had an away team of Reading? | CREATE TABLE table_name_37 (
home_team VARCHAR,
away_team VARCHAR
) | SELECT home_team FROM table_name_37 WHERE away_team LIKE "%reading%" |
What game number was played at amway arena? | CREATE TABLE table_name_86 (
game VARCHAR,
location_attendance VARCHAR
) | SELECT game FROM table_name_86 WHERE location_attendance LIKE "%amway arena%" |
What is the highest result for Jankovic at Indian Wells and round of SF? | CREATE TABLE table_name_68 (
jankovic INTEGER,
round VARCHAR,
tournament VARCHAR
) | SELECT MAX(jankovic) FROM table_name_68 WHERE round LIKE "%sf%" AND tournament LIKE "%indian wells%" |
Rutgers college holds what position? | CREATE TABLE table_name_32 (
position VARCHAR,
college VARCHAR
) | SELECT position FROM table_name_32 WHERE college LIKE "%rutgers%" |
What Golden point(s) has the Venue Allianz Stadium? | CREATE TABLE table_name_31 (
golden_point_s__scorer VARCHAR,
venue VARCHAR
) | SELECT golden_point_s__scorer FROM table_name_31 WHERE venue LIKE '%allianz stadium%' |
What is the race class with most number of races. | CREATE TABLE race (
CLASS VARCHAR
) | SELECT CLASS FROM race GROUP BY CLASS ORDER BY COUNT(*) DESC LIMIT 1 |
What's the total number of crew chiefs of the Fas Lane Racing team? | CREATE TABLE table_1266602_1 (
crew_chief VARCHAR,
team VARCHAR
) | SELECT COUNT(crew_chief) FROM table_1266602_1 WHERE team LIKE "%fas lane racing%" |
Return the cities with more than 3 airports in the United States. | CREATE TABLE airports (
city VARCHAR,
country VARCHAR
) | SELECT city FROM airports WHERE country LIKE '%united states%' GROUP BY city HAVING COUNT(*) > 3 |
Name the date when the visitor is nets | CREATE TABLE table_name_29 (
date VARCHAR,
visitor VARCHAR
) | SELECT date FROM table_name_29 WHERE visitor LIKE '%nets%' |
What is the total number of James Bond 007: Everything or Nothing for each system? | CREATE TABLE table_10875694_11 (
system VARCHAR,
title VARCHAR
) | SELECT COUNT(system) FROM table_10875694_11 WHERE title LIKE "%james bond 007: everything or nothing%" |
Who were the cover model(s) on the 4-05 issue? | CREATE TABLE table_1566852_6 (
cover_model VARCHAR,
date VARCHAR
) | SELECT cover_model FROM table_1566852_6 WHERE date LIKE "%4-05%" |
What place is the player from the United States with a to par of e? | CREATE TABLE table_name_1 (
place VARCHAR,
country VARCHAR,
to_par VARCHAR
) | SELECT place FROM table_name_1 WHERE country LIKE "%united states%" AND to_par LIKE "%e%" |
What is the time of the rider with a speed of 102.962mph? | CREATE TABLE table_name_92 (
time VARCHAR,
speed VARCHAR
) | SELECT time FROM table_name_92 WHERE speed LIKE "%102.962mph%" |
What was Kilgore's (R) percentage when Potts (I) polled at 1%? | CREATE TABLE table_name_95 (
kilgore__r_ VARCHAR,
potts__i_ VARCHAR
) | SELECT kilgore__r_ FROM table_name_95 WHERE potts__i_ LIKE "%1%" |
What is the sum of Year(s), when Postion is 6th, and when Competition is Commonwealth Games? | CREATE TABLE table_name_68 (
year INTEGER,
position VARCHAR,
competition VARCHAR
) | SELECT SUM(year) FROM table_name_68 WHERE position LIKE "%6th%" AND competition LIKE "%commonwealth games%" |
what is the oldest and lives in veraguas | CREATE TABLE table_27515452_3 (
age INTEGER,
hometown VARCHAR
) | SELECT MAX(age) FROM table_27515452_3 WHERE hometown LIKE "%veraguas%" |
Which campus was opened between 1935 and 1939? | CREATE TABLE campuses (
campus VARCHAR,
YEAR VARCHAR
) | SELECT campus FROM campuses WHERE YEAR >= '1935' AND YEAR <= '1939' |
What is Tim Andree's greatest number? | CREATE TABLE table_name_50 (
number INTEGER,
name VARCHAR
) | SELECT MAX(number) FROM table_name_50 WHERE name LIKE "%tim andree%" |
What is 1993, when 1992 is 'SF', and when Tournament is 'Paris'? | CREATE TABLE table_name_7 (
tournament VARCHAR
) | SELECT 1993 FROM table_name_7 WHERE 1992 LIKE "%sf%" AND tournament LIKE "%paris%" |
Tell me the lowest other for albanians more than 8793 and Roma less than 1030 | CREATE TABLE table_name_47 (
other INTEGER,
albanians VARCHAR,
roma VARCHAR
) | SELECT MIN(other) FROM table_name_47 WHERE albanians > 8793 AND roma < 1030 |
What is the district for the party federalist and the candidates are william craik (f) 51.0% benjamin edwards 49.0%? | CREATE TABLE table_74018 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" text,
"Result" text,
"Candidates" text
) | SELECT "District" FROM table_74018 WHERE "Party" LIKE '%federalist%' AND "Candidates" LIKE '%william craik (f) 51.0% benjamin edwards 49.0%' |
Name the D 43 when it has D 45 of d 25 | CREATE TABLE table_15362 (
"D 48" text,
"D 47" text,
"D 46" text,
"D 45" text,
"D 44" text,
"D 43" text,
"D 42" text,
"D 41" text
) | SELECT "D 43" FROM table_15362 WHERE "D 45" LIKE '%d 25%' |
What is Away Team, when Home Team is 'West Ham United'? | CREATE TABLE table_62480 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
) | SELECT "Away team" FROM table_62480 WHERE "Home team" LIKE '%west ham united%' |
list the films that had a collaboration with b. dziworski . | CREATE TABLE table_201_9 (
id number,
"year" number,
"film title" text,
"duration" text,
"film type" text,
"shoot location" text
) | SELECT "film title" FROM table_201_9 WHERE "shoot location" LIKE '%in collaboration with b. dziworski%' |
What is the Home team at the Blackburn Rovers Away game? | CREATE TABLE table_name_70 (
home_team VARCHAR,
away_team VARCHAR
) | SELECT home_team FROM table_name_70 WHERE away_team LIKE "%blackburn rovers%" |
What is the Netflix Episode when the Segment B is s Highlighter? | CREATE TABLE table_15187735_6 (
netflix VARCHAR,
segment_b VARCHAR
) | SELECT netflix FROM table_15187735_6 WHERE segment_b LIKE '%s highlighter%' |
What is the name of the City with December 21 as a Date? | CREATE TABLE table_name_94 (
city VARCHAR,
date VARCHAR
) | SELECT city FROM table_name_94 WHERE date LIKE "%december 21%" |
Which average Drawn has Games larger than 7? | CREATE TABLE table_39671 (
"Games" real,
"Drawn" real,
"Lost" real,
"Points difference" text,
"Points" real
) | SELECT AVG("Drawn") FROM table_39671 WHERE "Games" > 7 |
Name the school where conference record is 12-6 | CREATE TABLE table_16295365_2 (
school VARCHAR,
conf_record VARCHAR
) | SELECT school FROM table_16295365_2 WHERE conf_record LIKE "%12-6%" |
If the census ranking is 231 of 5,008, what was the population? | CREATE TABLE table_171236_1 (
population VARCHAR,
census_ranking VARCHAR
) | SELECT population FROM table_171236_1 WHERE census_ranking LIKE "%231 of 5,008%" |
What was the team 1 for the tie that had a first leg score of 2-3? | CREATE TABLE table_41378 (
"Team 1" text,
"Agg." text,
"Team 2" text,
"1st leg" text,
"2nd leg" text
) | SELECT "Team 1" FROM table_41378 WHERE "1st leg" LIKE '%2-3%' |
are there more films in 2008 or 2005 ? | CREATE TABLE table_204_647 (
id number,
"year" number,
"film" text,
"role" text,
"language" text
) | SELECT "year" FROM table_204_647 WHERE "year" IN (2008, 2005) GROUP BY "year" ORDER BY COUNT("film") DESC LIMIT 1 |
Which bullet has a Length of 33.78 (1.33)? | CREATE TABLE table_name_28 (
bullet VARCHAR,
length VARCHAR
) | SELECT bullet FROM table_name_28 WHERE length LIKE "%33.78 (1.33)%" |
What club is robert gallery a part of | CREATE TABLE table_35151 (
"Player" text,
"Position" text,
"Round" real,
"Pick" real,
"NFL Club" text
) | SELECT "NFL Club" FROM table_35151 WHERE "Player" LIKE '%robert gallery%' |
What date was the game played on the hard surface at the Tournament of Sweden f2? | CREATE TABLE table_12108 (
"Date" text,
"Tournament" text,
"Surface" text,
"Opponent in the final" text,
"Score" text
) | SELECT "Date" FROM table_12108 WHERE "Surface" LIKE '%hard%' AND "Tournament" LIKE '%sweden f2%' |
What position is the player who was on the Grizzlies from 1995-1996? | CREATE TABLE table_16494599_1 (
position VARCHAR,
years_for_grizzlies VARCHAR
) | SELECT position FROM table_16494599_1 WHERE years_for_grizzlies LIKE "%1995-1996%" |
What is the maturity that has a coupon of exactly 0.726? | CREATE TABLE table_21692771_1 (
maturity VARCHAR,
coupon VARCHAR
) | SELECT maturity FROM table_21692771_1 WHERE coupon LIKE "%0.726%" |
What shows for traditional when the population was 44,803? | CREATE TABLE table_name_14 (
traditional VARCHAR,
population VARCHAR
) | SELECT traditional FROM table_name_14 WHERE population LIKE "%44,803%" |
What was the 09-10 oi best of the player with 949 points? | CREATE TABLE table_24990183_5 (
ws_points VARCHAR
) | SELECT COUNT(*) AS _10_oi_best FROM table_24990183_5 WHERE ws_points LIKE '%949%' |
Which date did South Melbourne play as the away team? | CREATE TABLE table_name_74 (
date VARCHAR,
away_team VARCHAR
) | SELECT date FROM table_name_74 WHERE away_team LIKE "%south melbourne%" |
how many total goals have been scored against croatia in the world cup ? | CREATE TABLE table_203_469 (
id number,
"year" text,
"round" text,
"position" number,
"matches" number,
"wins" number,
"draws" number,
"losses" number,
"gf" number,
"ga" number
) | SELECT SUM("ga") FROM table_203_469 |
Who won the game at Dairy farmers stadium with a score of 28-24? | CREATE TABLE table_name_66 (
result VARCHAR,
venue VARCHAR,
score VARCHAR
) | SELECT result FROM table_name_66 WHERE venue LIKE "%dairy farmers stadium%" AND score LIKE "%28-24%" |
What's the rank that has a total of less than 1? | CREATE TABLE table_name_19 (
rank INTEGER,
total INTEGER
) | SELECT SUM(rank) FROM table_name_19 WHERE total < 1 |
When the home team is Cairns Taipans, at which venue do they play? | CREATE TABLE table_name_51 (
venue VARCHAR,
home_team VARCHAR
) | SELECT venue FROM table_name_51 WHERE home_team LIKE "%cairns taipans%" |
What is Country, when Player is 'Scott Dunlap'? | CREATE TABLE table_name_70 (
country VARCHAR,
player VARCHAR
) | SELECT country FROM table_name_70 WHERE player LIKE "%scott dunlap%" |
Who were the rowers when notes were sa/b, with a time of 5:51.30? | CREATE TABLE table_79428 (
"Rank" real,
"Rowers" text,
"Country" text,
"Time" text,
"Notes" text
) | SELECT "Rowers" FROM table_79428 WHERE "Notes" LIKE '%sa/b%' AND "Time" LIKE '%5:51.30%' |
What is the number of sikhs in Japan? | CREATE TABLE table_11800185_1 (
no_of_sikhs VARCHAR,
country VARCHAR
) | SELECT no_of_sikhs FROM table_11800185_1 WHERE country LIKE "%japan%" |
How many documents are with document type code BK for each product id? | CREATE TABLE Documents (
project_id VARCHAR,
document_type_code VARCHAR
) | SELECT COUNT(*), project_id FROM Documents WHERE document_type_code LIKE "%bk%" GROUP BY project_id |
What is Run 1, when Run 4 is 1:56.59? | CREATE TABLE table_49004 (
"Rank" text,
"Team" text,
"Run 1" text,
"Run 2" text,
"Run 3" text,
"Run 4" text,
"Final" text
) | SELECT "Run 1" FROM table_49004 WHERE "Run 4" LIKE '%1:56.59%' |
Who did the team play on april 19? | CREATE TABLE table_57377 (
"Date" text,
"Opponent" text,
"Score" text,
"Loss" text,
"Attendance" real,
"Record" text
) | SELECT "Opponent" FROM table_57377 WHERE "Date" LIKE '%april 19%' |
What is the name of the venue where the opponent scored 51? | CREATE TABLE table_14877831_2 (
venue VARCHAR,
opponents VARCHAR
) | SELECT venue FROM table_14877831_2 WHERE opponents LIKE '%51%' |
What is the smallest number of points for a match less than 12? | CREATE TABLE table_7457 (
"Team" text,
"Match" real,
"Points" real,
"Draw" real,
"Lost" real
) | SELECT MIN("Points") FROM table_7457 WHERE "Match" < 12 |
Who was the semifinalist at the tournament in miami? | CREATE TABLE table_name_21 (
semifinalists VARCHAR,
tournament VARCHAR
) | SELECT semifinalists FROM table_name_21 WHERE tournament LIKE "%miami%" |
What percentage of voters voted for a third party in the county that had 802 third party voters? | CREATE TABLE table_20278716_2 (
others__percentage VARCHAR,
others__number VARCHAR
) | SELECT others__percentage FROM table_20278716_2 WHERE others__number LIKE '%802%' |
What is the date of the game with pittsburgh as the home team and boston as the visitor team? | CREATE TABLE table_50078 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Record" text,
"Points" real
) | SELECT "Date" FROM table_50078 WHERE "Home" LIKE '%pittsburgh%' AND "Visitor" LIKE '%boston%' |
What was the maximum fab (nm)? | CREATE TABLE table_26860595_2 (
fab___nm__ INTEGER
) | SELECT MAX(fab___nm__) FROM table_26860595_2 |
What is the home team that played Hull City? | CREATE TABLE table_name_40 (
home_team VARCHAR,
away_team VARCHAR
) | SELECT home_team FROM table_name_40 WHERE away_team LIKE "%hull city%" |
Which college has fewer than 2 rounds? | CREATE TABLE table_name_7 (
college VARCHAR,
round INTEGER
) | SELECT college FROM table_name_7 WHERE round < 2 |
When western carolina university is the school what is the control? | CREATE TABLE table_2076516_1 (
control VARCHAR,
school VARCHAR
) | SELECT control FROM table_2076516_1 WHERE school LIKE "%western carolina university%" |
In which year were most of ships built? | CREATE TABLE ship (
built_year VARCHAR
) | SELECT built_year FROM ship GROUP BY built_year ORDER BY COUNT(*) DESC LIMIT 1 |
When the %2001 is more than 61.4, and the %2006 fewer than 54.1, how many Seats in 2001 were there? | CREATE TABLE table_56800 (
"Parties and voter communities" text,
"% 2006" real,
"Seats 2006" real,
"% 2001" real,
"Seats 2001" real
) | SELECT SUM("Seats 2001") FROM table_56800 WHERE "% 2001" > 61.4 AND "% 2006" < 54.1 |
What player had the position guard/forward? | CREATE TABLE table_name_83 (
player VARCHAR,
position VARCHAR
) | SELECT player FROM table_name_83 WHERE position LIKE "%guard/forward%" |
what is the top result on the chart | CREATE TABLE table_204_994 (
id number,
"date" text,
"time" text,
"opponent#" text,
"rank#" text,
"site" text,
"tv" text,
"result" text,
"attendance" number
) | SELECT "result" FROM table_204_994 WHERE id = 1 |
Name the project which has a missle of agni-iii | CREATE TABLE table_name_92 (
project VARCHAR,
missile VARCHAR
) | SELECT project FROM table_name_92 WHERE missile LIKE "%agni-iii%" |
What's the percentage of EU average GDP (PPP) in the region where per capita is 2519 | CREATE TABLE table_2293510_1 (
_percentage_of_eu_average_gdp__ppp_ VARCHAR,
€_per_capita__2005_ VARCHAR
) | SELECT _percentage_of_eu_average_gdp__ppp_ FROM table_2293510_1 WHERE €_per_capita__2005_ LIKE '%2519%' |
What is the speed of model x5560? | CREATE TABLE table_269920_17 (
speed__ghz_ VARCHAR,
model VARCHAR
) | SELECT speed__ghz_ FROM table_269920_17 WHERE model LIKE "%x5560%" |
what is the total tackles when the games is 16 and solo is 88? | CREATE TABLE table_name_9 (
total_tackles VARCHAR,
games VARCHAR,
solo VARCHAR
) | SELECT total_tackles FROM table_name_9 WHERE games LIKE "%16%" AND solo LIKE "%88%" |
What is Season, when Lead is 'Michael Goodfellow'? | CREATE TABLE table_name_12 (
season VARCHAR,
lead VARCHAR
) | SELECT season FROM table_name_12 WHERE lead LIKE "%michael goodfellow%" |
What was the average tonnage for the Siljan ship from Sweden? | CREATE TABLE table_8359 (
"Date" text,
"Name of ship" text,
"Nationality" text,
"Tonnage" real,
"Fate" text
) | SELECT AVG("Tonnage") FROM table_8359 WHERE "Nationality" LIKE '%sweden%' AND "Name of ship" LIKE '%siljan%' |
What is the total rank of team roanne, which has less than 14 games? | CREATE TABLE table_7630 (
"Rank" real,
"Name" text,
"Team" text,
"Games" real,
"Points" real
) | SELECT COUNT("Rank") FROM table_7630 WHERE "Team" LIKE '%roanne%' AND "Games" < 14 |
Which Source has a Clinton of 39% and a Undecided of 7%? | CREATE TABLE table_name_94 (
source VARCHAR,
clinton VARCHAR,
undecided VARCHAR
) | SELECT source FROM table_name_94 WHERE clinton LIKE "%39%%" AND undecided LIKE "%7%%" |
Name the first elected for kentucky 3 | CREATE TABLE table_2668378_5 (
first_elected VARCHAR,
district VARCHAR
) | SELECT first_elected FROM table_2668378_5 WHERE district LIKE '%kentucky 3%' |
Who won bronze is 2006? | CREATE TABLE table_name_7 (
bronze VARCHAR,
year VARCHAR
) | SELECT bronze FROM table_name_7 WHERE year LIKE '%2006%' |
Who is the team with the ft% of 77.6? | CREATE TABLE table_20107762_1 (
team VARCHAR,
ft_percentage VARCHAR
) | SELECT team FROM table_20107762_1 WHERE ft_percentage LIKE "%77.6%" |
How many stages are in a distance of 2,192 km? | CREATE TABLE table_name_11 (
stages VARCHAR,
distance VARCHAR
) | SELECT stages FROM table_name_11 WHERE distance LIKE "%2,192 km%" |
Date of september 25, 1983 is what game site? | CREATE TABLE table_name_68 (
game_site VARCHAR,
date VARCHAR
) | SELECT game_site FROM table_name_68 WHERE date LIKE "%september 25, 1983%" |
Who played against the Celtics when the final game score was 85-102? | CREATE TABLE table_name_18 (
opponent VARCHAR,
score VARCHAR
) | SELECT opponent FROM table_name_18 WHERE score LIKE "%85-102%" |
I want the Grid for Laps of 35 | CREATE TABLE table_57384 (
"Driver" text,
"Constructor" text,
"Laps" real,
"Time/Retired" text,
"Grid" real
) | SELECT "Grid" FROM table_57384 WHERE "Laps" = 35 |
When the Border Conference was held, who was the tournament winner? | CREATE TABLE table_22733636_1 (
tournament_winner VARCHAR,
conference VARCHAR
) | SELECT tournament_winner FROM table_22733636_1 WHERE conference LIKE "%border conference%" |
What state is the city of Ruston in? | CREATE TABLE table_name_13 (
state VARCHAR,
city VARCHAR
) | SELECT state FROM table_name_13 WHERE city LIKE "%ruston%" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.