question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
For a processor with model number atom e665c and a TDP of 3.6 W, what is the sSpec number? | columns:
- name: sspec_number
type: VARCHAR
- name: tdp
type: VARCHAR
- name: model_number
type: VARCHAR
table: table_16729930_18
| SELECT sspec_number FROM table_16729930_18 WHERE tdp = "3.6 W" AND model_number = "Atom E665C" |
What is the average area of the city that has a density less than than 206.2 and an altitude of less than 85? | columns:
- name: area__km_2__
type: INTEGER
- name: density__inhabitants_km_2__
type: VARCHAR
- name: altitude__mslm_
type: VARCHAR
table: table_name_14
| SELECT AVG(area__km_2__) FROM table_name_14 WHERE density__inhabitants_km_2__ < 206.2 AND altitude__mslm_ < 85 |
What championship had a final score of 6–4, 6–2, 6–2? | columns:
- name: championship
type: VARCHAR
- name: score_in_the_final
type: VARCHAR
table: table_22839669_1
| SELECT championship FROM table_22839669_1 WHERE score_in_the_final = "6–4, 6–2, 6–2" |
in what playoffs the league was in the semifinals | columns:
- name: league
type: VARCHAR
- name: playoffs
type: VARCHAR
table: table_1908049_1
| SELECT league FROM table_1908049_1 WHERE playoffs = "Semifinals" |
What is Position, when Weight is greater than 200, when Number is less than 44, when Years Exp is 9, and when College is "University of New Mexico"? | columns:
- name: position
type: VARCHAR
- name: college
type: VARCHAR
- name: years_exp
type: VARCHAR
- name: weight
type: VARCHAR
- name: number
type: VARCHAR
table: table_name_68
| SELECT position FROM table_name_68 WHERE weight > 200 AND number < 44 AND years_exp = "9" AND college = "university of new mexico" |
What is the Time of the swimmer from Chinese Taipei in Heat 3? | columns:
- name: time
type: VARCHAR
- name: nationality
type: VARCHAR
- name: heat
type: VARCHAR
- name: lane
type: VARCHAR
table: table_name_88
| SELECT time FROM table_name_88 WHERE heat = 3 AND lane > 3 AND nationality = "chinese taipei" |
What is the IHSAA class when the county was 83 vermillion? | columns:
- name: ihsaa_class
type: VARCHAR
- name: county
type: VARCHAR
table: table_name_40
| SELECT ihsaa_class FROM table_name_40 WHERE county = "83 vermillion" |
Name the children together for 9 years of marriage | columns:
- name: children_together
type: VARCHAR
- name: length_of_marriage
type: VARCHAR
table: table_24143253_1
| SELECT children_together FROM table_24143253_1 WHERE length_of_marriage = "9 years" |
Can you tell me the highest Gold that has the Bronze smaller than 1, and the Total larger than 4? | columns:
- name: gold
type: INTEGER
- name: bronze
type: VARCHAR
- name: total
type: VARCHAR
table: table_name_87
| SELECT MAX(gold) FROM table_name_87 WHERE bronze < 1 AND total > 4 |
Name the lowest Draw which has a Performer of kaliopi and a Televotes larger than 3834? | columns:
- name: draw
type: INTEGER
- name: performer
type: VARCHAR
- name: televotes
type: VARCHAR
table: table_name_18
| SELECT MIN(draw) FROM table_name_18 WHERE performer = "kaliopi" AND televotes > 3834 |
With a score of 2-2, what was the Result? | columns:
- name: result
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_30
| SELECT result FROM table_name_30 WHERE score = "2-2" |
Which Name has a Years Played of 2004–2008, and a Date and Opponent of 2/17/07 vs. purdue? | columns:
- name: name
type: VARCHAR
- name: years_played
type: VARCHAR
- name: date_and_opponent
type: VARCHAR
table: table_name_34
| SELECT name FROM table_name_34 WHERE years_played = "2004–2008" AND date_and_opponent = "2/17/07 vs. purdue" |
What is the 3rd place team for the year of 1955? | columns:
- name: year
type: VARCHAR
table: table_18618672_2
| SELECT 3 AS rd_place_team FROM table_18618672_2 WHERE year = 1955 |
What is the lowest Population, when Per Capita Income is "$16,330"? | columns:
- name: population
type: INTEGER
- name: per_capita_income
type: VARCHAR
table: table_name_80
| SELECT MIN(population) FROM table_name_80 WHERE per_capita_income = "$16,330" |
Name the date that had a record of 90-60 | columns:
- name: date
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_31
| SELECT date FROM table_name_31 WHERE record = "90-60" |
What imperative has måcha as 3.sg? | columns:
- name: imperative
type: VARCHAR
- name: "m\xE5cha"
type: VARCHAR
table: table_name_94
| SELECT imperative FROM table_name_94 WHERE måcha = "3.sg" |
Which catalogue is from the UK region, and is on vinyl, and was dated in 1986? | columns:
- name: catalogue
type: VARCHAR
- name: date
type: VARCHAR
- name: region
type: VARCHAR
- name: format
type: VARCHAR
table: table_name_33
| SELECT catalogue FROM table_name_33 WHERE region = "uk" AND format = "vinyl" AND date = "1986" |
how many times is march 27-29 is 129? | columns:
- name: november_3
type: VARCHAR
- name: march_27_29
type: VARCHAR
table: table_25355392_2
| SELECT COUNT(november_3) FROM table_25355392_2 WHERE march_27_29 = "129" |
Which date was for Japan? | columns:
- name: date
type: VARCHAR
- name: country
type: VARCHAR
table: table_name_66
| SELECT date FROM table_name_66 WHERE country = "japan" |
What is Matt Allen's sail number? | columns:
- name: sail_number
type: VARCHAR
- name: skipper
type: VARCHAR
table: table_25595209_1
| SELECT sail_number FROM table_25595209_1 WHERE skipper = "Matt Allen" |
What date has ny islanders as the visitor? | columns:
- name: date
type: VARCHAR
- name: visitor
type: VARCHAR
table: table_name_66
| SELECT date FROM table_name_66 WHERE visitor = "ny islanders" |
What is the power for the years 1975-84? | columns:
- name: power
type: VARCHAR
- name: years
type: VARCHAR
table: table_name_40
| SELECT power FROM table_name_40 WHERE years = "1975-84" |
Name the october when november is buffy tyler | columns:
- name: october
type: VARCHAR
- name: november
type: VARCHAR
table: table_name_17
| SELECT october FROM table_name_17 WHERE november = "buffy tyler" |
Tell me the location for win with record of 8-5 | columns:
- name: location
type: VARCHAR
- name: res
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_52
| SELECT location FROM table_name_52 WHERE res = "win" AND record = "8-5" |
What is the road team playing against Boston on April 16? | columns:
- name: road_team
type: VARCHAR
- name: home_team
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_94
| SELECT road_team FROM table_name_94 WHERE home_team = "boston" AND date = "april 16" |
What team was the game on November 21 played against? | columns:
- name: team
type: VARCHAR
- name: date
type: VARCHAR
table: table_17326036_5
| SELECT team FROM table_17326036_5 WHERE date = "November 21" |
Name the listen owners for repairone | columns:
- name: listed_owner_s_
type: VARCHAR
- name: primary_sponsor_s_
type: VARCHAR
table: table_2187178_1
| SELECT listed_owner_s_ FROM table_2187178_1 WHERE primary_sponsor_s_ = "RepairOne" |
Which 2007 has a 2008 of 0 / 4? | columns:
- name: Id
type: VARCHAR
table: table_name_90
| SELECT 2007 FROM table_name_90 WHERE 2008 = "0 / 4" |
What is the sum of all total values for Switzerland? | columns:
- name: total
type: INTEGER
- name: nation
type: VARCHAR
table: table_name_25
| SELECT SUM(total) FROM table_name_25 WHERE nation = "switzerland" |
What is the other name for martonoš? | columns:
- name: cyrillic_name_other_names
type: VARCHAR
- name: settlement
type: VARCHAR
table: table_2562572_33
| SELECT cyrillic_name_other_names FROM table_2562572_33 WHERE settlement = "Martonoš" |
Roslinda Samsu has what nationality? | columns:
- name: nationality
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_87
| SELECT nationality FROM table_name_87 WHERE name = "roslinda samsu" |
What was the highest attendance at a Detroit home game? | columns:
- name: attendance
type: INTEGER
- name: home
type: VARCHAR
table: table_name_83
| SELECT MAX(attendance) FROM table_name_83 WHERE home = "detroit" |
What was the overall draft pick of the player who was a db and attended college in iowa? | columns:
- name: overall
type: VARCHAR
- name: college
type: VARCHAR
- name: position
type: VARCHAR
table: table_name_82
| SELECT overall FROM table_name_82 WHERE college = "iowa" AND position = "db" |
Who was the outgoing manager when the incoming manager was laurenţiu reghecampf? | columns:
- name: outgoing_manager
type: VARCHAR
- name: incoming_manager
type: VARCHAR
table: table_26976615_3
| SELECT outgoing_manager FROM table_26976615_3 WHERE incoming_manager = "Laurenţiu Reghecampf" |
What is the unformatted capacity per side if the size is 8in? | columns:
- name: unformatted_capacity_per_side
type: VARCHAR
- name: size
type: VARCHAR
table: table_name_42
| SELECT unformatted_capacity_per_side FROM table_name_42 WHERE size = "8in" |
What is the grid total associated with 18 laps? | columns:
- name: grid
type: VARCHAR
- name: laps
type: VARCHAR
table: table_name_35
| SELECT COUNT(grid) FROM table_name_35 WHERE laps = 18 |
What is the number of goals against when the played is more than 38? | columns:
- name: goals_against
type: VARCHAR
- name: played
type: INTEGER
table: table_name_19
| SELECT COUNT(goals_against) FROM table_name_19 WHERE played > 38 |
What is game 9's record? | columns:
- name: record
type: VARCHAR
- name: game
type: VARCHAR
table: table_name_36
| SELECT record FROM table_name_36 WHERE game = 9 |
Was Magoffin a starting player? | columns:
- name: starter
type: VARCHAR
- name: player
type: VARCHAR
table: table_25711913_8
| SELECT starter FROM table_25711913_8 WHERE player = "Magoffin" |
What is the Result with an NFL Recap, played at bank of america stadium? | columns:
- name: result
type: VARCHAR
- name: nfl_recap
type: VARCHAR
- name: game_site
type: VARCHAR
table: table_name_41
| SELECT result FROM table_name_41 WHERE nfl_recap = "recap" AND game_site = "bank of america stadium" |
What CERCLIS ID is Deleted of 04/07/2008? | columns:
- name: cerclis_id
type: VARCHAR
- name: deleted
type: VARCHAR
table: table_name_16
| SELECT cerclis_id FROM table_name_16 WHERE deleted = "04/07/2008" |
What Name is administered by oral or iv, and is being investigated for thyroid imaging thyroid metastases imaging? | columns:
- name: name
type: VARCHAR
- name: route_of_administration
type: VARCHAR
- name: investigation
type: VARCHAR
table: table_name_61
| SELECT name FROM table_name_61 WHERE route_of_administration = "oral or iv" AND investigation = "thyroid imaging thyroid metastases imaging" |
When was Too Hop to Handle released? | columns:
- name: release_date
type: VARCHAR
- name: title
type: VARCHAR
table: table_name_68
| SELECT release_date FROM table_name_68 WHERE title = "too hop to handle" |
who is the the candidates with dbeingtrict being kansas 5 | columns:
- name: candidates
type: VARCHAR
- name: district
type: VARCHAR
table: table_1342359_15
| SELECT candidates FROM table_1342359_15 WHERE district = "Kansas 5" |
What is the average election for vicenza province with the liga veneta party? | columns:
- name: election
type: INTEGER
- name: party
type: VARCHAR
- name: province
type: VARCHAR
table: table_name_31
| SELECT AVG(election) FROM table_name_31 WHERE party = "liga veneta" AND province = "vicenza" |
What was the outcome of the game when the partner is Rafael Osuna? | columns:
- name: outcome
type: VARCHAR
- name: partner
type: VARCHAR
table: table_2215159_2
| SELECT outcome FROM table_2215159_2 WHERE partner = "Rafael Osuna" |
What college does Dennis Scott attend? | columns:
- name: college
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_26
| SELECT college FROM table_name_26 WHERE player = "dennis scott" |
What is the total number of quantity when the introductory year was 1984? | columns:
- name: quantity
type: INTEGER
- name: introduced
type: VARCHAR
table: table_name_30
| SELECT SUM(quantity) FROM table_name_30 WHERE introduced = 1984 |
Which Mascot has a Previous conference of independents, and a Location of akron? | columns:
- name: mascot
type: VARCHAR
- name: previous_conference
type: VARCHAR
- name: location
type: VARCHAR
table: table_name_38
| SELECT mascot FROM table_name_38 WHERE previous_conference = "independents" AND location = "akron" |
Name the total losses for 4 place and ties less than 0 | columns:
- name: losses
type: VARCHAR
- name: place
type: VARCHAR
- name: ties
type: VARCHAR
table: table_name_35
| SELECT COUNT(losses) FROM table_name_35 WHERE place = 4 AND ties < 0 |
What are the processors supported by a ddr2 memory and the nforce 550 model? | columns:
- name: processors_supported
type: VARCHAR
- name: memory
type: VARCHAR
- name: model
type: VARCHAR
table: table_name_91
| SELECT processors_supported FROM table_name_91 WHERE memory = "ddr2" AND model = "nforce 550" |
What was the highest average when Fuml was 0? | columns:
- name: avg
type: INTEGER
- name: fuml
type: INTEGER
table: table_name_57
| SELECT MAX(avg) FROM table_name_57 WHERE fuml < 0 |
Which Game is the lowest one that has a Record of 11-4? | columns:
- name: game
type: INTEGER
- name: record
type: VARCHAR
table: table_name_30
| SELECT MIN(game) FROM table_name_30 WHERE record = "11-4" |
What is the least silvers where there are 39 bronzes and the total is less than 120? | columns:
- name: silver
type: INTEGER
- name: bronze
type: VARCHAR
- name: total
type: VARCHAR
table: table_name_55
| SELECT MIN(silver) FROM table_name_55 WHERE bronze = 39 AND total < 120 |
Name the mountains classification for rabobank and damiano cunego | columns:
- name: mountains_classification
type: VARCHAR
- name: team_classification
type: VARCHAR
- name: general_classification
type: VARCHAR
table: table_29077342_19
| SELECT mountains_classification FROM table_29077342_19 WHERE team_classification = "Rabobank" AND general_classification = "Damiano Cunego" |
Tell me the average week for result of l 34–24 | columns:
- name: week
type: INTEGER
- name: result
type: VARCHAR
table: table_name_70
| SELECT AVG(week) FROM table_name_70 WHERE result = "l 34–24" |
what is the total sack for mike green when fumr is less than 0? | columns:
- name: sack
type: INTEGER
- name: player
type: VARCHAR
- name: fumr
type: VARCHAR
table: table_name_40
| SELECT SUM(sack) FROM table_name_40 WHERE player = "mike green" AND fumr < 0 |
What are the the approximate translations when the Morphological Category is 1st. plur. perfect? | columns:
- name: approximate_translation
type: VARCHAR
- name: morphological_category
type: VARCHAR
table: table_2784232_1
| SELECT approximate_translation FROM table_2784232_1 WHERE morphological_category = "1st. plur. perfect" |
Who is the player with £140,000? | columns:
- name: player
type: VARCHAR
- name: "money___\xA3__"
type: VARCHAR
table: table_name_97
| SELECT player FROM table_name_97 WHERE money___£__ = "140,000" |
What was the highest attendance for a game where Geelong was the home team? | columns:
- name: crowd
type: INTEGER
- name: home_team
type: VARCHAR
table: table_name_25
| SELECT MAX(crowd) FROM table_name_25 WHERE home_team = "geelong" |
What is the most recent year in which the score was 4–6, 6–3, 7–5? | columns:
- name: year
type: INTEGER
- name: score
type: VARCHAR
table: table_name_91
| SELECT MAX(year) FROM table_name_91 WHERE score = "4–6, 6–3, 7–5" |
When 2005 is the year played what is the lowest year drafted? | columns:
- name: year_drafted
type: INTEGER
- name: years_played
type: VARCHAR
table: table_18373863_2
| SELECT MIN(year_drafted) FROM table_18373863_2 WHERE years_played = "2005" |
If the Country of Origin is Denmark and the year of introduction is 1962, what is the primary cartridge? | columns:
- name: primary_cartridge
type: VARCHAR
- name: year_of_introduction
type: VARCHAR
- name: country_of_origin
type: VARCHAR
table: table_26389588_1
| SELECT primary_cartridge FROM table_26389588_1 WHERE year_of_introduction = "1962" AND country_of_origin = "Denmark" |
what is the nation when the penalty points is less than 40.2 and judge e is 82.22? | columns:
- name: nation
type: VARCHAR
- name: penalty_points
type: VARCHAR
- name: judge_e
type: VARCHAR
table: table_name_30
| SELECT nation FROM table_name_30 WHERE penalty_points < 40.2 AND judge_e = "82.22" |
Which country has t6 as a place and 75-70=145 as the score? | columns:
- name: country
type: VARCHAR
- name: place
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_9
| SELECT country FROM table_name_9 WHERE place = "t6" AND score = 75 - 70 = 145 |
What is the median income for a family whose per capita income is $18,296? | columns:
- name: median_family_income
type: VARCHAR
- name: per_capita_income
type: VARCHAR
table: table_name_14
| SELECT median_family_income FROM table_name_14 WHERE per_capita_income = "$18,296" |
How many positions did 1972 NHL Draft pick Rene Lambert play? | columns:
- name: position
type: VARCHAR
- name: player
type: VARCHAR
table: table_1473672_10
| SELECT COUNT(position) FROM table_1473672_10 WHERE player = "Rene Lambert" |
The player is Tim Regan and the pick # is position of d, what's the sum? | columns:
- name: pick__number
type: INTEGER
- name: position
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_37
| SELECT SUM(pick__number) FROM table_name_37 WHERE position = "d" AND player = "tim regan" |
What amount of senior high school where junior high school is 114cm? | columns:
- name: senior_high_school__15_18_yrs_
type: VARCHAR
- name: junior_high_school__12_15_yrs_
type: VARCHAR
table: table_13555999_1
| SELECT senior_high_school__15_18_yrs_ FROM table_13555999_1 WHERE junior_high_school__12_15_yrs_ = "114cm" |
Name the D 41 √ when it has D 43 √ of r 18 | columns:
- name: "d_41_\u221A"
type: VARCHAR
- name: "d_43_\u221A"
type: VARCHAR
table: table_name_35
| SELECT d_41_√ FROM table_name_35 WHERE d_43_√ = "r 18" |
What is the name of the episode with a production code of 107? | columns:
- name: episode_title
type: VARCHAR
- name: production_code
type: VARCHAR
table: table_24425976_2
| SELECT episode_title FROM table_24425976_2 WHERE production_code = "107" |
What's the location where the Years in GFL was 1988-? | columns:
- name: location
type: VARCHAR
- name: years_in_gfl
type: VARCHAR
table: table_name_39
| SELECT location FROM table_name_39 WHERE years_in_gfl = "1988-" |
What is the home team score for the team that has a home field of the Telstra Dome? | columns:
- name: home_team
type: VARCHAR
- name: ground
type: VARCHAR
table: table_name_98
| SELECT home_team AS score FROM table_name_98 WHERE ground = "telstra dome" |
What is the total number of Position, when Played is less than 46? | columns:
- name: position
type: VARCHAR
- name: played
type: INTEGER
table: table_name_51
| SELECT COUNT(position) FROM table_name_51 WHERE played < 46 |
Who is the coach of the team from Port Pirie? | columns:
- name: coach
type: VARCHAR
- name: location
type: VARCHAR
table: table_name_6
| SELECT coach FROM table_name_6 WHERE location = "port pirie" |
What is the outcome for the Hershey tournament? | columns:
- name: outcome
type: VARCHAR
- name: tournament
type: VARCHAR
table: table_name_1
| SELECT outcome FROM table_name_1 WHERE tournament = "hershey" |
What is the total number of medals won by teams that won more than 11 bronze medals? | columns:
- name: total
type: VARCHAR
- name: bronze
type: INTEGER
table: table_name_41
| SELECT COUNT(total) FROM table_name_41 WHERE bronze > 11 |
Opponent of houston texans had what result? | columns:
- name: result
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_2
| SELECT result FROM table_name_2 WHERE opponent = "houston texans" |
What is listed in game when the location attendance is listed as Keyarena 16,841? | columns:
- name: game
type: INTEGER
- name: location_attendance
type: VARCHAR
table: table_28768469_7
| SELECT MAX(game) FROM table_28768469_7 WHERE location_attendance = "KeyArena 16,841" |
What champions have 1 (2009) as the semi-finalists? | columns:
- name: champions
type: VARCHAR
- name: semi_finalists
type: VARCHAR
table: table_name_26
| SELECT champions FROM table_name_26 WHERE semi_finalists = "1 (2009)" |
Name the sum of played for position less than 9 and draws more than 19 with goals against more than 27 | columns:
- name: played
type: INTEGER
- name: goals_against
type: VARCHAR
- name: position
type: VARCHAR
- name: draws
type: VARCHAR
table: table_name_34
| SELECT SUM(played) FROM table_name_34 WHERE position < 9 AND draws > 19 AND goals_against > 27 |
What was the position for the Josef Kaufmann Racing team? | columns:
- name: position
type: VARCHAR
- name: team
type: VARCHAR
table: table_17246160_1
| SELECT position FROM table_17246160_1 WHERE team = "Josef Kaufmann Racing" |
What name has a spread of 69? | columns:
- name: name
type: VARCHAR
- name: spread
type: VARCHAR
table: table_name_96
| SELECT name FROM table_name_96 WHERE spread = 69 |
Where was the post 1991 tournament where the Czech Republic received the bronze and Russia received the silver? | columns:
- name: venue
type: VARCHAR
- name: silver
type: VARCHAR
- name: year
type: VARCHAR
- name: bronze
type: VARCHAR
table: table_name_40
| SELECT venue FROM table_name_40 WHERE year > 1991 AND bronze = "czech republic" AND silver = "russia" |
What was the date of birth of the member of the United States House of Representatives that began their term on April 24, 1902? | columns:
- name: date_of_birth
type: VARCHAR
- name: begin_date
type: VARCHAR
table: table_name_66
| SELECT date_of_birth FROM table_name_66 WHERE begin_date = "april 24, 1902" |
On what date did the Bills play the Houston Oilers before week 12? | columns:
- name: date
type: VARCHAR
- name: week
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_79
| SELECT date FROM table_name_79 WHERE week < 12 AND opponent = "houston oilers" |
What score in final has boris becker as the champion? | columns:
- name: score_in_final
type: VARCHAR
- name: champion
type: VARCHAR
table: table_name_54
| SELECT score_in_final FROM table_name_54 WHERE champion = "boris becker" |
What shows for gold when the rank is less than 3, and silver less than 1? | columns:
- name: gold
type: INTEGER
- name: rank
type: VARCHAR
- name: silver
type: VARCHAR
table: table_name_62
| SELECT SUM(gold) FROM table_name_62 WHERE rank < 3 AND silver < 1 |
How many Matches have an S/Rate smaller than 133.72, and a Team of yorkshire carnegie? | columns:
- name: matches
type: VARCHAR
- name: s_rate
type: VARCHAR
- name: team
type: VARCHAR
table: table_name_96
| SELECT COUNT(matches) FROM table_name_96 WHERE s_rate < 133.72 AND team = "yorkshire carnegie" |
What is the nt identity when the species is drosophilia melanogaster? | columns:
- name: nt_identity
type: VARCHAR
- name: species
type: VARCHAR
table: table_26708105_5
| SELECT nt_identity FROM table_26708105_5 WHERE species = "Drosophilia melanogaster" |
What are all the AAA classes in the school years of 2005-06? | columns:
- name: class_aAA
type: VARCHAR
- name: school_year
type: VARCHAR
table: table_14603212_5
| SELECT class_aAA FROM table_14603212_5 WHERE school_year = "2005-06" |
What is the Date of the Competition with a Score of 2–0? | columns:
- name: date
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_96
| SELECT date FROM table_name_96 WHERE score = "2–0" |
Which Right ascension (J2000) has a Constellation of mensa, and an NGC number larger than 2171? | columns:
- name: right_ascension___j2000__
type: VARCHAR
- name: constellation
type: VARCHAR
- name: ngc_number
type: VARCHAR
table: table_name_98
| SELECT right_ascension___j2000__ FROM table_name_98 WHERE constellation = "mensa" AND ngc_number > 2171 |
What is the qual 2 when the qual 1 is 1:16.841? | columns:
- name: qual_2
type: VARCHAR
- name: qual_1
type: VARCHAR
table: table_name_49
| SELECT qual_2 FROM table_name_49 WHERE qual_1 = "1:16.841" |
WHAT IS THE SOURCE WITH A TYPE OF TRANSFER AND MEX? | columns:
- name: source
type: VARCHAR
- name: type
type: VARCHAR
- name: nat
type: VARCHAR
table: table_name_14
| SELECT source FROM table_name_14 WHERE type = "transfer" AND nat = "mex" |
What was the result for the fil Paljas? | columns:
- name: result
type: VARCHAR
- name: film_title
type: VARCHAR
table: table_name_1
| SELECT result FROM table_name_1 WHERE film_title = "paljas" |
Which event has 12-1 as a record? | columns:
- name: event
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_43
| SELECT event FROM table_name_43 WHERE record = "12-1" |
What kind of competition was it at San Siro at 18:30 GMT? | columns:
- name: competition
type: VARCHAR
- name: ground
type: VARCHAR
- name: time
type: VARCHAR
table: table_name_60
| SELECT competition FROM table_name_60 WHERE ground = "san siro" AND time = "18:30 gmt" |
Which player had a score of 71-73-68-75=287? | columns:
- name: player
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_53
| SELECT player FROM table_name_53 WHERE score = 71 - 73 - 68 - 75 = 287 |
Which city of license has a wriq Call sign? | columns:
- name: city_of_license
type: VARCHAR
- name: call_sign
type: VARCHAR
table: table_name_34
| SELECT city_of_license FROM table_name_34 WHERE call_sign = "wriq" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.