answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT AVG(year) FROM table_name_75 WHERE class = "500cc" AND wins < 0 | Class of 500cc, and a Wins smaller than 0 had what average year? | CREATE TABLE table_name_75 (year INTEGER, class VARCHAR, wins 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 school FROM table_name_81 WHERE team_name = "panthers" AND year_left = "1968" | Which school left in 1968 and has the team name of Panthers? | CREATE TABLE table_name_81 (school VARCHAR, team_name VARCHAR, year_left VARCHAR) |
SELECT MAX(mccain_number) FROM table_name_47 WHERE others_percentage = "1.6%" AND mccain_percentage = "40.5%" AND obama_number < 256 OFFSET 299 | What is the highest number of votes for McCain in a county that voted 1.6% for other, 40.5% for McCain, and fewer than 256,299 votes for Obama? | CREATE TABLE table_name_47 (mccain_number INTEGER, obama_number VARCHAR, others_percentage VARCHAR, mccain_percentage VARCHAR) |
SELECT COUNT(university_of_dublin) FROM table_name_46 WHERE cultural_and_educational_panel = 5 AND industrial_and_commercial_panel < 9 | What is the number for the University of Dublin with their Cultural and Educational Panel of 5, and an Industrial and Commercial Panel with less than 9? | CREATE TABLE table_name_46 (university_of_dublin VARCHAR, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR) |
SELECT AVG(tonnage) FROM table_name_81 WHERE name_of_ship = "proletarij" | What is the average tonnage of the ship named proletarij? | CREATE TABLE table_name_81 (tonnage INTEGER, name_of_ship VARCHAR) |
SELECT MIN(silver) FROM table_22360_3 WHERE discipline = "Baseball" | Name the silver for baseball | CREATE TABLE table_22360_3 (silver INTEGER, discipline VARCHAR) |
SELECT country FROM table_name_15 WHERE player = "fred haas" | Where is Fred Haas from? | CREATE TABLE table_name_15 (country VARCHAR, player VARCHAR) |
SELECT MIN(dma) FROM table_19131921_1 WHERE format = "Rhythmic Contemporary" | What is the dma when the format is rhythmic contemporary? | CREATE TABLE table_19131921_1 (dma INTEGER, format VARCHAR) |
SELECT COUNT(party) FROM table_1341423_36 WHERE district = "Oklahoma 5" | How many party were listed for district oklahoma 5? | CREATE TABLE table_1341423_36 (party VARCHAR, district VARCHAR) |
SELECT home_team FROM table_name_33 WHERE tie_no = "2" | For Tie #2, who was the home team? | CREATE TABLE table_name_33 (home_team VARCHAR, tie_no VARCHAR) |
SELECT surface FROM table_name_67 WHERE score = "4–6, 6–2, [10–7]" | What surface was played on that resulted in a score of 4–6, 6–2, [10–7]? | CREATE TABLE table_name_67 (surface VARCHAR, score VARCHAR) |
SELECT away_team AS score FROM table_name_15 WHERE away_team = "st kilda" | what was the away team with st kilda as the away team? | CREATE TABLE table_name_15 (away_team VARCHAR) |
SELECT score FROM table_name_7 WHERE record = "22-55" | What is the score of the game where the record was 22-55? | CREATE TABLE table_name_7 (score VARCHAR, record VARCHAR) |
SELECT aircraft AS damage FROM table_name_51 WHERE aircraft = "boeing 707-320b" | What was the aircraft damage for the Boeing 707-320B? | CREATE TABLE table_name_51 (aircraft VARCHAR) |
SELECT time_retired FROM table_name_10 WHERE laps < 53 AND driver = "innes ireland" | When the driver is innes ireland and they drove under 53 laps, what was the Time/Retired? | CREATE TABLE table_name_10 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR) |
SELECT record FROM table_name_19 WHERE time = "3:38" | What Records Time is 3:38? | CREATE TABLE table_name_19 (record VARCHAR, time VARCHAR) |
SELECT position FROM table_25557880_1 WHERE points = "38" | What was his position when he garnered 38 points? | CREATE TABLE table_25557880_1 (position VARCHAR, points VARCHAR) |
SELECT cust_name, acc_bal FROM customer WHERE cust_name LIKE '%a%' | Find the name and account balance of the customer whose name includes the letter ‘a’. | CREATE TABLE customer (cust_name VARCHAR, acc_bal VARCHAR) |
SELECT MIN(to_par) FROM table_name_97 WHERE total < 148 AND year_s__won = "1959 , 1968 , 1974" | What is the lowest To par, when Total is greater than 148, and when Year(s) Won is "1959 , 1968 , 1974"? | CREATE TABLE table_name_97 (to_par INTEGER, total VARCHAR, year_s__won VARCHAR) |
SELECT COUNT(stadium) FROM table_11208143_9 WHERE capacity = 7500 | How many stadiums are there with a capacity of 7500? | CREATE TABLE table_11208143_9 (stadium VARCHAR, capacity VARCHAR) |
SELECT MIN(total_min_2_medals_) FROM table_22355_23 | What is the least amount of total medals won? | CREATE TABLE table_22355_23 (total_min_2_medals_ INTEGER) |
SELECT content FROM table_name_20 WHERE television_service = "la sorgente sat 3" | What is the content for la sorgente sat 3? | CREATE TABLE table_name_20 (content VARCHAR, television_service VARCHAR) |
SELECT 2011 FROM table_name_90 WHERE 2007 = "q3" | WHAT IS THE 2011 PERFORMANCE WITH A 2007 OF Q3? | CREATE TABLE table_name_90 (Id VARCHAR) |
SELECT region FROM table_name_65 WHERE area__km²_ = "9,451" | Which Region has an Area of 9,451km²? | CREATE TABLE table_name_65 (region VARCHAR, area__km²_ VARCHAR) |
SELECT title FROM table_10935205_1 WHERE us_airdate = "4 April 2008" | For the episode(s) aired in the U.S. on 4 april 2008, what were the names? | CREATE TABLE table_10935205_1 (title VARCHAR, us_airdate VARCHAR) |
SELECT to_par FROM table_name_86 WHERE runner_s__up = "fredrik andersson hed" | What is the To par when fredrik andersson hed was runner-up? | CREATE TABLE table_name_86 (to_par VARCHAR, runner_s__up VARCHAR) |
SELECT other FROM table_1850282_7 WHERE species = "Chironius multiventris septentrionalis" | Name the other for chironius multiventris septentrionalis | CREATE TABLE table_1850282_7 (other VARCHAR, species VARCHAR) |
SELECT attendance FROM table_name_90 WHERE venue = "stadion" AND score = "2-0" | What was the number of attendance at Stadion with a score of 2-0 | CREATE TABLE table_name_90 (attendance VARCHAR, venue VARCHAR, score VARCHAR) |
SELECT attendance FROM table_name_92 WHERE week = 1 | What is the attendance of week 1 | CREATE TABLE table_name_92 (attendance VARCHAR, week VARCHAR) |
SELECT AVG(total) FROM table_name_47 WHERE nation = "austria" AND bronze < 1 | What is the total for Austria when there is less than 1 bronze? | CREATE TABLE table_name_47 (total INTEGER, nation VARCHAR, bronze VARCHAR) |
SELECT T3.amenity_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T1.dorm_name = 'Smith Hall' | Find the name of amenities Smith Hall dorm have. | CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm_amenity (amenity_name VARCHAR, amenid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR) |
SELECT vacator FROM table_2417330_4 WHERE district = "Kentucky 2nd" | Name the vacator for kentucky 2nd | CREATE TABLE table_2417330_4 (vacator VARCHAR, district VARCHAR) |
SELECT running_with__in_team_ FROM table_1855841_1 WHERE candidate = "Elizabeth Falco" | Name the running with for elizabeth falco | CREATE TABLE table_1855841_1 (running_with__in_team_ VARCHAR, candidate VARCHAR) |
SELECT MIN(wins) FROM table_name_75 WHERE points < 32 AND class = "350cc" AND rank = "8th" | What is the fewest number of wins for a team ranked 8th with fewer than 32 points in the 350cc class? | CREATE TABLE table_name_75 (wins INTEGER, rank VARCHAR, points VARCHAR, class VARCHAR) |
SELECT years FROM table_name_17 WHERE duration = "13 years" AND character = "renee phelan" | what is the years when the duration is 13 years and the character is renee phelan? | CREATE TABLE table_name_17 (years VARCHAR, duration VARCHAR, character VARCHAR) |
SELECT coefficient FROM table_30083499_1 WHERE player = "Agustín Marchesín (1)" | What is the coefficient for agustín marchesín (1)? | CREATE TABLE table_30083499_1 (coefficient VARCHAR, player VARCHAR) |
SELECT SUM(golden_tickets) FROM table_name_85 WHERE callback_venue = "georgia international convention center" | How many golden tickets for the georgia international convention center? | CREATE TABLE table_name_85 (golden_tickets INTEGER, callback_venue VARCHAR) |
SELECT T1.name, T1.max_speed FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id ORDER BY COUNT(*) DESC LIMIT 1 | What is the storm name and max speed which affected the greatest number of regions? | CREATE TABLE storm (name VARCHAR, max_speed VARCHAR, storm_id VARCHAR); CREATE TABLE affected_region (storm_id VARCHAR) |
SELECT bowling FROM table_name_7 WHERE player = "min patel" | What was Min Patel's bowling? | CREATE TABLE table_name_7 (bowling VARCHAR, player VARCHAR) |
SELECT COUNT(location) FROM table_14976504_2 WHERE institution = "California Lutheran University" | Where is California Lutheran University located? | CREATE TABLE table_14976504_2 (location VARCHAR, institution VARCHAR) |
SELECT 1 AS st_party FROM table_name_92 WHERE election = "1865" | Which 1st Party has an election in 1865? | CREATE TABLE table_name_92 (election VARCHAR) |
SELECT T2.name FROM photos AS T1 JOIN camera_lens AS T2 ON T1.camera_lens_id = T2.id GROUP BY T2.id ORDER BY COUNT(*) DESC LIMIT 1 | What are the names of the cameras that have taken picture of the most mountains? | CREATE TABLE camera_lens (name VARCHAR, id VARCHAR); CREATE TABLE photos (camera_lens_id VARCHAR) |
SELECT candidates FROM table_1341738_6 WHERE incumbent = "Don Edwards" | Who were the candidates in the election that featured incumbent don edwards? | CREATE TABLE table_1341738_6 (candidates VARCHAR, incumbent VARCHAR) |
SELECT team FROM table_28628309_6 WHERE category = "Field goal percentage" | Who was the team when the category is field goal percentage? | CREATE TABLE table_28628309_6 (team VARCHAR, category VARCHAR) |
SELECT COUNT(*) FROM institution WHERE NOT institution_id IN (SELECT institution_id FROM protein) | How many institutions do not have an associated protein in our record? | CREATE TABLE protein (institution_id VARCHAR); CREATE TABLE institution (institution_id VARCHAR) |
SELECT award FROM table_name_66 WHERE result = "nominated" AND film = "sankranthi" | What is Award, when Result is "Nominated", and when Film is "Sankranthi"? | CREATE TABLE table_name_66 (award VARCHAR, result VARCHAR, film VARCHAR) |
SELECT home_team FROM table_name_59 WHERE away_team = "north melbourne" | Who was the home team for the game where North Melbourne was the away team? | CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR) |
SELECT SUM(fa_cup) FROM table_name_50 WHERE fa_trophy > 0 AND club = "stalybridge celtic" AND total < 20 | What is the sum of FA cups of club Stalybridge Celtic, which has more than 0 FA trophies and a total less than 20? | CREATE TABLE table_name_50 (fa_cup INTEGER, total VARCHAR, fa_trophy VARCHAR, club VARCHAR) |
SELECT MAX(Reset) AS points FROM table_13282157_1 WHERE events = 23 | What is the highest reset points where the events is 23? | CREATE TABLE table_13282157_1 (Reset INTEGER, events VARCHAR) |
SELECT director FROM table_name_39 WHERE rank > 7 AND worldwide_gross = "$149,022,650" | What director has a worldwide gross of $149,022,650 and is ranked greater than 7? | CREATE TABLE table_name_39 (director VARCHAR, rank VARCHAR, worldwide_gross VARCHAR) |
SELECT AVG(foreign_population) FROM table_name_26 WHERE population__2004_ > 234733 | Which Foreign population has a Population (2004) larger than 234733? | CREATE TABLE table_name_26 (foreign_population INTEGER, population__2004_ INTEGER) |
SELECT bonus_points FROM table_17510803_2 WHERE points_for = "385" | How many bonus points are there when points for is 385? | CREATE TABLE table_17510803_2 (bonus_points VARCHAR, points_for VARCHAR) |
SELECT school_website FROM table_29612224_1 WHERE location = "Macon, Illinois" | What's the website of the school in Macon, Illinois? | CREATE TABLE table_29612224_1 (school_website VARCHAR, location VARCHAR) |
SELECT lyricist FROM table_10848177_1 WHERE length = "3:05" | Who is the lyricist for the song with a length of 3:05? | CREATE TABLE table_10848177_1 (lyricist VARCHAR, length VARCHAR) |
SELECT COUNT(sydney) FROM table_24291077_4 WHERE week = 3 | How many episodes aired in Sydney in Week 3? | CREATE TABLE table_24291077_4 (sydney VARCHAR, week VARCHAR) |
SELECT MAX(points) FROM table_name_70 WHERE engine = "maserati" AND entrant = "owen racing organisation" | What is the most points when Maserati made the engine, and a Entrant of owen racing organisation? | CREATE TABLE table_name_70 (points INTEGER, engine VARCHAR, entrant VARCHAR) |
SELECT nationality FROM table_name_96 WHERE position = "guard" AND school_club_team = "utah" | What is the nationality of the guard who plays at Utah? | CREATE TABLE table_name_96 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR) |
SELECT SUM(rating) FROM table_name_92 WHERE rank__timeslot_ < 3 AND rank__night_ < 8 | what is the rating when the rank (timeslot) is less than 3 and the rank (night) is less than 8? | CREATE TABLE table_name_92 (rating INTEGER, rank__timeslot_ VARCHAR, rank__night_ VARCHAR) |
SELECT Name, Party FROM representative | What are the names and parties of representatives? | CREATE TABLE representative (Name VARCHAR, Party VARCHAR) |
SELECT home_team FROM table_14312471_7 WHERE ground = "AAMI Stadium" | Who has the home ground Aami stadium? | CREATE TABLE table_14312471_7 (home_team VARCHAR, ground VARCHAR) |
SELECT high_points FROM table_23286112_7 WHERE location_attendance = "Verizon Center 17,152" | Who has high points when verizon center 17,152 is location attendance? | CREATE TABLE table_23286112_7 (high_points VARCHAR, location_attendance VARCHAR) |
SELECT COUNT(points) FROM table_name_78 WHERE chassis = "ferrari 156" | How many points were earned with a Chassis of a Ferrari 156? | CREATE TABLE table_name_78 (points VARCHAR, chassis VARCHAR) |
SELECT control FROM table_2076608_3 WHERE founded = "1991" | What is the control type which was founded in 1991? | CREATE TABLE table_2076608_3 (control VARCHAR, founded VARCHAR) |
SELECT model_number FROM table_name_98 WHERE front_side_bus = "100mhz" AND l2_cache = "64kib" AND multiplier = "8.5×" | Which Model number has a Front Side Bus of 100mhz, a L2-Cache of 64kib and a Multiplier of 8.5×? | CREATE TABLE table_name_98 (model_number VARCHAR, multiplier VARCHAR, front_side_bus VARCHAR, l2_cache VARCHAR) |
SELECT ht FROM table_27277284_28 WHERE mult_1 = "10x" | How much ht does the model with 10x mult. 1 have? | CREATE TABLE table_27277284_28 (ht VARCHAR, mult_1 VARCHAR) |
SELECT age__years, _days_ FROM table_name_66 WHERE begin_date = "may 7, 1886" | What was the age of the member of the United States House of Representatives that began their term on May 7, 1886? | CREATE TABLE table_name_66 (age__years VARCHAR, _days_ VARCHAR, begin_date VARCHAR) |
SELECT opponents FROM table_name_10 WHERE surface = "grass" AND year > 1993 AND partner = "jonas björkman" | When playing on grass who was the opponents in a year greater than 1993, and playing with Jonas Björkman? | CREATE TABLE table_name_10 (opponents VARCHAR, partner VARCHAR, surface VARCHAR, year VARCHAR) |
SELECT date FROM table_name_80 WHERE h_a_n = "a" AND score = "105-118" | On what Date was the Score 105-118 and the H/A/N A? | CREATE TABLE table_name_80 (date VARCHAR, h_a_n VARCHAR, score VARCHAR) |
SELECT place FROM table_name_14 WHERE score > 68 AND to_par = "e" AND player = "bunky henry" | When Bunky Henry of the United States scored higher than 68 and his To par was e, what was his place? | CREATE TABLE table_name_14 (place VARCHAR, player VARCHAR, score VARCHAR, to_par VARCHAR) |
SELECT COUNT(championships) FROM table_19487922_2 WHERE country = "Pakistan" | How many championships does Pakistan have? | CREATE TABLE table_19487922_2 (championships VARCHAR, country VARCHAR) |
SELECT AVG(wins) FROM table_name_73 WHERE south_west_dfl = "coleraine" AND byes > 0 | What is the average value for Wins, when South West DFL is "Coleraine", and when Byes is greater than 0? | CREATE TABLE table_name_73 (wins INTEGER, south_west_dfl VARCHAR, byes VARCHAR) |
SELECT international_tourist_arrivals__2012_ FROM table_name_38 WHERE international_tourist_arrivals__2011_ = "2.5 million" | How many tourists visited the country that had 2.5 million tourists in 2011? | CREATE TABLE table_name_38 (international_tourist_arrivals__2012_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR) |
SELECT silver FROM table_name_5 WHERE bronze = "hong chia-yuh" | Who won the silver medal in the games where Hong Chia-yuh took home bronze? | CREATE TABLE table_name_5 (silver VARCHAR, bronze VARCHAR) |
SELECT venue FROM table_name_5 WHERE date = "8/6/03" | What venue is on the date of 8/6/03 | CREATE TABLE table_name_5 (venue VARCHAR, date VARCHAR) |
SELECT SUM(to_par) FROM table_name_32 WHERE total > 149 AND country = "united states" AND year_s__won = "1997" | How much To par has a Total larger than 149, and a Country of united states, and a Year(s) won of 1997? | CREATE TABLE table_name_32 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR, country VARCHAR) |
SELECT team FROM table_27712702_7 WHERE date = "November 15" | Which team played on November 15? | CREATE TABLE table_27712702_7 (team VARCHAR, date VARCHAR) |
SELECT circuit FROM table_name_25 WHERE round = "italy" | what circuit is in italy | CREATE TABLE table_name_25 (circuit VARCHAR, round VARCHAR) |
SELECT postposition FROM table_name_75 WHERE noun_root__meaning_ = "mshobl- (parent)" | What is Postposition, when Noun Root (Meaning) is "mshobl- (parent)"? | CREATE TABLE table_name_75 (postposition VARCHAR, noun_root__meaning_ VARCHAR) |
SELECT call_sign FROM table_name_15 WHERE erp_w = 222 | What is the call sign with a 222 erp w? | CREATE TABLE table_name_15 (call_sign VARCHAR, erp_w VARCHAR) |
SELECT consider FROM table_name_21 WHERE poll_source = "newsweek poll" AND oppose = "32%" AND candidate = "rudy giuliani" | What percentage of people said they would consider Rudy Giuliani as a candidate according to the Newsweek poll that showed 32% opposed him? | CREATE TABLE table_name_21 (consider VARCHAR, candidate VARCHAR, poll_source VARCHAR, oppose VARCHAR) |
SELECT height FROM table_12962773_5 WHERE position = "Forward" AND current_club = "Real Madrid" | what's the height with position being forward and current club being real madrid | CREATE TABLE table_12962773_5 (height VARCHAR, position VARCHAR, current_club VARCHAR) |
SELECT years FROM table_name_26 WHERE duration = "18 years" AND actor = "patrizio rispo" | What years have a duration of 18 years, and patrizio rispo as the actor? | CREATE TABLE table_name_26 (years VARCHAR, duration VARCHAR, actor VARCHAR) |
SELECT muzzle_energy FROM table_name_67 WHERE bullet_weight = "grains (g)" AND max_pressure = "35,000 psi" | What is the muzzle energy with grains (g) bullet weight and a max pressure of 35,000 psi? | CREATE TABLE table_name_67 (muzzle_energy VARCHAR, bullet_weight VARCHAR, max_pressure VARCHAR) |
SELECT position FROM table_name_41 WHERE event = "foil individual" AND competition = "world championships" AND year = 1985 | What was the position for mauro at the world championships in 1985 during the foil individual event? | CREATE TABLE table_name_41 (position VARCHAR, year VARCHAR, event VARCHAR, competition VARCHAR) |
SELECT player FROM table_16494599_3 WHERE school_club_team = "Missouri" | What players attended missouri? | CREATE TABLE table_16494599_3 (player VARCHAR, school_club_team VARCHAR) |
SELECT T2.Fname, T2.Lname FROM COURSE AS T1 JOIN FACULTY AS T2 ON T1.Instructor = T2.FacID WHERE T1.CName = "COMPUTER LITERACY" | Find the first name and last name of the instructor of course that has course name | CREATE TABLE FACULTY (Fname VARCHAR, Lname VARCHAR, FacID VARCHAR); CREATE TABLE COURSE (Instructor VARCHAR, CName VARCHAR) |
SELECT party FROM table_1341472_40 WHERE incumbent = "Thomas Foglietta" | What party is thomas foglietta from? | CREATE TABLE table_1341472_40 (party VARCHAR, incumbent VARCHAR) |
SELECT friday FROM table_11748792_2 WHERE monday = "Emma Willis Jamie East" | Who is the friday presenter for each show, when the monday presenter is Emma Willis Jamie East? | CREATE TABLE table_11748792_2 (friday VARCHAR, monday VARCHAR) |
SELECT combined FROM table_name_53 WHERE victories = 14 | Can you tell me the Combined that has the Victories of 14? | CREATE TABLE table_name_53 (combined VARCHAR, victories VARCHAR) |
SELECT COUNT(losses) FROM table_name_42 WHERE against = 1017 AND wins > 12 | What's the total losses that has more than 12 wins and 1017 against? | CREATE TABLE table_name_42 (losses VARCHAR, against VARCHAR, wins VARCHAR) |
SELECT wraps_per_inch__wpi_ FROM table_20297668_1 WHERE m_100g = "120-240" | Name the wraps per inch for 120-240 | CREATE TABLE table_20297668_1 (wraps_per_inch__wpi_ VARCHAR, m_100g VARCHAR) |
SELECT position FROM table_name_98 WHERE series = "macau grand prix" AND season < 2007 | What is the value for Position, when the Series is the Macau Grand Prix, and when the Season is before 2007? | CREATE TABLE table_name_98 (position VARCHAR, series VARCHAR, season VARCHAR) |
SELECT MAX(overall) FROM table_name_3 WHERE pick__number < 9 AND name = "mike pearson" | Which Overall is the highest one that has a Pick # smaller than 9, and a Name of mike pearson? | CREATE TABLE table_name_3 (overall INTEGER, pick__number VARCHAR, name VARCHAR) |
SELECT AVG(bronze) FROM table_name_34 WHERE rank = "8" AND total > 2 | With 8 as the rank, and a total of more than 2 medals what is the average bronze medals? | CREATE TABLE table_name_34 (bronze INTEGER, rank VARCHAR, total VARCHAR) |
SELECT money___$__ FROM table_name_1 WHERE player = "greg norman" | What is Money ( $ ), when Player is Greg Norman? | CREATE TABLE table_name_1 (money___$__ VARCHAR, player VARCHAR) |
SELECT other FROM table_name_90 WHERE green = 0 AND independent = 1 AND labour < 45 AND control = "labour lose to no overall control" | Which Other has a Green of 0, and an Independent of 1, and a Labour smaller than 45, and a Control of labour lose to no overall control? | CREATE TABLE table_name_90 (other VARCHAR, control VARCHAR, labour VARCHAR, green VARCHAR, independent VARCHAR) |
SELECT COUNT(top_25) FROM table_name_95 WHERE top_10 = 11 | What is the total number of top-25s for the major that has 11 top-10s? | CREATE TABLE table_name_95 (top_25 VARCHAR, top_10 VARCHAR) |
SELECT rate_change___percentage_ FROM table_25316812_1 WHERE rate_limit__p_ = "82.86" | What is the rate change % when the rate limit is 82.86? | CREATE TABLE table_25316812_1 (rate_change___percentage_ VARCHAR, rate_limit__p_ VARCHAR) |
SELECT mel_martinez__r_ FROM table_name_6 WHERE sample_size = 800 | What is the percentage for Mel Martinez when the sample size is 800? | CREATE TABLE table_name_6 (mel_martinez__r_ VARCHAR, sample_size VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.