answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT result FROM table_name_95 WHERE event = "2012 ibjjf world jiu-jitsu championships" AND method = "points (4 x 0)" | What was the result for the 2012 ibjjf world jiu-jitsu championships event when the method was points (4 x 0)? | CREATE TABLE table_name_95 (result VARCHAR, event VARCHAR, method VARCHAR) |
SELECT T1.fname FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid WHERE T3.dorm_name = 'Smith Hall' | Find the first name of students who are living in the Smith Hall. | CREATE TABLE student (fname VARCHAR, stuid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR) |
SELECT pos FROM table_name_79 WHERE team = "racing organisation course" | What was the position of the Racing Organisation Course team? | CREATE TABLE table_name_79 (pos VARCHAR, team VARCHAR) |
SELECT surface FROM table_name_77 WHERE outcome = "runner-up" AND date = "24 february 1997" | What is the Surface when Todd Woodbridge was the runner-up, and a Date of 24 february 1997? | CREATE TABLE table_name_77 (surface VARCHAR, outcome VARCHAR, date VARCHAR) |
SELECT AVG(events) FROM table_name_11 WHERE rank < 2 AND wins < 5 | What is the average events where the rank is smaller than 2 and wins are smaller than 5? | CREATE TABLE table_name_11 (events INTEGER, rank VARCHAR, wins VARCHAR) |
SELECT producer FROM table_name_17 WHERE narrator = "katherine kellgren" AND year < 2013 AND author = "karen cushman" | who is the producer when the narrator is katherine kellgren, the year is before 2013 and the author is karen cushman? | CREATE TABLE table_name_17 (producer VARCHAR, author VARCHAR, narrator VARCHAR, year VARCHAR) |
SELECT MAX(decile) FROM table_name_47 WHERE roll > 34 AND gender = "coed" AND authority = "state integrated" AND area = "georgetown" | What is the largest decile with a Roll larger than 34, a Gender of coed, and an Authority of state integrated, and an Area of georgetown? | CREATE TABLE table_name_47 (decile INTEGER, area VARCHAR, authority VARCHAR, roll VARCHAR, gender VARCHAR) |
SELECT MIN(round) FROM table_name_16 WHERE college = "purdue" AND pick > 10 | What was the earliest round that Purdue had a pick larger than 10? | CREATE TABLE table_name_16 (round INTEGER, college VARCHAR, pick VARCHAR) |
SELECT republican_ticket FROM table_name_5 WHERE american_labor_ticket = "matthew j. merritt" | Which Republican ran against the American Labor candidate Matthew J. Merritt? | CREATE TABLE table_name_5 (republican_ticket VARCHAR, american_labor_ticket VARCHAR) |
SELECT T1.statement_details, T2.document_name FROM Statements AS T1 JOIN Documents AS T2 ON T1.statement_id = T2.document_id WHERE T1.statement_details = 'Private Project' | Show the statement detail and the corresponding document name for the statement with detail 'Private Project'. | CREATE TABLE Statements (statement_details VARCHAR, statement_id VARCHAR); CREATE TABLE Documents (document_name VARCHAR, document_id VARCHAR) |
SELECT MIN(enrollment) FROM table_name_19 WHERE founded = "1992" AND joined_conference < 1998 | What is the lowest enrolled school that was founded in 1992 and joined a conference before 1998? | CREATE TABLE table_name_19 (enrollment INTEGER, founded VARCHAR, joined_conference VARCHAR) |
SELECT player FROM table_name_63 WHERE country = "france" | What player is from France? | CREATE TABLE table_name_63 (player VARCHAR, country VARCHAR) |
SELECT years_at_club FROM table_name_61 WHERE goals < 62 AND debut_year = 1981 AND games = 28 | What are the years for the player with fewer than 62 goals, debut year of 1981 and 28 games? | CREATE TABLE table_name_61 (years_at_club VARCHAR, games VARCHAR, goals VARCHAR, debut_year VARCHAR) |
SELECT years_for_rockets FROM table_11734041_6 WHERE player = "Ford, Alton Alton Ford" | What years for the rockets did player ford, alton alton ford play? | CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR) |
SELECT episodes FROM table_name_46 WHERE rank = "detective senior constable" AND actor_actress = "daniel macpherson" | What episode did actor Daniel Macpherson's character have the rank of Detective Senior Constable | CREATE TABLE table_name_46 (episodes VARCHAR, rank VARCHAR, actor_actress VARCHAR) |
SELECT club FROM table_name_91 WHERE tries_against = "45" | Which club participated with a record of 45 tries against? | CREATE TABLE table_name_91 (club VARCHAR, tries_against VARCHAR) |
SELECT location FROM table_name_28 WHERE county = "30 hancock" | What is the Location with a county of 30 Hancock? | CREATE TABLE table_name_28 (location VARCHAR, county VARCHAR) |
SELECT permanent_account FROM table_name_96 WHERE updated_in_past_30_days = "10324" | What is Permanent Account, when Updated In Past 30 Days is 10324? | CREATE TABLE table_name_96 (permanent_account VARCHAR, updated_in_past_30_days VARCHAR) |
SELECT COUNT(crowd) FROM table_name_42 WHERE home_team = "essendon" | What was the attendance when Essendon played as the home team? | CREATE TABLE table_name_42 (crowd VARCHAR, home_team VARCHAR) |
SELECT AVG(rating) FROM table_name_51 WHERE player = "john kidd" AND yards > 0 | What is the average rating for john kidd with more than 0 yards? | CREATE TABLE table_name_51 (rating INTEGER, player VARCHAR, yards VARCHAR) |
SELECT winning_score FROM table_name_4 WHERE date = "7 jun 1976" | What was the winning score on 7 jun 1976? | CREATE TABLE table_name_4 (winning_score VARCHAR, date VARCHAR) |
SELECT format FROM table_name_93 WHERE label = "toy's factory records" | Which Format has a Label of toy's factory records? | CREATE TABLE table_name_93 (format VARCHAR, label VARCHAR) |
SELECT type FROM table_name_65 WHERE project = "igmdp" AND weight__kg_ = "16,000" | Name the typ for project of igmdp and weight of 16,000 | CREATE TABLE table_name_65 (type VARCHAR, project VARCHAR, weight__kg_ VARCHAR) |
SELECT surface FROM table_name_45 WHERE score = "6–4, 6–2" | Which surface has a Score of 6–4, 6–2? | CREATE TABLE table_name_45 (surface VARCHAR, score VARCHAR) |
SELECT electorate FROM table_20217811_1 WHERE united_future = "4.47%" | Name the electoraate for united future being 4.47% | CREATE TABLE table_20217811_1 (electorate VARCHAR, united_future VARCHAR) |
SELECT year FROM table_name_87 WHERE ceremony = "32nd" AND name = "william a. horning" AND film = "north by northwest" | In what Year was the 32nd Ceremony with winner William A. Horning in the Film North by Northwest? | CREATE TABLE table_name_87 (year VARCHAR, film VARCHAR, ceremony VARCHAR, name VARCHAR) |
SELECT MIN(cpc_blend_kazakhstan) FROM table_name_38 WHERE draugen_north_sea = 17 | What is the lowest CPC Blend Kazakhstan number when Draugen North Sea is 17? | CREATE TABLE table_name_38 (cpc_blend_kazakhstan INTEGER, draugen_north_sea VARCHAR) |
SELECT points_for FROM table_name_52 WHERE points_against = "414" | What were the points for a team that 414 points against? | CREATE TABLE table_name_52 (points_for VARCHAR, points_against VARCHAR) |
SELECT MAX(week) FROM table_name_9 WHERE date = "october 27, 1968" | What was the attendance on October 27, 1968? | CREATE TABLE table_name_9 (week INTEGER, date VARCHAR) |
SELECT played FROM table_13564637_4 WHERE points_against = "321" | What is the played total when the points against was 321? | CREATE TABLE table_13564637_4 (played VARCHAR, points_against VARCHAR) |
SELECT nickname FROM table_name_93 WHERE institution = "university of wisconsin-platteville" | What is the team nickname of university of wisconsin-platteville? | CREATE TABLE table_name_93 (nickname VARCHAR, institution VARCHAR) |
SELECT runner_s__up FROM table_name_65 WHERE tournament = "general foods pga seniors' championship" | Which Runner(s)-up has a Tournament of general foods pga seniors' championship? | CREATE TABLE table_name_65 (runner_s__up VARCHAR, tournament VARCHAR) |
SELECT score FROM table_name_50 WHERE tie_no = "11" | What is the score for the game with an 11 tie number? | CREATE TABLE table_name_50 (score VARCHAR, tie_no VARCHAR) |
SELECT budget FROM table_name_28 WHERE worldwide = "$363,398,565" | WHAT IS THE BUDGET WHEN THE WORLDWIDE BOX OFFICE IS $363,398,565? | CREATE TABLE table_name_28 (budget VARCHAR, worldwide VARCHAR) |
SELECT date FROM table_name_13 WHERE venue = "kardinia park" | What is the date of the game when the venue is Kardinia Park? | CREATE TABLE table_name_13 (date VARCHAR, venue VARCHAR) |
SELECT 1994 FROM table_name_84 WHERE 1995 = "1r" | What's the 1994 if 1995 has a 1R? | CREATE TABLE table_name_84 (Id VARCHAR) |
SELECT COUNT(title) FROM table_25716397_1 WHERE written_by = "Joe Toplyn" | How many titles does the episode written by Joe Toplyn have? | CREATE TABLE table_25716397_1 (title VARCHAR, written_by VARCHAR) |
SELECT date FROM table_name_58 WHERE record = "9–8–1" | What was the date of the game when the Lightning had a record of 9–8–1? | CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR) |
SELECT AVG(genes) FROM table_name_84 WHERE reference = "2009" AND strain = "rku-1" | what is the average genes when the reference is 2009 and the strain is rku-1? | CREATE TABLE table_name_84 (genes INTEGER, reference VARCHAR, strain VARCHAR) |
SELECT COUNT(title) FROM table_23287683_1 WHERE directed_by = "Sarah Pia Anderson" | How many episodes were directed by Sarah Pia Anderson? | CREATE TABLE table_23287683_1 (title VARCHAR, directed_by VARCHAR) |
SELECT date FROM table_name_46 WHERE against = "morocco" AND surface = "hard" | What's the date that Morocco has an Against along with a surface of hard? | CREATE TABLE table_name_46 (date VARCHAR, against VARCHAR, surface VARCHAR) |
SELECT MIN(points) FROM table_name_96 WHERE year = 2004 | What are the lowest points in 2004? | CREATE TABLE table_name_96 (points INTEGER, year VARCHAR) |
SELECT nationality FROM table_2679061_9 WHERE player = "Cliff Abrecht" | What was the nationality of player Cliff Abrecht? | CREATE TABLE table_2679061_9 (nationality VARCHAR, player VARCHAR) |
SELECT away_team FROM table_name_32 WHERE home_team = "hereford united" | What team was the away team when the home team was Hereford United? | CREATE TABLE table_name_32 (away_team VARCHAR, home_team VARCHAR) |
SELECT MAX(crowd) FROM table_name_10 WHERE away_team = "north melbourne" | What is the highest crowd with north melbourne as away team? | CREATE TABLE table_name_10 (crowd INTEGER, away_team VARCHAR) |
SELECT round FROM table_name_74 WHERE overall < 102 | When the Overall is under 102, what's the round played? | CREATE TABLE table_name_74 (round VARCHAR, overall INTEGER) |
SELECT area__km²_ FROM table_1691800_2 WHERE municipality = "Labrador" | what is th area where the municipaity is labrador? | CREATE TABLE table_1691800_2 (area__km²_ VARCHAR, municipality VARCHAR) |
SELECT title FROM table_name_83 WHERE format = "2-cd" AND story__number = "026" | Available in 2-CD format, what is the title of story number 026? | CREATE TABLE table_name_83 (title VARCHAR, format VARCHAR, story__number VARCHAR) |
SELECT AVG(area__km²_) FROM table_name_21 WHERE population__2011_ = 8574 AND population_density > 381.4 | What was the Area (km²) when the Population (2011) was 8574, and the Population density was larger than 381.4? | CREATE TABLE table_name_21 (area__km²_ INTEGER, population__2011_ VARCHAR, population_density VARCHAR) |
SELECT MAX(floors) FROM table_name_84 WHERE name = "one indiana square" | Which Floors is the highest one that has a Name of one indiana square? | CREATE TABLE table_name_84 (floors INTEGER, name VARCHAR) |
SELECT SUM(gain) FROM table_name_27 WHERE long > 8 AND avg_g = 124.9 | How many gains have a long greater than 8, with avg/g of 124.9? | CREATE TABLE table_name_27 (gain INTEGER, long VARCHAR, avg_g VARCHAR) |
SELECT SUM(year) FROM table_name_95 WHERE state = "orissa" AND name = "prof. priyambada mohanty hejmadi" | What is the sum of the years when the winner was prof. priyambada mohanty hejmadi from orissa? | CREATE TABLE table_name_95 (year INTEGER, state VARCHAR, name VARCHAR) |
SELECT venue FROM table_name_89 WHERE away_team = "hawthorn" | Where did Hawthorn play as the away team? | CREATE TABLE table_name_89 (venue VARCHAR, away_team VARCHAR) |
SELECT incumbent FROM table_1342149_13 WHERE first_elected = 1932 | What is the incumbent for 1932? | CREATE TABLE table_1342149_13 (incumbent VARCHAR, first_elected VARCHAR) |
SELECT position FROM table_name_45 WHERE overall > 421 AND mlb_team = "st. louis cardinals" | Which position was more than 421 overall for the St. Louis Cardinals? | CREATE TABLE table_name_45 (position VARCHAR, overall VARCHAR, mlb_team VARCHAR) |
SELECT points_for FROM table_name_24 WHERE lost = "6" AND try_bonus = "9" | How many points is there when the lost is 6 and the try bonus is 9? | CREATE TABLE table_name_24 (points_for VARCHAR, lost VARCHAR, try_bonus VARCHAR) |
SELECT date FROM table_name_56 WHERE machine = "norton" AND rider = "harry l stephen" | Harry l Stephen rides a Norton machine on what date? | CREATE TABLE table_name_56 (date VARCHAR, machine VARCHAR, rider VARCHAR) |
SELECT school_club_team FROM table_name_31 WHERE pick = 33 | What school/club had pick 33? | CREATE TABLE table_name_31 (school_club_team VARCHAR, pick VARCHAR) |
SELECT MAX(laps) FROM table_name_37 WHERE time_retired = "engine" AND grid = 5 | Name the highest laps for time/retired of engine and grid of 5 | CREATE TABLE table_name_37 (laps INTEGER, time_retired VARCHAR, grid VARCHAR) |
SELECT draw FROM table_name_23 WHERE lost < 6 AND points = 28 | What draw has a lost less than 6 with 28 as the points? | CREATE TABLE table_name_23 (draw VARCHAR, lost VARCHAR, points VARCHAR) |
SELECT school_club_team FROM table_15621965_8 WHERE player = "Dwight Howard" | What school did Dwight Howard play for | CREATE TABLE table_15621965_8 (school_club_team VARCHAR, player VARCHAR) |
SELECT MAX(round) FROM table_name_34 WHERE college = "toledo" AND pick < 92 | What is the largest round of a pick smaller than 92 from Toledo University? | CREATE TABLE table_name_34 (round INTEGER, college VARCHAR, pick VARCHAR) |
SELECT MIN(clubs) FROM table_name_88 WHERE place > 5 AND all_around > 9.7 | What are the lowest clubs that have a place greater than 5, with an all around greater than 9.7? | CREATE TABLE table_name_88 (clubs INTEGER, place VARCHAR, all_around VARCHAR) |
SELECT stamp_duty_reserve_tax FROM table_1618358_1 WHERE over_total_tax_revenue__in__percentage_ = "0.79" | What is the stamp duty reserve tax when the percentage over total tax revenue is 0.79? | CREATE TABLE table_1618358_1 (stamp_duty_reserve_tax VARCHAR, over_total_tax_revenue__in__percentage_ VARCHAR) |
SELECT opponent FROM table_name_14 WHERE date = "april 10" | What opponent has april 10 as the date? | CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR) |
SELECT sub_parish__sokn_ FROM table_name_30 WHERE year_built = "1957" AND location_of_the_church = "stavang" | What is the Sub-Parish (Sokn) that was built in 1957 in the location of Stavang? | CREATE TABLE table_name_30 (sub_parish__sokn_ VARCHAR, year_built VARCHAR, location_of_the_church VARCHAR) |
SELECT entered_the_house FROM table_name_82 WHERE evicted = "day 29" AND name = "slađana pejić" | When did slađana pejić, who was evicted on day 29, enter the house? | CREATE TABLE table_name_82 (entered_the_house VARCHAR, evicted VARCHAR, name VARCHAR) |
SELECT lyrics_by FROM table_191105_2 WHERE subject = "interjection" | When interjection is the subject who are the lyrics by? | CREATE TABLE table_191105_2 (lyrics_by VARCHAR, subject VARCHAR) |
SELECT venue FROM table_name_86 WHERE fielding_team = "sri lanka" | In what venue did the fielding team Sri Lanka play? | CREATE TABLE table_name_86 (venue VARCHAR, fielding_team VARCHAR) |
SELECT MIN(2008) FROM table_name_45 WHERE year = "guizhou" AND 2005 < 31 | Name the lowest 2008 for guizhou when 2005 is less than 31 | CREATE TABLE table_name_45 (year VARCHAR) |
SELECT AVG(pieces) FROM table_name_14 WHERE start = "1941" AND release > 2001 | What is the average number of pieces for boards that started in 1941 and were released after 2001? | CREATE TABLE table_name_14 (pieces INTEGER, start VARCHAR, release VARCHAR) |
SELECT COUNT(DISTINCT sportname) FROM Sportsinfo | How many sports do we have? | CREATE TABLE Sportsinfo (sportname VARCHAR) |
SELECT country FROM table_11884814_3 WHERE swimsuit = "9.67" | Which country had the swimsuit score 9.67? | CREATE TABLE table_11884814_3 (country VARCHAR, swimsuit VARCHAR) |
SELECT schwaben FROM table_name_15 WHERE oberbayern = "fc bayern munich ii" AND mittelfranken = "1. fc nuremberg ii" | Which Schwaben has a Oberbayern of fc bayern munich ii and a Mittelfranken of 1. fc nuremberg ii? | CREATE TABLE table_name_15 (schwaben VARCHAR, oberbayern VARCHAR, mittelfranken VARCHAR) |
SELECT COUNT(rank) FROM table_name_14 WHERE director = "kevin costner" | What is the rank of the film directed by Kevin Costner? | CREATE TABLE table_name_14 (rank VARCHAR, director VARCHAR) |
SELECT number_of_crews FROM table_23508196_5 WHERE type_of_unit = "Light bombardment group" | Name the number of crews for light bombardment group | CREATE TABLE table_23508196_5 (number_of_crews VARCHAR, type_of_unit VARCHAR) |
SELECT MAX(place) FROM table_name_37 WHERE national_final = "4th" AND points < 139 | what is the highest place when the national final is 4th and the points is less than 139? | CREATE TABLE table_name_37 (place INTEGER, national_final VARCHAR, points VARCHAR) |
SELECT crowd FROM table_name_12 WHERE home_team = "st kilda" | During st kilda's home game, what was the number of people in the crowd? | CREATE TABLE table_name_12 (crowd VARCHAR, home_team VARCHAR) |
SELECT ticket_price_s_ FROM table_name_7 WHERE venue = "canadian national exhibition stadium" | What is the ticket price at Canadian National Exhibition Stadium? | CREATE TABLE table_name_7 (ticket_price_s_ VARCHAR, venue VARCHAR) |
SELECT score FROM table_name_58 WHERE opponent = "bornor regis town" | What was the score when Bornor Regis Town was the opponent? | CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR) |
SELECT runner_up FROM table_name_62 WHERE margin_of_victory = "2 strokes" AND to_par = "−16" | Who was the runner-up in the tournament that has a margin of victory of 2 strokes, and a To par of −16? | CREATE TABLE table_name_62 (runner_up VARCHAR, margin_of_victory VARCHAR, to_par VARCHAR) |
SELECT MIN(population) FROM table_name_37 WHERE median_family_income = "$74,905" AND number_of_households < 145 OFFSET 790 | Which Population is the lowest one that has a Median family income of $74,905, and a Number of households smaller than 145,790? | CREATE TABLE table_name_37 (population INTEGER, median_family_income VARCHAR, number_of_households VARCHAR) |
SELECT district FROM table_13618584_1 WHERE incumbent = "Charles Hawkins" | In what district was the incumbent Charles Hawkins? | CREATE TABLE table_13618584_1 (district VARCHAR, incumbent VARCHAR) |
SELECT track_s_ FROM table_name_86 WHERE date = "18 november 1985" | Which Track(s) is on 18 november 1985? | CREATE TABLE table_name_86 (track_s_ VARCHAR, date VARCHAR) |
SELECT final__bronze_medal_match FROM table_18602462_21 WHERE quarterfinals = "Houdet ( FRA ) W 6-2, 6-1" | When houdet ( fra ) w 6-2, 6-1 is the quarterfinals what is the final/bronze medal match? | CREATE TABLE table_18602462_21 (final__bronze_medal_match VARCHAR, quarterfinals VARCHAR) |
SELECT class FROM table_name_66 WHERE no_built = 55 | Which class at 55 built? | CREATE TABLE table_name_66 (class VARCHAR, no_built VARCHAR) |
SELECT MAX(extra_points) FROM table_name_20 WHERE points = 28 AND field_goals < 0 | What is the highest amount of extra points someone got when they scored 28 points but had 0 field goals? | CREATE TABLE table_name_20 (extra_points INTEGER, points VARCHAR, field_goals VARCHAR) |
SELECT MIN(total_kurdistan_list) FROM table_24440361_1 | Name the least total kurdistan list | CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER) |
SELECT manner_of_departure FROM table_name_47 WHERE replaced_by = "dick advocaat" | What manner of departure was Dick Advocaat replaced by? | CREATE TABLE table_name_47 (manner_of_departure VARCHAR, replaced_by VARCHAR) |
SELECT COUNT(year_s_) FROM table_17766232_7 WHERE final_television_commentator = "Tom Fleming" | In how many years was Tom Fleming the final television commentator? | CREATE TABLE table_17766232_7 (year_s_ VARCHAR, final_television_commentator VARCHAR) |
SELECT genre FROM table_name_72 WHERE year = "2006" | What is the genre of the game from 2006? | CREATE TABLE table_name_72 (genre VARCHAR, year VARCHAR) |
SELECT result FROM table_name_56 WHERE opponent = "arsenal" | What was the result when the opponent was Arsenal? | CREATE TABLE table_name_56 (result VARCHAR, opponent VARCHAR) |
SELECT t1.payment_method FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id GROUP BY t1.customer_name ORDER BY SUM(t3.order_quantity) LIMIT 1 | What is the payment method of the customer that has purchased the least quantity of items? | CREATE TABLE order_items (order_id VARCHAR, order_quantity INTEGER); CREATE TABLE customers (payment_method VARCHAR, customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR) |
SELECT label FROM table_name_80 WHERE date_of_release = 1991 | WHAT LABEL HAD A RELEASE DATE OF 1991? | CREATE TABLE table_name_80 (label VARCHAR, date_of_release VARCHAR) |
SELECT score FROM table_17311797_10 WHERE game = 81 | What was the score in game 81? | CREATE TABLE table_17311797_10 (score VARCHAR, game VARCHAR) |
SELECT MIN(rank) FROM table_name_60 WHERE source_of_copper = "copper ore, concentrated and leached" | What's the lowest ranking source of copper, copper ore, concentrated and leached? | CREATE TABLE table_name_60 (rank INTEGER, source_of_copper VARCHAR) |
SELECT SUM(change) FROM table_name_89 WHERE _percentage_votes < 4.7 AND seats > 0 | What is the change number with fewer than 4.7% votes and more than 0 seats? | CREATE TABLE table_name_89 (change INTEGER, _percentage_votes VARCHAR, seats VARCHAR) |
SELECT height_from_sea_level_in_meters FROM table_1430913_1 WHERE category = "Extremely Adventures" | If extremely adventures is the category what is the height from sea level in meters? | CREATE TABLE table_1430913_1 (height_from_sea_level_in_meters VARCHAR, category VARCHAR) |
SELECT opponent FROM table_name_7 WHERE week = 15 | Which team was the opponent on week 15? | CREATE TABLE table_name_7 (opponent VARCHAR, week VARCHAR) |
SELECT entrant FROM table_name_22 WHERE year > 1987 AND chassis = "benetton b188" AND points = 12 | which entrant after 1987 had 12 points and a benetton b188 chassis? | CREATE TABLE table_name_22 (entrant VARCHAR, points VARCHAR, year VARCHAR, chassis VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.