question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What is the mark for the runner in lanes under 2 and heats under 5? | CREATE TABLE table_name_83 (mark VARCHAR, lane VARCHAR, heat VARCHAR) | SELECT mark FROM table_name_83 WHERE lane < 2 AND heat < 5 |
What is the race on 10/10/2008? | CREATE TABLE table_name_3 (race VARCHAR, date VARCHAR) | SELECT race FROM table_name_3 WHERE date = "10/10/2008" |
How many Asians live in the borough with 8109 Chinese population? | CREATE TABLE table_19149550_9 (total_asian_population INTEGER, chinese_population VARCHAR) | SELECT MIN(total_asian_population) FROM table_19149550_9 WHERE chinese_population = 8109 |
Name the total number of swimsuits when evening gown is 8.329 and average is less than 8.497 | CREATE TABLE table_name_39 (swimsuit VARCHAR, evening_gown VARCHAR, average VARCHAR) | SELECT COUNT(swimsuit) FROM table_name_39 WHERE evening_gown = 8.329 AND average < 8.497 |
Name the least wins of 56.25% | CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR) | SELECT MIN(wins) FROM table_15829930_5 WHERE success_rate = "56.25%" |
What was Jack McGrath's rank in 1955 when he started at 3 and finished at 26? | CREATE TABLE table_name_7 (rank VARCHAR, year VARCHAR, start VARCHAR, finish VARCHAR) | SELECT rank FROM table_name_7 WHERE start = "3" AND finish = "26" AND year = "1955" |
What was the score for the game on November 1? | CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_25 WHERE date = "november 1" |
What is the date of the that was played with the Baltimore Colts at home? | CREATE TABLE table_name_94 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_94 WHERE home_team = "baltimore colts" |
how many points scored by sportivo luqueño | CREATE TABLE table_16788123_5 (points VARCHAR, team VARCHAR) | SELECT COUNT(points) FROM table_16788123_5 WHERE team = "Sportivo Luqueño" |
On what date was the Record of 43–35? | CREATE TABLE table_name_25 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_25 WHERE record = "43–35" |
What is Player, when Country is "United States", and when Year(s) Won is "1976"? | CREATE TABLE table_name_40 (player VARCHAR, country VARCHAR, year_s__won VARCHAR) | SELECT player FROM table_name_40 WHERE country = "united states" AND year_s__won = "1976" |
What player was moved to Blackpool? | CREATE TABLE table_name_41 (player VARCHAR, to_club VARCHAR) | SELECT player FROM table_name_41 WHERE to_club = "blackpool" |
This engine with a cylinder size of 20 ½” x 26” and a firebox of radial-stay was built when? | CREATE TABLE table_25695027_1 (years_built VARCHAR, cylinder_size VARCHAR, firebox VARCHAR) | SELECT years_built FROM table_25695027_1 WHERE cylinder_size = "20 ½” x 26”" AND firebox = "Radial-stay" |
What was Momoko Ueda's place? | CREATE TABLE table_name_86 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_86 WHERE player = "momoko ueda" |
When did the country that produced 1,213,000 (21st) bbl/day join Opec? | CREATE TABLE table_166346_1 (joined_opec VARCHAR, production___bbl__day_ VARCHAR) | SELECT joined_opec FROM table_166346_1 WHERE production___bbl__day_ = "1,213,000 (21st)" |
Which Team has a Position of linebacker? | CREATE TABLE table_name_86 (team VARCHAR, position VARCHAR) | SELECT team FROM table_name_86 WHERE position = "linebacker" |
What is the Date of the Game with a Score of w 112-107 (ot)? | CREATE TABLE table_name_29 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_29 WHERE score = "w 112-107 (ot)" |
How many entries arr there for the top 10 for the 78th position? | CREATE TABLE table_1507423_5 (top_10 VARCHAR, position VARCHAR) | SELECT COUNT(top_10) FROM table_1507423_5 WHERE position = "78th" |
What is the area of Tuscany? | CREATE TABLE table_14532_1 (area__km²_ INTEGER, region VARCHAR) | SELECT MAX(area__km²_) FROM table_14532_1 WHERE region = "Tuscany" |
What was the format when the label was loen entertainment? | CREATE TABLE table_name_20 (format VARCHAR, label VARCHAR) | SELECT format FROM table_name_20 WHERE label = "loen entertainment" |
Which Home Stadium has American as its Conference as well as nashville, tennessee as the city? | CREATE TABLE table_name_25 (home_stadium VARCHAR, conference VARCHAR, city VARCHAR) | SELECT home_stadium FROM table_name_25 WHERE conference = "american" AND city = "nashville, tennessee" |
How many viewers in millions for episode number 38? | CREATE TABLE table_2602958_3 (us_viewers__million_ VARCHAR, no VARCHAR) | SELECT us_viewers__million_ FROM table_2602958_3 WHERE no = 38 |
What are the star rating descriptions of the hotels with price above 10000? | CREATE TABLE HOTELS (star_rating_code VARCHAR, price_range INTEGER); CREATE TABLE Ref_Hotel_Star_Ratings (star_rating_description VARCHAR, star_rating_code VARCHAR) | SELECT T2.star_rating_description FROM HOTELS AS T1 JOIN Ref_Hotel_Star_Ratings AS T2 ON T1.star_rating_code = T2.star_rating_code WHERE T1.price_range > 10000 |
Tell me the average goals for losses of 19 and goals against more than 59 | CREATE TABLE table_name_77 (goals_for INTEGER, losses VARCHAR, goals_against VARCHAR) | SELECT AVG(goals_for) FROM table_name_77 WHERE losses = 19 AND goals_against > 59 |
Which Play is from Cyprus, from the Company Magdalena Zira Theatre? | CREATE TABLE table_name_98 (play VARCHAR, country VARCHAR, company VARCHAR) | SELECT play FROM table_name_98 WHERE country = "cyprus" AND company = "magdalena zira theatre" |
Which Release price (USD ) that has a Release date on april 2012 and a Part number(s) of cm8063701211900bx80637i73770s? | CREATE TABLE table_name_90 (release_price___usd__ VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR) | SELECT release_price___usd__ FROM table_name_90 WHERE release_date = "april 2012" AND part_number_s_ = "cm8063701211900bx80637i73770s" |
List the customer event id and the corresponding move in date and property id. | CREATE TABLE customer_events (customer_event_id VARCHAR, date_moved_in VARCHAR, property_id VARCHAR) | SELECT customer_event_id, date_moved_in, property_id FROM customer_events |
Name the total number of production code for episode by steve cohen & andrew dettman | CREATE TABLE table_21550870_1 (production_code VARCHAR, written_by VARCHAR) | SELECT COUNT(production_code) FROM table_21550870_1 WHERE written_by = "Steve Cohen & Andrew Dettman" |
Who is the home team that played at MCG? | CREATE TABLE table_name_19 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_19 WHERE venue = "mcg" |
How many precincts are in the county where G. Hager received 19 (20%) votes? | CREATE TABLE table_17820556_4 (precincts VARCHAR, g_hager VARCHAR) | SELECT precincts FROM table_17820556_4 WHERE g_hager = "19 (20%)" |
Which Party has a Member of david jull? | CREATE TABLE table_name_75 (party VARCHAR, member VARCHAR) | SELECT party FROM table_name_75 WHERE member = "david jull" |
What's the lowest series number that originally aired before 2009 with more than 7 episodes and had a DVD Region 2 release date of 26 july 2004? | CREATE TABLE table_name_69 (series_number INTEGER, number_of_episodes VARCHAR, original_air_date VARCHAR, dvd_region_2_release_date VARCHAR) | SELECT MIN(series_number) FROM table_name_69 WHERE original_air_date < 2009 AND dvd_region_2_release_date = "26 july 2004" AND number_of_episodes > 7 |
What is the nt identity when the species is drosophilia melanogaster? | CREATE TABLE table_26708105_5 (nt_identity VARCHAR, species VARCHAR) | SELECT nt_identity FROM table_26708105_5 WHERE species = "Drosophilia melanogaster" |
In which competition was Moradi's time 1:48.58? | CREATE TABLE table_name_12 (competition VARCHAR, notes VARCHAR) | SELECT competition FROM table_name_12 WHERE notes = "1:48.58" |
Which Voltage Center (V) has an Input Clock (MHz) of 25 x 3, and a Part Number of a80486dx4-75? | CREATE TABLE table_name_71 (voltage_center__v_ VARCHAR, input_clock__mhz_ VARCHAR, part_number VARCHAR) | SELECT voltage_center__v_ FROM table_name_71 WHERE input_clock__mhz_ = "25 x 3" AND part_number = "a80486dx4-75" |
What are the first names of students studying in room 107? | CREATE TABLE list (firstname VARCHAR, classroom VARCHAR) | SELECT DISTINCT firstname FROM list WHERE classroom = 107 |
What was the film that grossed $26,010,864 ranked? | CREATE TABLE table_name_76 (rank INTEGER, gross VARCHAR) | SELECT MIN(rank) FROM table_name_76 WHERE gross = "$26,010,864" |
How many games played for the team with 686 points against? | CREATE TABLE table_1676073_12 (played VARCHAR, points_against VARCHAR) | SELECT played FROM table_1676073_12 WHERE points_against = "686" |
On which date was the opponent ireland and the status Five Nations? | CREATE TABLE table_name_67 (date VARCHAR, status VARCHAR, opposing_teams VARCHAR) | SELECT date FROM table_name_67 WHERE status = "five nations" AND opposing_teams = "ireland" |
Who is the player who was born before 1980 who currently plays for the Toronto Raptors? | CREATE TABLE table_name_22 (player VARCHAR, year_born VARCHAR, current_club VARCHAR) | SELECT player FROM table_name_22 WHERE year_born < 1980 AND current_club = "toronto raptors" |
What is the minimum stolen ends record where the pa record is 40? | CREATE TABLE table_29545993_3 (stolen_ends INTEGER, pa VARCHAR) | SELECT MIN(stolen_ends) FROM table_29545993_3 WHERE pa = 40 |
What is the entrant for the audi 3.6l turbo v8 engine and ranked 3rd with 163 points? | CREATE TABLE table_name_1 (entrant VARCHAR, points VARCHAR, engine VARCHAR, rank VARCHAR) | SELECT entrant FROM table_name_1 WHERE engine = "audi 3.6l turbo v8" AND rank = "3rd" AND points = 163 |
Which Elevated has an Elector of matteo orsini rosso? | CREATE TABLE table_name_23 (elevated VARCHAR, elector VARCHAR) | SELECT elevated FROM table_name_23 WHERE elector = "matteo orsini rosso" |
What was the Date of the Cimmeria Issue for which the Penciller was Tomás Giorello? | CREATE TABLE table_name_67 (date VARCHAR, penciller VARCHAR, title VARCHAR) | SELECT date FROM table_name_67 WHERE penciller = "tomás giorello" AND title = "cimmeria" |
For the game showing a final record of 0-5, what was the attendance level? | CREATE TABLE table_name_95 (attendance VARCHAR, record VARCHAR) | SELECT attendance FROM table_name_95 WHERE record = "0-5" |
Who were the opponents that led to an outcome of winner on a grass surface? | CREATE TABLE table_2151643_3 (opponents VARCHAR, outcome VARCHAR, surface VARCHAR) | SELECT opponents FROM table_2151643_3 WHERE outcome = "Winner" AND surface = "Grass" |
Which owner has paid the largest amount of money in total for their dogs? Show the owner id and zip code. | CREATE TABLE Treatments (dog_id VARCHAR, cost_of_treatment INTEGER); CREATE TABLE Owners (owner_id VARCHAR, zip_code VARCHAR); CREATE TABLE Dogs (owner_id VARCHAR, dog_id VARCHAR) | SELECT T1.owner_id, T1.zip_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY SUM(T3.cost_of_treatment) DESC LIMIT 1 |
What was the attendance at the game where Neil Liddiard was Man of the Match? | CREATE TABLE table_17120964_8 (attendance INTEGER, man_of_the_match VARCHAR) | SELECT MIN(attendance) FROM table_17120964_8 WHERE man_of_the_match = "Neil Liddiard" |
Which Score has a Game larger than 32, and Points smaller than 42, and a December larger than 19, and a Record of 18–12–5? | CREATE TABLE table_name_28 (score VARCHAR, record VARCHAR, december VARCHAR, game VARCHAR, points VARCHAR) | SELECT score FROM table_name_28 WHERE game > 32 AND points < 42 AND december > 19 AND record = "18–12–5" |
Which province has a density of 971.4? | CREATE TABLE table_1067441_1 (province VARCHAR, density VARCHAR) | SELECT province FROM table_1067441_1 WHERE density = "971.4" |
What is the average grid that has a Constructor of brm, tony maggs, and a Laps larger than 102? | CREATE TABLE table_name_16 (grid INTEGER, laps VARCHAR, constructor VARCHAR, driver VARCHAR) | SELECT AVG(grid) FROM table_name_16 WHERE constructor = "brm" AND driver = "tony maggs" AND laps > 102 |
When was shippensburg university Colonized? | CREATE TABLE table_name_56 (colonized VARCHAR, school VARCHAR) | SELECT colonized FROM table_name_56 WHERE school = "shippensburg university" |
What is the average prom (m) when the height (m) is more than 733, the class is Hewitt, and the peak is Kirk Fell East Top? | CREATE TABLE table_name_75 (prom__m_ INTEGER, peak VARCHAR, height__m_ VARCHAR, class VARCHAR) | SELECT AVG(prom__m_) FROM table_name_75 WHERE height__m_ > 733 AND class = "hewitt" AND peak = "kirk fell east top" |
What is the averaged scored number of team guaraní, which has less than 6 draws and less than 5 losses? | CREATE TABLE table_name_30 (scored INTEGER, losses VARCHAR, draws VARCHAR, team VARCHAR) | SELECT AVG(scored) FROM table_name_30 WHERE draws < 6 AND team = "guaraní" AND losses < 5 |
How many bills where originally cosponsored in those years where the total of all amendments cosponsored was 0? | CREATE TABLE table_18852984_2 (bills_originally_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR) | SELECT bills_originally_cosponsored FROM table_18852984_2 WHERE all_amendments_cosponsored = 0 |
What is the highest amount of games played in the 2003-04 season? | CREATE TABLE table_name_25 (played INTEGER, season VARCHAR) | SELECT MAX(played) FROM table_name_25 WHERE season = "2003-04" |
What country does Glory Alozie play for? | CREATE TABLE table_name_15 (country VARCHAR, name VARCHAR) | SELECT country FROM table_name_15 WHERE name = "glory alozie" |
What is the identifier that has 50,000 watts of power? | CREATE TABLE table_name_45 (identifier VARCHAR, power VARCHAR) | SELECT identifier FROM table_name_45 WHERE power = "50,000 watts" |
What is the highest total for Scotland with a year won of 1985? | CREATE TABLE table_name_12 (total INTEGER, country VARCHAR, year_s__won VARCHAR) | SELECT MAX(total) FROM table_name_12 WHERE country = "scotland" AND year_s__won = 1985 |
The Keutenberg race had what race length? | CREATE TABLE table_1749567_2 (length__in_m_ INTEGER, name VARCHAR) | SELECT MAX(length__in_m_) FROM table_1749567_2 WHERE name = "Keutenberg" |
Which Round has a Player of dan chicoine, and a Pick larger than 23? | CREATE TABLE table_name_65 (round INTEGER, player VARCHAR, pick VARCHAR) | SELECT AVG(round) FROM table_name_65 WHERE player = "dan chicoine" AND pick > 23 |
What is the total number of Laps when collision shows for time for Switzerland and less than 11 for grid? | CREATE TABLE table_name_39 (laps VARCHAR, grid VARCHAR, time VARCHAR, team VARCHAR) | SELECT COUNT(laps) FROM table_name_39 WHERE time = "collision" AND team = "switzerland" AND grid < 11 |
What school did Paul Dawkins play for? | CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_34 WHERE player = "paul dawkins" |
How many points does Tom Hammond have if he has more than 12 points? | CREATE TABLE table_name_12 (points INTEGER, player VARCHAR, extra_points VARCHAR) | SELECT SUM(points) FROM table_name_12 WHERE player = "tom hammond" AND extra_points > 12 |
What the highest position when there is 28 against? | CREATE TABLE table_15331868_1 (position INTEGER, against VARCHAR) | SELECT MAX(position) FROM table_15331868_1 WHERE against = 28 |
Who's the writer for the episode with a production code 2395114? | CREATE TABLE table_10953197_4 (writer_s_ VARCHAR, production_code VARCHAR) | SELECT writer_s_ FROM table_10953197_4 WHERE production_code = "2395114" |
What is the imperfect stem of the word that means 'take away, remove'? | CREATE TABLE table_name_74 (imperfect_stem VARCHAR, meaning VARCHAR) | SELECT imperfect_stem FROM table_name_74 WHERE meaning = "'take away, remove'" |
What is the NFL team of the player whose college is Minnesota? | CREATE TABLE table_14650162_1 (nfl_team VARCHAR, college VARCHAR) | SELECT nfl_team FROM table_14650162_1 WHERE college = "Minnesota" |
What is the Country of the Player with a To par of +4 and Score of 73-71-73=217? | CREATE TABLE table_name_94 (country VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT country FROM table_name_94 WHERE to_par = "+4" AND score = 73 - 71 - 73 = 217 |
Which qual has both 200 total laps and took place in 1957? | CREATE TABLE table_name_80 (qual VARCHAR, laps VARCHAR, year VARCHAR) | SELECT qual FROM table_name_80 WHERE laps = 200 AND year = "1957" |
Name the director for coup de torchon | CREATE TABLE table_18987377_1 (director VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT director FROM table_18987377_1 WHERE film_title_used_in_nomination = "Coup de Torchon" |
What is heaton chapel's capacity? | CREATE TABLE table_name_54 (capacity INTEGER, locality VARCHAR) | SELECT MAX(capacity) FROM table_name_54 WHERE locality = "heaton chapel" |
Team of honda 250cc, and a Rank larger than 2, and a Rider of chris palmer is what time? | CREATE TABLE table_name_3 (time VARCHAR, rider VARCHAR, team VARCHAR, rank VARCHAR) | SELECT time FROM table_name_3 WHERE team = "honda 250cc" AND rank > 2 AND rider = "chris palmer" |
What is the highest number of terps points in games where the opponent made 53 points? | CREATE TABLE table_22862203_2 (terps_points INTEGER, opp_points VARCHAR) | SELECT MAX(terps_points) FROM table_22862203_2 WHERE opp_points = 53 |
What is the genre for Portal 2? | CREATE TABLE table_name_32 (genre VARCHAR, game VARCHAR) | SELECT genre FROM table_name_32 WHERE game = "portal 2" |
Which administrative division had a 2011 population of 606,699 according to the siak database? | CREATE TABLE table_21734764_1 (administrative_division VARCHAR, population_2011_siak_database VARCHAR) | SELECT administrative_division FROM table_21734764_1 WHERE population_2011_siak_database = "606,699" |
What is the power of the Type R? | CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR) | SELECT power FROM table_250230_2 WHERE model = "Type R" |
What was the little league team from Kentucky when the little league team from Indiana and Wisconsin were Brownsburg LL Brownsburg and Merrill LL Merrill? | CREATE TABLE table_18461045_1 (kentucky VARCHAR, indiana VARCHAR, wisconsin VARCHAR) | SELECT kentucky FROM table_18461045_1 WHERE indiana = "Brownsburg LL Brownsburg" AND wisconsin = "Merrill LL Merrill" |
How many teams were at the 2007 details tournament where there a top goalscorer was not awarded? | CREATE TABLE table_name_66 (number_of_teams VARCHAR, top_goalscorer_s_ VARCHAR, year VARCHAR) | SELECT number_of_teams FROM table_name_66 WHERE top_goalscorer_s_ = "not awarded" AND year = "2007 details" |
Which Longitude has a Latitude of 73.0s, and a Name of aibarchin planitia? | CREATE TABLE table_name_87 (longitude VARCHAR, latitude VARCHAR, name VARCHAR) | SELECT longitude FROM table_name_87 WHERE latitude = "73.0s" AND name = "aibarchin planitia" |
What is the symbol of the element with an empirical t of 190 and a calculated value of 135? | CREATE TABLE table_name_25 (symbol VARCHAR, empirical_† VARCHAR, calculated VARCHAR) | SELECT symbol FROM table_name_25 WHERE empirical_† = "190" AND calculated = "135" |
What is the average pick in 1983? | CREATE TABLE table_name_26 (pick INTEGER, year VARCHAR) | SELECT AVG(pick) FROM table_name_26 WHERE year = 1983 |
Show the locations that have both performances with more than 2000 attendees and performances with less than 1000 attendees. | CREATE TABLE performance (LOCATION VARCHAR, Attendance INTEGER) | SELECT LOCATION FROM performance WHERE Attendance > 2000 INTERSECT SELECT LOCATION FROM performance WHERE Attendance < 1000 |
What years did Tymerlan Huseynov, whose average is larger than 0.361, play? | CREATE TABLE table_name_94 (career VARCHAR, average VARCHAR, player VARCHAR) | SELECT career FROM table_name_94 WHERE average > 0.361 AND player = "tymerlan huseynov" |
Who was the Opponent at the Game Site Indianapolis Hoosierdome? | CREATE TABLE table_name_21 (opponent VARCHAR, game_site VARCHAR) | SELECT opponent FROM table_name_21 WHERE game_site = "indianapolis hoosierdome" |
What is the earliest issue Arnie Kogen wrote for in December 1964? | CREATE TABLE table_name_12 (issue INTEGER, writer VARCHAR, date VARCHAR) | SELECT MIN(issue) FROM table_name_12 WHERE writer = "arnie kogen" AND date = "december 1964" |
Avg/G of 2.7 is what effic? | CREATE TABLE table_name_54 (effic VARCHAR, avg_g VARCHAR) | SELECT effic FROM table_name_54 WHERE avg_g = 2.7 |
How many people were in the crowd with the away team being collingwood? | CREATE TABLE table_name_5 (crowd VARCHAR, away_team VARCHAR) | SELECT COUNT(crowd) FROM table_name_5 WHERE away_team = "collingwood" |
Which Record has the Res of win with the Event of extreme fighting 1? | CREATE TABLE table_name_30 (record VARCHAR, res VARCHAR, event VARCHAR) | SELECT record FROM table_name_30 WHERE res = "win" AND event = "extreme fighting 1" |
Name the number of regular season for 2007 | CREATE TABLE table_2361788_1 (regular_season VARCHAR, year VARCHAR) | SELECT COUNT(regular_season) FROM table_2361788_1 WHERE year = 2007 |
Can you tell me the Team 2 that has the Venue of binh duong stadium, vietnam? | CREATE TABLE table_name_27 (team_2 VARCHAR, venue VARCHAR) | SELECT team_2 FROM table_name_27 WHERE venue = "binh duong stadium, vietnam" |
Which High points have a Record of 27–29? | CREATE TABLE table_name_67 (high_points VARCHAR, record VARCHAR) | SELECT high_points FROM table_name_67 WHERE record = "27–29" |
What is the least political rights rank in 1976? | CREATE TABLE table_name_54 (political_rights INTEGER, year VARCHAR) | SELECT MIN(political_rights) FROM table_name_54 WHERE year = 1976 |
what is the score for the tournament cagnes-sur-mer? | CREATE TABLE table_name_38 (score VARCHAR, tournament VARCHAR) | SELECT score FROM table_name_38 WHERE tournament = "cagnes-sur-mer" |
Which player on the Bulls has a 6 May 1978 birthday? | CREATE TABLE table_name_58 (player VARCHAR, club_province VARCHAR, date_of_birth__age_ VARCHAR) | SELECT player FROM table_name_58 WHERE club_province = "bulls" AND date_of_birth__age_ = "6 may 1978" |
If the location attendance was Quicken Loans Arena 20,562, who had the High Assists? | CREATE TABLE table_27700375_6 (high_assists VARCHAR, location_attendance VARCHAR) | SELECT high_assists FROM table_27700375_6 WHERE location_attendance = "Quicken Loans Arena 20,562" |
what is the location for the date (to) 8 october 1922? | CREATE TABLE table_12562214_1 (location VARCHAR, date__to_ VARCHAR) | SELECT location FROM table_12562214_1 WHERE date__to_ = "8 October 1922" |
What is the Score of the Player from South Africa? | CREATE TABLE table_name_64 (score VARCHAR, country VARCHAR) | SELECT score FROM table_name_64 WHERE country = "south africa" |
What is First elected that has republican Party and a Result of retired democratic gain? | CREATE TABLE table_name_61 (first_elected VARCHAR, party VARCHAR, result VARCHAR) | SELECT first_elected FROM table_name_61 WHERE party = "republican" AND result = "retired democratic gain" |
Which 992 has a 1–2 of 1989 ? | CREATE TABLE table_name_13 (Id VARCHAR) | SELECT 1992 FROM table_name_13 WHERE 1989 = "1–2" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.