question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
Driving Force EX of no, and a Driving Force Pro of no, and a G25 Racing Wheel of no involves which g27 racing wheel? | CREATE TABLE table_name_45 (g27_racing_wheel VARCHAR, g25_racing_wheel VARCHAR, driving_force_ex VARCHAR, driving_force_pro VARCHAR) | SELECT g27_racing_wheel FROM table_name_45 WHERE driving_force_ex = "no" AND driving_force_pro = "no" AND g25_racing_wheel = "no" |
Which weapon was used when the Battle of the Planets was Jason? | CREATE TABLE table_name_48 (weapon VARCHAR, battle_of_the_planets VARCHAR) | SELECT weapon FROM table_name_48 WHERE battle_of_the_planets = "jason" |
What is the average of goals against, where overall goals are more than 35 and the goal difference is 20? | CREATE TABLE table_name_68 (goals_against INTEGER, goals_for VARCHAR, goal_difference VARCHAR) | SELECT AVG(goals_against) FROM table_name_68 WHERE goals_for > 35 AND goal_difference = 20 |
Which locomotive had a 2-8-2t type, entered service year prior to 1915, and which was built after 1911? | CREATE TABLE table_name_9 (locomotive VARCHAR, built VARCHAR, type VARCHAR, entered_service VARCHAR) | SELECT locomotive FROM table_name_9 WHERE type = "2-8-2t" AND entered_service < 1915 AND built > 1911 |
Who was the winner of the Miami tournament where Elena Dementieva was a finalist? | CREATE TABLE table_name_25 (winner VARCHAR, finalist VARCHAR, tournament VARCHAR) | SELECT winner FROM table_name_25 WHERE finalist = "elena dementieva" AND tournament = "miami" |
What is the highest number of losses that a team who had an away record of 1-6 and more than 4 wins had? | CREATE TABLE table_name_6 (losses INTEGER, away VARCHAR, wins VARCHAR) | SELECT MAX(losses) FROM table_name_6 WHERE away = "1-6" AND wins > 4 |
On what date did the Cavaliers have a record of 9-14? | CREATE TABLE table_name_44 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_44 WHERE record = "9-14" |
What models have an a2 barrel profile? | CREATE TABLE table_12834315_5 (name VARCHAR, barrel_profile VARCHAR) | SELECT name FROM table_12834315_5 WHERE barrel_profile = "A2" |
What was the Year to Open for the Dandeung Bridge? | CREATE TABLE table_name_51 (year_to_open VARCHAR, name VARCHAR) | SELECT COUNT(year_to_open) FROM table_name_51 WHERE name = "dandeung bridge" |
How many losses did the golden rivers of ultima have when wins were less than 12 and byes larger than 2? | CREATE TABLE table_name_43 (losses VARCHAR, byes VARCHAR, wins VARCHAR, golden_rivers VARCHAR) | SELECT COUNT(losses) FROM table_name_43 WHERE wins < 12 AND golden_rivers = "ultima" AND byes > 2 |
How many epsidode(s) had 3.63 million viewers? | CREATE TABLE table_22353769_3 (episode__number VARCHAR, viewers__millions_ VARCHAR) | SELECT COUNT(episode__number) FROM table_22353769_3 WHERE viewers__millions_ = "3.63" |
What is the 2006 result of the Canada Masters tournament that is A in 2009 and A in 2010? | CREATE TABLE table_name_88 (tournament VARCHAR) | SELECT 2006 FROM table_name_88 WHERE 2010 = "a" AND 2009 = "a" AND tournament = "canada masters" |
Which Competition has an Event of 50km, a Year earlier than 2010 and a Position of 3rd? | CREATE TABLE table_name_46 (competition VARCHAR, position VARCHAR, event VARCHAR, year VARCHAR) | SELECT competition FROM table_name_46 WHERE event = "50km" AND year < 2010 AND position = "3rd" |
What player has a number of playoff games played greater than 0? | CREATE TABLE table_name_51 (player VARCHAR, pl_gp INTEGER) | SELECT player FROM table_name_51 WHERE pl_gp > 0 |
When the driver is Juan Manuel Fangio and laps is less than 39, what is the highest grid? | CREATE TABLE table_name_44 (grid INTEGER, laps VARCHAR, driver VARCHAR) | SELECT MAX(grid) FROM table_name_44 WHERE laps < 39 AND driver = "juan manuel fangio" |
With a date of May 1262 under elevated, Guillaume de Bray as the elector, what is the order and title? | CREATE TABLE table_name_78 (order_and_title VARCHAR, elevated VARCHAR, elector VARCHAR) | SELECT order_and_title FROM table_name_78 WHERE elevated = "may 1262" AND elector = "guillaume de bray" |
What is the away team with West Ham United as the home team? | CREATE TABLE table_name_73 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_73 WHERE home_team = "west ham united" |
On what date was the record with catalog ALCA-275 released? | CREATE TABLE table_name_32 (date VARCHAR, catalog VARCHAR) | SELECT date FROM table_name_32 WHERE catalog = "alca-275" |
What date did the Ravens play the buffalo bills? | CREATE TABLE table_name_97 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_97 WHERE opponent = "buffalo bills" |
what project was initially started before september 20, 1968 | CREATE TABLE table_291768_1 (commissioned VARCHAR, launched VARCHAR) | SELECT commissioned FROM table_291768_1 WHERE launched = "September 20, 1968" |
Find the full name of employee who supported the most number of customers. | CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, id VARCHAR); CREATE TABLE customers (support_rep_id VARCHAR) | SELECT T1.first_name, T1.last_name FROM employees AS T1 JOIN customers AS T2 ON T1.id = T2.support_rep_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1 |
What is the longitude of the township at ANSI code 1759682? | CREATE TABLE table_18600760_9 (longitude VARCHAR, ansi_code VARCHAR) | SELECT longitude FROM table_18600760_9 WHERE ansi_code = 1759682 |
What was the away team score for the game played at the Brunswick Street Oval? | CREATE TABLE table_name_15 (away_team VARCHAR, venue VARCHAR) | SELECT away_team AS score FROM table_name_15 WHERE venue = "brunswick street oval" |
Which Surname has Throws of r, and a Position of p, and a DOB of 26 april 1989? | CREATE TABLE table_name_64 (surname VARCHAR, dob VARCHAR, throws VARCHAR, position VARCHAR) | SELECT surname FROM table_name_64 WHERE throws = "r" AND position = "p" AND dob = "26 april 1989" |
Who was the champion boxer? | CREATE TABLE table_14345690_2 (celebrity VARCHAR, famous_for VARCHAR) | SELECT celebrity FROM table_14345690_2 WHERE famous_for = "Champion boxer" |
What Variant has a Launch site that is white sands? | CREATE TABLE table_name_68 (variant VARCHAR, launch_site VARCHAR) | SELECT variant FROM table_name_68 WHERE launch_site = "white sands" |
What was the week on October 11, 1998? | CREATE TABLE table_name_48 (week INTEGER, date VARCHAR) | SELECT MIN(week) FROM table_name_48 WHERE date = "october 11, 1998" |
Name the lunar landing site for 19 november 1969 | CREATE TABLE table_1558077_8 (lunar_landing_site VARCHAR, lunar_landing_date VARCHAR) | SELECT lunar_landing_site FROM table_1558077_8 WHERE lunar_landing_date = "19 November 1969" |
what's the record where score is w 105–92 (ot) | CREATE TABLE table_11964154_9 (record VARCHAR, score VARCHAR) | SELECT record FROM table_11964154_9 WHERE score = "W 105–92 (OT)" |
List the top 5 genres by number of tracks. List genres name and total tracks. | CREATE TABLE tracks (genre_id VARCHAR); CREATE TABLE genres (name VARCHAR, id VARCHAR) | SELECT T1.name, COUNT(*) FROM genres AS T1 JOIN tracks AS T2 ON T2.genre_id = T1.id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 5 |
Can you tell me the Name that has the Goals larger than 98, and the Rank of 7? | CREATE TABLE table_name_24 (name VARCHAR, goals VARCHAR, rank VARCHAR) | SELECT name FROM table_name_24 WHERE goals > 98 AND rank = 7 |
The total goals have a FA Cup Apps larger than 1, and a Total Apps of 37, and a League Apps smaller than 30?, what is the total number? | CREATE TABLE table_name_20 (total_goals VARCHAR, league_apps VARCHAR, fa_cup_apps VARCHAR, total_apps VARCHAR) | SELECT COUNT(total_goals) FROM table_name_20 WHERE fa_cup_apps > 1 AND total_apps = 37 AND league_apps < 30 |
What is the campus fee of "San Jose State University" in year 1996? | CREATE TABLE csu_fees (year VARCHAR); CREATE TABLE campuses (id VARCHAR) | SELECT campusfee FROM campuses AS T1 JOIN csu_fees AS T2 ON T1.id = t2.campus WHERE t1.campus = "San Jose State University" AND T2.year = 1996 |
What was the score of united states player wally armstrong when he had a To par of +1 | CREATE TABLE table_name_8 (score VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR) | SELECT score FROM table_name_8 WHERE country = "united states" AND to_par = "+1" AND player = "wally armstrong" |
What is the average PI GP when the pick is smaller tha 70 and the reg GP is 97? | CREATE TABLE table_name_32 (pl_gp INTEGER, reg_gp VARCHAR, pick__number VARCHAR) | SELECT AVG(pl_gp) FROM table_name_32 WHERE reg_gp = 97 AND pick__number < 70 |
Which is the total number of evening gowns for swimsui less than 9.36 and average less than 9.23? | CREATE TABLE table_name_57 (evening_gown VARCHAR, swimsuit VARCHAR, average VARCHAR) | SELECT COUNT(evening_gown) FROM table_name_57 WHERE swimsuit < 9.36 AND average < 9.23 |
Which player has a to par of e and a score of 67-73=140? | CREATE TABLE table_name_15 (player VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT player FROM table_name_15 WHERE to_par = "e" AND score = 67 - 73 = 140 |
What was the vote when the air date is 4 october 1997? | CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR) | SELECT vote FROM table_25016824_2 WHERE air_date = "4 October 1997" |
What name has 118 as the apps? | CREATE TABLE table_name_87 (name VARCHAR, apps VARCHAR) | SELECT name FROM table_name_87 WHERE apps = 118 |
Return the address of customer 10. | CREATE TABLE customer_addresses (address_id VARCHAR, customer_id VARCHAR); CREATE TABLE addresses (address_details VARCHAR, address_id VARCHAR) | SELECT T1.address_details FROM addresses AS T1 JOIN customer_addresses AS T2 ON T1.address_id = T2.address_id WHERE T2.customer_id = 10 |
What is Martina Wood's Position? | CREATE TABLE table_name_46 (position VARCHAR, name VARCHAR) | SELECT position FROM table_name_46 WHERE name = "martina wood" |
Who played in Maryland the same year that Deep Run Valley LL Hilltown played in Pennsylvania? | CREATE TABLE table_13012165_1 (maryland VARCHAR, pennsylvania VARCHAR) | SELECT maryland FROM table_13012165_1 WHERE pennsylvania = "Deep Run Valley LL Hilltown" |
Who is the successor when florida territory at-large is the district? | CREATE TABLE table_225100_4 (successor VARCHAR, district VARCHAR) | SELECT successor FROM table_225100_4 WHERE district = "Florida Territory At-large" |
Which Days of the week has a Time of broadcast in january–february, june 2002? | CREATE TABLE table_name_31 (days_of_the_week VARCHAR, time_of_broadcast VARCHAR) | SELECT days_of_the_week FROM table_name_31 WHERE time_of_broadcast = "january–february, june 2002" |
What's the Significant of a value 1.0? | CREATE TABLE table_name_2 (significand__fraction_field_ VARCHAR, value VARCHAR) | SELECT significand__fraction_field_ FROM table_name_2 WHERE value = "1.0" |
Show the short names of the buildings managed by "Emma". | CREATE TABLE Apartment_Buildings (building_short_name VARCHAR, building_manager VARCHAR) | SELECT building_short_name FROM Apartment_Buildings WHERE building_manager = "Emma" |
What is the lowest round for Fort Lauderdale, Florida, United States, with a win and a time of 3:38? | CREATE TABLE table_name_14 (round INTEGER, time VARCHAR, res VARCHAR, location VARCHAR) | SELECT MIN(round) FROM table_name_14 WHERE res = "win" AND location = "fort lauderdale, florida, united states" AND time = "3:38" |
Who had 1990 of 2–2 in 1993? | CREATE TABLE table_name_67 (Id VARCHAR) | SELECT 1993 FROM table_name_67 WHERE 1990 = "2–2" |
Which Free polite has a Genitive 3 of *n(i)-ami? | CREATE TABLE table_name_40 (free VARCHAR, genitive_3 VARCHAR) | SELECT free AS polite FROM table_name_40 WHERE genitive_3 = "*n(i)-ami" |
What is the capacity for the school that has the Owl Athletic Complex baseball stadium? | CREATE TABLE table_1974545_3 (capacity VARCHAR, baseball_stadium VARCHAR) | SELECT capacity FROM table_1974545_3 WHERE baseball_stadium = "Owl Athletic Complex" |
How many Malaysia Cups have a total less than 0? | CREATE TABLE table_name_5 (malaysia_cup VARCHAR, total INTEGER) | SELECT COUNT(malaysia_cup) FROM table_name_5 WHERE total < 0 |
Which does the lhp player with the first name lachlan bat? | CREATE TABLE table_name_9 (bats VARCHAR, position VARCHAR, first VARCHAR) | SELECT bats FROM table_name_9 WHERE position = "lhp" AND first = "lachlan" |
What gender is allowed to attend the school that has a decile of 6 and a roll that is less than 179? | CREATE TABLE table_name_69 (gender VARCHAR, decile VARCHAR, roll VARCHAR) | SELECT gender FROM table_name_69 WHERE decile = 6 AND roll < 179 |
Name the sepal width when sepal length is 6.5 and petal width is 2.2 | CREATE TABLE table_10477224_1 (sepal_width VARCHAR, sepal_length VARCHAR, petal_width VARCHAR) | SELECT sepal_width FROM table_10477224_1 WHERE sepal_length = "6.5" AND petal_width = "2.2" |
Which Game is the highest one that has an Opponent of new york islanders, and a December larger than 10? | CREATE TABLE table_name_35 (game INTEGER, opponent VARCHAR, december VARCHAR) | SELECT MAX(game) FROM table_name_35 WHERE opponent = "new york islanders" AND december > 10 |
Who played against team 1 Vitória? | CREATE TABLE table_17282875_2 (team__number2 VARCHAR, team__number1 VARCHAR) | SELECT team__number2 FROM table_17282875_2 WHERE team__number1 = "Vitória" |
How many laps in total does the driver named Eddie Irvine have? | CREATE TABLE table_name_7 (laps VARCHAR, driver VARCHAR) | SELECT COUNT(laps) FROM table_name_7 WHERE driver = "eddie irvine" |
Can you tell me the Placings that hasthe Free smaller than 524.3, and the Total smaller than 1170.1, and the Name of per cock-clausen? | CREATE TABLE table_name_34 (placings VARCHAR, name VARCHAR, free VARCHAR, total VARCHAR) | SELECT placings FROM table_name_34 WHERE free < 524.3 AND total < 1170.1 AND name = "per cock-clausen" |
What is the total number for the position that has less than 2 draws, less than 9 losses and more than 24? | CREATE TABLE table_name_24 (position VARCHAR, points VARCHAR, drawn VARCHAR, lost VARCHAR) | SELECT COUNT(position) FROM table_name_24 WHERE drawn < 2 AND lost < 9 AND points > 24 |
Name the date for result of draw, and venue of edgbaston | CREATE TABLE table_name_37 (date VARCHAR, result VARCHAR, venue VARCHAR) | SELECT date FROM table_name_37 WHERE result = "draw" AND venue = "edgbaston" |
How many seasons had a rank of 16? | CREATE TABLE table_1218784_1 (season VARCHAR, rank VARCHAR) | SELECT COUNT(season) FROM table_1218784_1 WHERE rank = 16 |
what team was the 1st leg champion of sakalai | CREATE TABLE table_name_98 (champion VARCHAR) | SELECT 1 AS st_leg FROM table_name_98 WHERE champion = "sakalai" |
How many faculty do we have? | CREATE TABLE Faculty (Id VARCHAR) | SELECT COUNT(*) FROM Faculty |
What was the party for first elected 1923? | CREATE TABLE table_1342393_23 (party VARCHAR, first_elected VARCHAR) | SELECT party FROM table_1342393_23 WHERE first_elected = 1923 |
Who is every vacator with reason for change as resigned December 31, 1959? | CREATE TABLE table_2159571_2 (vacator VARCHAR, reason_for_change VARCHAR) | SELECT vacator FROM table_2159571_2 WHERE reason_for_change = "Resigned December 31, 1959" |
What is the assists total number if the minutes is 1? | CREATE TABLE table_24807406_1 (assists VARCHAR, minutes VARCHAR) | SELECT COUNT(assists) FROM table_24807406_1 WHERE minutes = 1 |
What is the total Points for the Opponent of @ New Jersey Devils and a Game bigger than 7? | CREATE TABLE table_name_29 (points INTEGER, opponent VARCHAR, game VARCHAR) | SELECT SUM(points) FROM table_name_29 WHERE opponent = "@ new jersey devils" AND game > 7 |
What is the pole position for marlboro challenge? | CREATE TABLE table_name_47 (pole_position VARCHAR, race_name VARCHAR) | SELECT pole_position FROM table_name_47 WHERE race_name = "marlboro challenge" |
What is the cyrillic name for the settlement with the population of 2125? | CREATE TABLE table_2562572_9 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR) | SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE population__2011_ = 2125 |
What was the score when St Kilda played as the home team? | CREATE TABLE table_name_59 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_59 WHERE home_team = "st kilda" |
When was the team, whose captain is Matt Smith, founded? | CREATE TABLE table_1301373_1 (founded VARCHAR, captain VARCHAR) | SELECT founded FROM table_1301373_1 WHERE captain = "Matt Smith" |
Which Opponent in the final has an Outcome of winner, and a Date larger than 1992, and a Surface of clay, and a Score in the final of 3–6, 6–2, 6–1? | CREATE TABLE table_name_65 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR, surface VARCHAR, outcome VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_65 WHERE outcome = "winner" AND date > 1992 AND surface = "clay" AND score_in_the_final = "3–6, 6–2, 6–1" |
Name the label for grown up overnight | CREATE TABLE table_1893815_1 (label VARCHAR, english_title VARCHAR) | SELECT label FROM table_1893815_1 WHERE english_title = "Grown Up Overnight" |
Which season was harrisburg lunatics in? | CREATE TABLE table_name_75 (season VARCHAR, team VARCHAR) | SELECT season FROM table_name_75 WHERE team = "harrisburg lunatics" |
What transfer window has baptista as the name? | CREATE TABLE table_name_44 (transfer_window VARCHAR, name VARCHAR) | SELECT transfer_window FROM table_name_44 WHERE name = "baptista" |
What is the Date with a Home that is hamilton wildcats? | CREATE TABLE table_name_29 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_29 WHERE home = "hamilton wildcats" |
Which Investing Dragon has requested £100,000 and is supported by Entrepreneur Kay Russell? | CREATE TABLE table_name_43 (investing_dragon_s_ VARCHAR, money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR) | SELECT investing_dragon_s_ FROM table_name_43 WHERE money_requested__£_ = "100,000" AND entrepreneur_s_ = "kay russell" |
What is the pick number of Penn State? | CREATE TABLE table_name_2 (pick VARCHAR, school VARCHAR) | SELECT pick FROM table_name_2 WHERE school = "penn state" |
Name the song for safe result #8. | CREATE TABLE table_23871828_1 (song_choice VARCHAR, result VARCHAR, order__number VARCHAR) | SELECT song_choice FROM table_23871828_1 WHERE result = "Safe" AND order__number = 8 |
What is the to par dated may 4, 2003? | CREATE TABLE table_1121352_2 (to_par VARCHAR, date VARCHAR) | SELECT to_par FROM table_1121352_2 WHERE date = "May 4, 2003" |
Show the names of customers who have the most mailshots. | CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_id VARCHAR) | SELECT T2.customer_name FROM mailshot_customers AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1 |
What is the Power (kW) for the station with a frequency of 95.1mhz? | CREATE TABLE table_name_72 (power__kw_ VARCHAR, frequency VARCHAR) | SELECT power__kw_ FROM table_name_72 WHERE frequency = "95.1mhz" |
Who is the opponent of the match with an attendance larger than 59,000? | CREATE TABLE table_name_89 (opponent VARCHAR, attendance INTEGER) | SELECT opponent FROM table_name_89 WHERE attendance > 59 OFFSET 000 |
What episode number was directed by Craig Ross, Jr. | CREATE TABLE table_21550897_1 (_number VARCHAR, directed_by VARCHAR) | SELECT _number FROM table_21550897_1 WHERE directed_by = "Craig Ross, Jr." |
Opponent of kilmarnock, and a Result of 1–1 happened in what venue? | CREATE TABLE table_name_24 (venue VARCHAR, opponent VARCHAR, result VARCHAR) | SELECT venue FROM table_name_24 WHERE opponent = "kilmarnock" AND result = "1–1" |
Pick # 3 works for which brand? | CREATE TABLE table_name_5 (brand__from_ VARCHAR, pick__number VARCHAR) | SELECT brand__from_ FROM table_name_5 WHERE pick__number = 3 |
What was the time/retired for the driver with 14 points? | CREATE TABLE table_name_78 (time_retired VARCHAR, points VARCHAR) | SELECT time_retired FROM table_name_78 WHERE points = "14" |
What Place has a Player of tony jacklin? | CREATE TABLE table_name_28 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_28 WHERE player = "tony jacklin" |
Who directed episode 21? | CREATE TABLE table_23958944_5 (directed_by VARCHAR, no_by_season VARCHAR) | SELECT directed_by FROM table_23958944_5 WHERE no_by_season = 21 |
What's the description of the buttonholer whose singer part number is 121795 kit 121908 buttonholer? | CREATE TABLE table_28652521_1 (description VARCHAR, singer_part_number VARCHAR) | SELECT description FROM table_28652521_1 WHERE singer_part_number = "121795 kit 121908 buttonholer" |
What rank is He Yingqin who was born before 1890? | CREATE TABLE table_name_75 (rank INTEGER, name VARCHAR, birth VARCHAR) | SELECT AVG(rank) FROM table_name_75 WHERE name = "he yingqin" AND birth < 1890 |
When the champion was Gay Brewer Category:Articles with hCards what was the total score? | CREATE TABLE table_name_90 (total_score VARCHAR, champion VARCHAR) | SELECT total_score FROM table_name_90 WHERE champion = "gay brewer category:articles with hcards" |
Who is the Winner of the Nissan Motorsport Australia Team at the Oran Park Raceway? | CREATE TABLE table_name_42 (winner VARCHAR, team VARCHAR, circuit VARCHAR) | SELECT winner FROM table_name_42 WHERE team = "nissan motorsport australia" AND circuit = "oran park raceway" |
Which HQ is associated with a number of employees of 100? | CREATE TABLE table_name_23 (headquarters VARCHAR, employees__world_ VARCHAR) | SELECT headquarters FROM table_name_23 WHERE employees__world_ = 100 |
What college did Keith Shologan play for? | CREATE TABLE table_name_40 (college VARCHAR, player VARCHAR) | SELECT college FROM table_name_40 WHERE player = "keith shologan" |
What is the lowest 1st prize for florida tournaments and a Score of 200 (-16)? | CREATE TABLE table_name_65 (location VARCHAR, score VARCHAR) | SELECT MIN(1 AS st_prize__) AS $__ FROM table_name_65 WHERE location = "florida" AND score = "200 (-16)" |
If the chief judge is Glen E. Conrad, what is the region? | CREATE TABLE table_22901612_2 (region VARCHAR, chief_judge VARCHAR) | SELECT region FROM table_22901612_2 WHERE chief_judge = "Glen E. Conrad" |
Which Took Office that has a Party of democrat, under the name of John Hancock | CREATE TABLE table_name_30 (took_office VARCHAR, party VARCHAR, name VARCHAR) | SELECT took_office FROM table_name_30 WHERE party = "democrat" AND name = "john hancock" |
What is Country, when Time is 1:29.43.60? | CREATE TABLE table_name_68 (country VARCHAR, time VARCHAR) | SELECT country FROM table_name_68 WHERE time = "1:29.43.60" |
When was the Browns' game that over 36,796 attended? | CREATE TABLE table_name_74 (date VARCHAR, attendance INTEGER) | SELECT date FROM table_name_74 WHERE attendance > 36 OFFSET 796 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.