question
stringlengths 12
243
| answer
stringlengths 18
557
| context
stringlengths 27
489
|
---|---|---|
What is the average Gold, when Nation is Hungary, and when Bronze is greater than 1? | SELECT AVG(gold) FROM table_name_2 WHERE nation = "hungary" AND bronze > 1 | CREATE TABLE table_name_2 (gold INTEGER, nation VARCHAR, bronze VARCHAR) |
What is American, when Initial-Syllable Open/Semi-Open Unstressed Vowels is "y /aɪ, ɨ/"? | SELECT american FROM table_name_7 WHERE initial_syllable_open_semi_open_unstressed_vowels = "y /aɪ, ɨ/" | CREATE TABLE table_name_7 (american VARCHAR, initial_syllable_open_semi_open_unstressed_vowels VARCHAR) |
What is the series number that has a production code of 50021–50025? | SELECT MAX(number_in_series) FROM table_name_19 WHERE production_code = "50021–50025" | CREATE TABLE table_name_19 (number_in_series INTEGER, production_code VARCHAR) |
Show names of climbers and the names of mountains they climb. | SELECT T1.Name, T2.Name FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID | CREATE TABLE mountain (Name VARCHAR, Mountain_ID VARCHAR); CREATE TABLE climber (Name VARCHAR, Mountain_ID VARCHAR) |
Find the first name and major of the students who are not allegry to soy. | SELECT fname, major FROM Student WHERE NOT StuID IN (SELECT StuID FROM Has_allergy WHERE Allergy = "Soy") | CREATE TABLE Has_allergy (fname VARCHAR, major VARCHAR, StuID VARCHAR, Allergy VARCHAR); CREATE TABLE Student (fname VARCHAR, major VARCHAR, StuID VARCHAR, Allergy VARCHAR) |
If the average is 1.2803, what is the total points maximum? | SELECT MAX(total_pts) FROM table_22011138_7 WHERE avg = "1.2803" | CREATE TABLE table_22011138_7 (total_pts INTEGER, avg VARCHAR) |
Who was the French Elector Elevated on 1288, May 16? | SELECT elector FROM table_name_92 WHERE nationality = "french" AND elevated = "1288, may 16" | CREATE TABLE table_name_92 (elector VARCHAR, nationality VARCHAR, elevated VARCHAR) |
How many strokes under par was the player who scored 71? | SELECT to_par FROM table_name_43 WHERE score = 71 | CREATE TABLE table_name_43 (to_par VARCHAR, score VARCHAR) |
What college did Francis Bellefroid go to? | SELECT college FROM table_28059992_6 WHERE player = "Francis Bellefroid" | CREATE TABLE table_28059992_6 (college VARCHAR, player VARCHAR) |
Which PD per game has a Rank smaller than 4, a Winning % of 78.6%, a Streak of w1, and a PA per game smaller than 81.5? | SELECT MIN(pd_per_game) FROM table_name_49 WHERE rank < 4 AND winning__percentage = "78.6%" AND streak = "w1" AND pa_per_game < 81.5 | CREATE TABLE table_name_49 (pd_per_game INTEGER, pa_per_game VARCHAR, streak VARCHAR, rank VARCHAR, winning__percentage VARCHAR) |
What is the duration for mike walling as the actor? | SELECT duration FROM table_name_47 WHERE actor = "mike walling" | CREATE TABLE table_name_47 (duration VARCHAR, actor VARCHAR) |
Which Place is the lowest one that has a Total smaller than 24, and a Draw larger than 7? | SELECT MIN(place) FROM table_name_94 WHERE total < 24 AND draw > 7 | CREATE TABLE table_name_94 (place INTEGER, total VARCHAR, draw VARCHAR) |
What is the result for the Toscane Horse in the freestyle test? | SELECT result FROM table_name_60 WHERE horse = "toscane" AND event = "freestyle test" | CREATE TABLE table_name_60 (result VARCHAR, horse VARCHAR, event VARCHAR) |
what's the percentage of votes with election date being 1981 | SELECT percentage_of_votes FROM table_13746866_2 WHERE election_date = 1981 | CREATE TABLE table_13746866_2 (percentage_of_votes VARCHAR, election_date VARCHAR) |
What is the branding for stations located in Cebu? | SELECT branding FROM table_17487395_1 WHERE location = "Cebu" | CREATE TABLE table_17487395_1 (branding VARCHAR, location VARCHAR) |
What is the fixed charge for the user who had a tariff of 11.30? | SELECT fixed_charge___rs__kwh_ FROM table_25479607_3 WHERE tariff___rs__kwh_ = "11.30" | CREATE TABLE table_25479607_3 (fixed_charge___rs__kwh_ VARCHAR, tariff___rs__kwh_ VARCHAR) |
What is the maximum enrollment for Concordia University? | SELECT MAX(enrollment) FROM table_1974443_1 WHERE institution = "Concordia University" | CREATE TABLE table_1974443_1 (enrollment INTEGER, institution VARCHAR) |
What is the total number of passengers of the airport ranked 15? | SELECT international_passengers FROM table_13836704_7 WHERE rank = 15 | CREATE TABLE table_13836704_7 (international_passengers VARCHAR, rank VARCHAR) |
Which event lasted 1 round and included an opponent of Dan Spychalski? | SELECT event FROM table_name_36 WHERE round = "1" AND opponent = "dan spychalski" | CREATE TABLE table_name_36 (event VARCHAR, round VARCHAR, opponent VARCHAR) |
WHAT PLAYER HAS THE OAKLAND ATHLETICS? | SELECT player FROM table_name_55 WHERE team = "oakland athletics" | CREATE TABLE table_name_55 (player VARCHAR, team VARCHAR) |
how many verbs have the yo form as sienta? | SELECT COUNT(verbs) FROM table_1977630_2 WHERE yo = "sienta" | CREATE TABLE table_1977630_2 (verbs VARCHAR, yo VARCHAR) |
What is the highest number of points the team with 0 wins had before 1992? | SELECT MAX(points) FROM table_name_11 WHERE wins = 0 AND year < 1992 | CREATE TABLE table_name_11 (points INTEGER, wins VARCHAR, year VARCHAR) |
What was the altitude of the yield of 1.4 megatons? | SELECT altitude__km_ FROM table_148578_1 WHERE yield__approximate_ = "1.4 megatons" | CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, yield__approximate_ VARCHAR) |
Which catalogue has a date of 1987? | SELECT catalogue FROM table_name_63 WHERE date = "1987" | CREATE TABLE table_name_63 (catalogue VARCHAR, date VARCHAR) |
Which country has a density (per km²) of 6,814? | SELECT country FROM table_name_32 WHERE density__per_km²_ = "6,814" | CREATE TABLE table_name_32 (country VARCHAR, density__per_km²_ VARCHAR) |
What is the sum of lap for the Dale Coyne Racing Team, and 0 points? | SELECT SUM(laps) FROM table_name_8 WHERE team = "dale coyne racing" AND points = 0 | CREATE TABLE table_name_8 (laps INTEGER, team VARCHAR, points VARCHAR) |
What is the method of the match with chris ade as the opponent? | SELECT method FROM table_name_70 WHERE opponent = "chris ade" | CREATE TABLE table_name_70 (method VARCHAR, opponent VARCHAR) |
What is the status of the Hamaoka-3 unit? | SELECT status FROM table_name_33 WHERE unit = "hamaoka-3" | CREATE TABLE table_name_33 (status VARCHAR, unit VARCHAR) |
How many artists were there for the show thoroughly modern millie? | SELECT COUNT(artist) FROM table_28140141_1 WHERE show = "Thoroughly Modern Millie" | CREATE TABLE table_28140141_1 (artist VARCHAR, show VARCHAR) |
What is the status of incumbent Charles Stenholm? | SELECT status FROM table_1341568_44 WHERE incumbent = "Charles Stenholm" | CREATE TABLE table_1341568_44 (status VARCHAR, incumbent VARCHAR) |
What is the earliest year for ordinary people to appear in the notes? | SELECT MIN(year) FROM table_name_83 WHERE notes = "ordinary people" | CREATE TABLE table_name_83 (year INTEGER, notes VARCHAR) |
What is the minimum introduced value for the Departmental region? | SELECT MIN(introduced) FROM table_1081459_1 WHERE region = "Departmental" | CREATE TABLE table_1081459_1 (introduced INTEGER, region VARCHAR) |
Name the most # of seats won | SELECT MAX(_number_of_seats_won) FROM table_19769687_3 | CREATE TABLE table_19769687_3 (_number_of_seats_won INTEGER) |
When was the earliest year that Guillermo Vilas was the runner-up? | SELECT MIN(year) FROM table_name_9 WHERE runner_up = "guillermo vilas" | CREATE TABLE table_name_9 (year INTEGER, runner_up VARCHAR) |
What is the web thickness if the flange width is 100? | SELECT web_thickness__mm_ FROM table_2071644_2 WHERE flange_width__mm_ = 100 | CREATE TABLE table_2071644_2 (web_thickness__mm_ VARCHAR, flange_width__mm_ VARCHAR) |
What is the highest number of games played? | SELECT MAX(games_played) FROM table_18018214_4 | CREATE TABLE table_18018214_4 (games_played INTEGER) |
Which episode number saw 1.312 million U.S. Wviewers? | SELECT no FROM table_29085880_1 WHERE us_viewers__million_ = "1.312" | CREATE TABLE table_29085880_1 (no VARCHAR, us_viewers__million_ VARCHAR) |
Where was the tourney when Louisville won the regular season? | SELECT tournament_venue__city_ FROM table_21269441_4 WHERE regular_season_winner = "Louisville" | CREATE TABLE table_21269441_4 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR) |
What country has a 14 to par? | SELECT country FROM table_name_66 WHERE to_par = 14 | CREATE TABLE table_name_66 (country VARCHAR, to_par VARCHAR) |
What is the name of the person who was in the Original Broadway Cast that was Original West End Cast of sheila hancock? | SELECT original_broadway_cast FROM table_name_56 WHERE original_west_end_cast = "sheila hancock" | CREATE TABLE table_name_56 (original_broadway_cast VARCHAR, original_west_end_cast VARCHAR) |
Which Date has a Venue of lake oval? | SELECT date FROM table_name_36 WHERE venue = "lake oval" | CREATE TABLE table_name_36 (date VARCHAR, venue VARCHAR) |
What was the time of the swimmer in lane 7? | SELECT time FROM table_name_77 WHERE lane = 7 | CREATE TABLE table_name_77 (time VARCHAR, lane VARCHAR) |
Which opponent has a record of 44-28? | SELECT opponent FROM table_name_2 WHERE record = "44-28" | CREATE TABLE table_name_2 (opponent VARCHAR, record VARCHAR) |
What order did Lambert perform in the top 11? | SELECT order__number FROM table_21501511_1 WHERE week__number = "Top 11" | CREATE TABLE table_21501511_1 (order__number VARCHAR, week__number VARCHAR) |
In which city was the Night of the Living Duck released? | SELECT city FROM table_name_75 WHERE title = "the night of the living duck" | CREATE TABLE table_name_75 (city VARCHAR, title VARCHAR) |
Where did Richmond play as the away team? | SELECT venue FROM table_name_57 WHERE away_team = "richmond" | CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR) |
List the wheels and locations of the railways. | SELECT Wheels, LOCATION FROM railway | CREATE TABLE railway (Wheels VARCHAR, LOCATION VARCHAR) |
Who is the driver of the Chevrolet engine that is sponsored by godaddy.com? | SELECT driver_s_ FROM table_2503102_1 WHERE engine = "Chevrolet" AND car_sponsor_s_ = "GoDaddy.com" | CREATE TABLE table_2503102_1 (driver_s_ VARCHAR, engine VARCHAR, car_sponsor_s_ VARCHAR) |
What is the Freq currently of the 4GG Callsign? | SELECT freq_currently FROM table_name_7 WHERE callsign = "4gg" | CREATE TABLE table_name_7 (freq_currently VARCHAR, callsign VARCHAR) |
Show the names of companies and of employees. | SELECT T3.Name, T2.Name FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID | CREATE TABLE company (Name VARCHAR, Company_ID VARCHAR); CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR) |
Which opponent has points less than 18, and a november greater than 11? | SELECT opponent FROM table_name_21 WHERE points < 18 AND november > 11 | CREATE TABLE table_name_21 (opponent VARCHAR, points VARCHAR, november VARCHAR) |
Who was the losing team with a total of 24 when the winning team was Sydney Roosters? | SELECT losing_team FROM table_name_44 WHERE total = 24 AND winning_team = "sydney roosters" | CREATE TABLE table_name_44 (losing_team VARCHAR, total VARCHAR, winning_team VARCHAR) |
Which Mascot has IHSAA Class of aa, and a Enrollment larger than 369? | SELECT mascot FROM table_name_10 WHERE ihsaa_class = "aa" AND enrollment > 369 | CREATE TABLE table_name_10 (mascot VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR) |
What is the highest Population that has a Median household income of $32,902 with a number of households less than 11,125 | SELECT MAX(population) FROM table_name_34 WHERE median_household_income = "$32,902" AND number_of_households < 11 OFFSET 125 | CREATE TABLE table_name_34 (population INTEGER, median_household_income VARCHAR, number_of_households VARCHAR) |
Which round did jonathan bomarito win? | SELECT round FROM table_name_23 WHERE winning_driver = "jonathan bomarito" | CREATE TABLE table_name_23 (round VARCHAR, winning_driver VARCHAR) |
Show ids of all students who do not have any friends. | SELECT id FROM Highschooler EXCEPT SELECT student_id FROM Friend | CREATE TABLE Highschooler (id VARCHAR, student_id VARCHAR); CREATE TABLE Friend (id VARCHAR, student_id VARCHAR) |
what is the tournament when the winning score is –9 (69-69-70-71=279)? | SELECT tournament FROM table_name_84 WHERE winning_score = –9(69 - 69 - 70 - 71 = 279) | CREATE TABLE table_name_84 (tournament VARCHAR, winning_score VARCHAR) |
In what district is the city listed in Serial number 9? | SELECT COUNT(district) FROM table_18425346_2 WHERE serial_no = 9 | CREATE TABLE table_18425346_2 (district VARCHAR, serial_no VARCHAR) |
Name the least merconorte for interliga of 2 and matches more than 260 with superliga more than 7 | SELECT MIN(merconorte) FROM table_name_92 WHERE interliga = 2 AND matches > 260 AND superliga > 7 | CREATE TABLE table_name_92 (merconorte INTEGER, superliga VARCHAR, interliga VARCHAR, matches VARCHAR) |
What is the Region with a Catalog of alca-487? | SELECT region FROM table_name_89 WHERE catalog = "alca-487" | CREATE TABLE table_name_89 (region VARCHAR, catalog VARCHAR) |
When dietrich fischer-dieskau is the olivier who is the conductor? | SELECT conductor FROM table_29728787_1 WHERE olivier = "Dietrich Fischer-Dieskau" | CREATE TABLE table_29728787_1 (conductor VARCHAR, olivier VARCHAR) |
What is the total number of 1sts that Martin Schmitt had where he less than 235.7 points? | SELECT COUNT(1 AS st__m_) FROM table_name_81 WHERE name = "martin schmitt" AND points < 235.7 | CREATE TABLE table_name_81 (name VARCHAR, points VARCHAR) |
Name the lost for % won of 55.37 | SELECT lost FROM table_name_64 WHERE _percentage_won = "55.37" | CREATE TABLE table_name_64 (lost VARCHAR, _percentage_won VARCHAR) |
What was the song choice when the theme was free choice and Adeleye made it through to bootcamp? | SELECT song_choice FROM table_name_26 WHERE theme = "free choice" AND result = "through to bootcamp" | CREATE TABLE table_name_26 (song_choice VARCHAR, theme VARCHAR, result VARCHAR) |
Who was the opposition in the game on July 29? | SELECT opposition FROM table_name_22 WHERE date = "july 29" | CREATE TABLE table_name_22 (opposition VARCHAR, date VARCHAR) |
What school did P Jay Gehrke of the Kansas City Royals attend? | SELECT school FROM table_name_30 WHERE position = "p" AND team = "kansas city royals" AND player = "jay gehrke" | CREATE TABLE table_name_30 (school VARCHAR, player VARCHAR, position VARCHAR, team VARCHAR) |
Which Record has a home of Nashville? | SELECT record FROM table_name_72 WHERE home = "nashville" | CREATE TABLE table_name_72 (record VARCHAR, home VARCHAR) |
What are the average wins that have great britain as the team? | SELECT AVG(wins) FROM table_name_80 WHERE team = "great britain" | CREATE TABLE table_name_80 (wins INTEGER, team VARCHAR) |
Show names of companies and that of employees in descending order of number of years working for that employee. | SELECT T3.Name, T2.Name FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID ORDER BY T1.Year_working | CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE company (Name VARCHAR, Company_ID VARCHAR); CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR, Year_working VARCHAR) |
Find the top 3 wineries with the greatest number of wines made of white color grapes. | SELECT T2.Winery FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.GRAPE = T2.GRAPE WHERE T1.Color = "White" GROUP BY T2.Winery ORDER BY COUNT(*) DESC LIMIT 3 | CREATE TABLE GRAPES (GRAPE VARCHAR, Color VARCHAR); CREATE TABLE WINE (Winery VARCHAR, GRAPE VARCHAR) |
What is the average unit price of tracks that belong to Jazz genre? | SELECT AVG(UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Jazz" | CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR) |
In language where Saturday is සෙනසුරාදා senasuraadaa, what is Tuesday? | SELECT tuesday_mangala__mars_ FROM table_1277350_3 WHERE saturday_shani__saturn_ = "සෙනසුරාදා Senasuraadaa" | CREATE TABLE table_1277350_3 (tuesday_mangala__mars_ VARCHAR, saturday_shani__saturn_ VARCHAR) |
Name the scoring average for best finsih being t35 | SELECT scoring_average FROM table_18198579_6 WHERE best_finish = "T35" | CREATE TABLE table_18198579_6 (scoring_average VARCHAR, best_finish VARCHAR) |
What opponent is at Richmond Academy? | SELECT opponent FROM table_name_38 WHERE location_attendance = "richmond academy" | CREATE TABLE table_name_38 (opponent VARCHAR, location_attendance VARCHAR) |
How many acres does the area of Lissagroom with Bandon as its poor law union cover? | SELECT area__acres__ FROM table_30120633_1 WHERE poor_law_union = "Bandon" AND townland = "Lissagroom" | CREATE TABLE table_30120633_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR) |
when was the ship completed that was laid down on 23 march 1926? | SELECT completed FROM table_name_31 WHERE laid_down = "23 march 1926" | CREATE TABLE table_name_31 (completed VARCHAR, laid_down VARCHAR) |
Tell me the constructor that has 35 Laps with a grid more than 5 | SELECT constructor FROM table_name_61 WHERE laps = 35 AND grid > 5 | CREATE TABLE table_name_61 (constructor VARCHAR, laps VARCHAR, grid VARCHAR) |
What is the fewest episodes with the Romaji title Regatta~Kimi to Ita Eien~? | SELECT MIN(episodes) FROM table_name_40 WHERE romaji_title = "regatta~kimi to ita eien~" | CREATE TABLE table_name_40 (episodes INTEGER, romaji_title VARCHAR) |
Which professionals have done at least two types of treatments? List the professional id and cell phone. | SELECT T1.professional_id, T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING COUNT(*) >= 2 | CREATE TABLE Professionals (professional_id VARCHAR, cell_number VARCHAR); CREATE TABLE Treatments (professional_id VARCHAR) |
What is the lowest total for 1985-1986 when the total points are 124? | SELECT MIN(1985 AS _1986) FROM table_name_33 WHERE total_points = 124 | CREATE TABLE table_name_33 (total_points VARCHAR) |
what's the swimsuit where average is 8.670 | SELECT swimsuit FROM table_12094609_1 WHERE average = "8.670" | CREATE TABLE table_12094609_1 (swimsuit VARCHAR, average VARCHAR) |
Who was the opponent at the game with a score of 42-28 after week 4? | SELECT opponent FROM table_name_91 WHERE week > 4 AND score = "42-28" | CREATE TABLE table_name_91 (opponent VARCHAR, week VARCHAR, score VARCHAR) |
What were the revising conventions commentary with a denunciation of 21? | SELECT revising_convention_s_ FROM table_2001348_1 WHERE denunciations__september_2011_ = 21 | CREATE TABLE table_2001348_1 (revising_convention_s_ VARCHAR, denunciations__september_2011_ VARCHAR) |
What League of VSL Sport was Established in 1935? | SELECT sport FROM table_name_40 WHERE established = 1935 AND league = "vsl" | CREATE TABLE table_name_40 (sport VARCHAR, established VARCHAR, league VARCHAR) |
what's the maximum position with winnings $50,000 | SELECT MAX(position) FROM table_10160447_1 WHERE winnings = "$50,000" | CREATE TABLE table_10160447_1 (position INTEGER, winnings VARCHAR) |
What is the try bonus when the loss is 13 and the draw is 2? | SELECT try_bonus FROM table_name_51 WHERE lost = "13" AND drawn = "2" | CREATE TABLE table_name_51 (try_bonus VARCHAR, lost VARCHAR, drawn VARCHAR) |
When melbourne was the away team, what was the lowest crowd turnout they had? | SELECT MIN(crowd) FROM table_name_75 WHERE away_team = "melbourne" | CREATE TABLE table_name_75 (crowd INTEGER, away_team VARCHAR) |
Name the matches for wickets 17 | SELECT matches FROM table_17900317_5 WHERE wickets = 17 | CREATE TABLE table_17900317_5 (matches VARCHAR, wickets VARCHAR) |
Where was the game played when their record was 9-1-0? | SELECT location FROM table_name_10 WHERE record = "9-1-0" | CREATE TABLE table_name_10 (location VARCHAR, record VARCHAR) |
Which Kit Manufacturer supports team Everton? | SELECT kit_manufacturer FROM table_name_90 WHERE team = "everton" | CREATE TABLE table_name_90 (kit_manufacturer VARCHAR, team VARCHAR) |
What was the date of the game held at the A venue with a result of 0-1 against the Rangers? | SELECT date FROM table_name_87 WHERE venue = "a" AND result = "0-1" AND opponent = "rangers" | CREATE TABLE table_name_87 (date VARCHAR, opponent VARCHAR, venue VARCHAR, result VARCHAR) |
Name the production code for number 8 | SELECT production_code FROM table_28348757_3 WHERE _number = 8 | CREATE TABLE table_28348757_3 (production_code VARCHAR, _number VARCHAR) |
How tall is the building built in 1985 with 22 floors? | SELECT height_ft__m_ FROM table_name_44 WHERE floors = 22 AND year = 1985 | CREATE TABLE table_name_44 (height_ft__m_ VARCHAR, floors VARCHAR, year VARCHAR) |
What was the final score of the Paul Goldstein match? | SELECT score FROM table_name_96 WHERE opponent_in_the_final = "paul goldstein" | CREATE TABLE table_name_96 (score VARCHAR, opponent_in_the_final VARCHAR) |
Which Theme has a Order # of 9? | SELECT theme FROM table_name_5 WHERE order__number = "9" | CREATE TABLE table_name_5 (theme VARCHAR, order__number VARCHAR) |
Where did they have the divisional playoffs? | SELECT game_site FROM table_name_59 WHERE week = "divisional playoffs" | CREATE TABLE table_name_59 (game_site VARCHAR, week VARCHAR) |
What is the smallest number of tries with conversions more than 0? | SELECT MIN(tries) FROM table_name_22 WHERE conversions > 0 | CREATE TABLE table_name_22 (tries INTEGER, conversions INTEGER) |
What was the tie number with the home team of Swindon Town? | SELECT tie_no FROM table_name_13 WHERE home_team = "swindon town" | CREATE TABLE table_name_13 (tie_no VARCHAR, home_team VARCHAR) |
What is the Time with a Score that is 46-82? | SELECT time FROM table_name_17 WHERE score = "46-82" | CREATE TABLE table_name_17 (time VARCHAR, score VARCHAR) |
What's the West Germanic when the German is /s/ or /ts/? | SELECT west_germanic FROM table_name_90 WHERE german = "/s/ or /ts/" | CREATE TABLE table_name_90 (west_germanic VARCHAR, german VARCHAR) |
Subsets and Splits