instruction
stringlengths 67
299
| input
stringlengths 110
572
| output
stringlengths 18
557
|
---|---|---|
Write a SQL query that answers the following question: What models have an a2 barrel profile? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_12834315_5 (name VARCHAR, barrel_profile VARCHAR) | SELECT name FROM table_12834315_5 WHERE barrel_profile = "A2" |
Write a SQL query that answers the following question: When the Gain is 29, and the average per game is 2, and the player lost less than 390 yards, what's the sum of the Long yards? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_26 (long INTEGER, gain VARCHAR, loss VARCHAR, avg_g VARCHAR) | SELECT SUM(long) FROM table_name_26 WHERE loss < 390 AND avg_g = 2 AND gain > 29 |
Write a SQL query that answers the following question: what's the loss with try bonus being 5 and points for being 390 | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_12828723_3 (lost VARCHAR, try_bonus VARCHAR, points_for VARCHAR) | SELECT lost FROM table_12828723_3 WHERE try_bonus = "5" AND points_for = "390" |
Write a SQL query that answers the following question: What is the total of televote for the artist Pokeris when the place was less than 10? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_44 (televote INTEGER, artist VARCHAR, place VARCHAR) | SELECT SUM(televote) FROM table_name_44 WHERE artist = "pokeris" AND place < 10 |
Write a SQL query that answers the following question: Which Emission (in nanometers) has an absorbtion of 593 nm? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_6 (emit__nm_ VARCHAR, absorb__nm_ VARCHAR) | SELECT emit__nm_ FROM table_name_6 WHERE absorb__nm_ = "593" |
Write a SQL query that answers the following question: Is it home or away when opponent is Pride with a W 11-10 result? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_49 (home_away VARCHAR, opponent VARCHAR, result VARCHAR) | SELECT home_away FROM table_name_49 WHERE opponent = "pride" AND result = "w 11-10" |
Write a SQL query that answers the following question: What is College of Ohio State's pick number with an overall lower than 145? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_42 (pick__number VARCHAR, overall VARCHAR, college VARCHAR) | SELECT pick__number FROM table_name_42 WHERE overall < 145 AND college = "ohio state" |
Write a SQL query that answers the following question: What are the results for years after 2007? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_17 (result VARCHAR, year INTEGER) | SELECT result FROM table_name_17 WHERE year > 2007 |
Write a SQL query that answers the following question: What is the record of the game with Mason as the decision and Nashville as the home team? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_45 (record VARCHAR, decision VARCHAR, home VARCHAR) | SELECT record FROM table_name_45 WHERE decision = "mason" AND home = "nashville" |
Write a SQL query that answers the following question: In what location was the tail number ZS-SPF? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_83 (location VARCHAR, tail_number VARCHAR) | SELECT location FROM table_name_83 WHERE tail_number = "zs-spf" |
Write a SQL query that answers the following question: What opponent has a score of 1-3? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_70 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_70 WHERE score = "1-3" |
Write a SQL query that answers the following question: What is the boat builder for a boat built in 1910/11 and a number of 39? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_42 (boat_builder VARCHAR, year_built VARCHAR, number VARCHAR) | SELECT boat_builder FROM table_name_42 WHERE year_built = "1910/11" AND number = 39 |
Write a SQL query that answers the following question: What's the address of the union bank of California tower? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_27 (street_address VARCHAR, name VARCHAR) | SELECT street_address FROM table_name_27 WHERE name = "union bank of california tower" |
Write a SQL query that answers the following question: What is the highest loss with points less than 7? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_16 (lost INTEGER, points INTEGER) | SELECT MAX(lost) FROM table_name_16 WHERE points < 7 |
Write a SQL query that answers the following question: What is the mean vertical relief in feet when the Peak Name is Tower near mead wood road entrance and the elevation in feet is more than 1,410? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_87 (vertical_relief__ft_ INTEGER, peak_name VARCHAR, elevation__ft_ VARCHAR) | SELECT AVG(vertical_relief__ft_) FROM table_name_87 WHERE peak_name = "tower near mead wood road entrance" AND elevation__ft_ > 1 OFFSET 410 |
Write a SQL query that answers the following question: Which Week has a Result of w 20-13? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_20 (week INTEGER, result VARCHAR) | SELECT AVG(week) FROM table_name_20 WHERE result = "w 20-13" |
Write a SQL query that answers the following question: Name the catalogue that has tracks less than 13 and the release date of 10/31/72 | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_28 (catalogue VARCHAR, track VARCHAR, release_date VARCHAR) | SELECT catalogue FROM table_name_28 WHERE track < 13 AND release_date = "10/31/72" |
Write a SQL query that answers the following question: What is Score, when Tie No is 17? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_81 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_81 WHERE tie_no = "17" |
Write a SQL query that answers the following question: What is the Venue when the score was 1 – 1, and the result was 2 – 2? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_87 (venue VARCHAR, score VARCHAR, result VARCHAR) | SELECT venue FROM table_name_87 WHERE score = "1 – 1" AND result = "2 – 2" |
Write a SQL query that answers the following question: Which studio did The Oregon Trail? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_13 (studio VARCHAR, title VARCHAR) | SELECT studio FROM table_name_13 WHERE title = "the oregon trail" |
Write a SQL query that answers the following question: Name the state for lake county | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_1762887_1 (state VARCHAR, county VARCHAR) | SELECT state FROM table_1762887_1 WHERE county = "Lake county" |
Write a SQL query that answers the following question: When was the date of appointment for St. Johnstone's manager? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_16075179_6 (date_of_appointment VARCHAR, team VARCHAR) | SELECT date_of_appointment FROM table_16075179_6 WHERE team = "St. Johnstone" |
Write a SQL query that answers the following question: What is the Voges-Proskauer reading for proteus mirabilis? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_70 (voges_proskauer VARCHAR, species VARCHAR) | SELECT voges_proskauer FROM table_name_70 WHERE species = "proteus mirabilis" |
Write a SQL query that answers the following question: What Player has 23 Tries? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_61 (player VARCHAR, tries VARCHAR) | SELECT player FROM table_name_61 WHERE tries = 23 |
Write a SQL query that answers the following question: what is the place when the event is 4000 m individual pursuit? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_94 (place VARCHAR, event VARCHAR) | SELECT place FROM table_name_94 WHERE event = "4000 m individual pursuit" |
Write a SQL query that answers the following question: What is the score of the home team that played Collingwood? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_70 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_70 WHERE away_team = "collingwood" |
Write a SQL query that answers the following question: What player from South Africa had a total less than 284? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_93 (player VARCHAR, total VARCHAR, country VARCHAR) | SELECT player FROM table_name_93 WHERE total < 284 AND country = "south africa" |
Write a SQL query that answers the following question: Which home team plays at victoria park? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_46 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_46 WHERE venue = "victoria park" |
Write a SQL query that answers the following question: Show names for artists without any exhibition. | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE artist (name VARCHAR, artist_id VARCHAR); CREATE TABLE exhibition (name VARCHAR, artist_id VARCHAR) | SELECT name FROM artist WHERE NOT artist_id IN (SELECT artist_id FROM exhibition) |
Write a SQL query that answers the following question: Can you tell me the Club that has the Lost of 19? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_34 (club VARCHAR, lost VARCHAR) | SELECT club FROM table_name_34 WHERE lost = "19" |
Write a SQL query that answers the following question: Name the player/s when there were 20 points with less than 1.0 extra point . | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_25730123_2 (player VARCHAR, extra_points VARCHAR, points VARCHAR) | SELECT player FROM table_25730123_2 WHERE extra_points < 1.0 AND points = 20 |
Write a SQL query that answers the following question: What is the methyl red reading for proteus mirabilis? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_77 (methyl_red VARCHAR, species VARCHAR) | SELECT methyl_red FROM table_name_77 WHERE species = "proteus mirabilis" |
Write a SQL query that answers the following question: What cub team or college did Bob Law come from? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_1965650_8 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_1965650_8 WHERE player = "Bob Law" |
Write a SQL query that answers the following question: Which Rank has a Total larger than 17, and a Silver smaller than 13? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_94 (rank VARCHAR, total VARCHAR, silver VARCHAR) | SELECT rank FROM table_name_94 WHERE total > 17 AND silver < 13 |
Write a SQL query that answers the following question: what is the branding when the call sign is ckua-fm-3? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_33 (branding VARCHAR, call_sign VARCHAR) | SELECT branding FROM table_name_33 WHERE call_sign = "ckua-fm-3" |
Write a SQL query that answers the following question: What is the name of the primary with a DCSF number larger than 2337 and an Ofsted number smaller than 135339? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_74 (name VARCHAR, ofsted_number VARCHAR, type VARCHAR, dcsf_number VARCHAR) | SELECT name FROM table_name_74 WHERE type = "primary" AND dcsf_number > 2337 AND ofsted_number < 135339 |
Write a SQL query that answers the following question: Which the highest Bronze of czech republic with a Total smaller than 4? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_63 (bronze INTEGER, nation VARCHAR, total VARCHAR) | SELECT MAX(bronze) FROM table_name_63 WHERE nation = "czech republic" AND total < 4 |
Write a SQL query that answers the following question: How many races did he do in the year he had 8 points? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_47 (races VARCHAR, points VARCHAR) | SELECT races FROM table_name_47 WHERE points = "8" |
Write a SQL query that answers the following question: Which year did Ray Crawford the Kurtis Kraft 500g chassis? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_70 (year VARCHAR, chassis VARCHAR) | SELECT year FROM table_name_70 WHERE chassis = "kurtis kraft 500g" |
Write a SQL query that answers the following question: What is the total (kg when the bodyweight is more than 57.8, and the clean & jerk is less than 103? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_94 (total__kg_ INTEGER, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR) | SELECT SUM(total__kg_) FROM table_name_94 WHERE bodyweight > 57.8 AND clean_ & _jerk < 103 |
Write a SQL query that answers the following question: Does the s35 model have bluetooth? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_31 (bluetooth VARCHAR, model VARCHAR) | SELECT bluetooth FROM table_name_31 WHERE model = "s35" |
Write a SQL query that answers the following question: What is the Place for the 66 Score? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_33 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_33 WHERE score = 66 |
Write a SQL query that answers the following question: What was the attendance at the game played at Moorabbin Oval? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_78 (crowd VARCHAR, venue VARCHAR) | SELECT crowd FROM table_name_78 WHERE venue = "moorabbin oval" |
Write a SQL query that answers the following question: What is the original air date for the episode written by daniel dratch? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_25716399_1 (original_air_date VARCHAR, written_by VARCHAR) | SELECT original_air_date FROM table_25716399_1 WHERE written_by = "Daniel Dratch" |
Write a SQL query that answers the following question: Who's the Republican ticket with a Democratic ticket of flora d. johnson? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_62 (republican_ticket VARCHAR, democratic_ticket VARCHAR) | SELECT republican_ticket FROM table_name_62 WHERE democratic_ticket = "flora d. johnson" |
Write a SQL query that answers the following question: What is the total number of points of the honda hr-1 engine? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_41 (points VARCHAR, engine VARCHAR) | SELECT COUNT(points) FROM table_name_41 WHERE engine = "honda hr-1" |
Write a SQL query that answers the following question: What language is the Lyrics of the release with Catalog number 560 6111? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_59 (lyrics VARCHAR, catalog_number VARCHAR) | SELECT lyrics FROM table_name_59 WHERE catalog_number = "560 6111" |
Write a SQL query that answers the following question: What is the highest 2001 population when the ethnic group is white: british? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_282413_3 (ethnic_group VARCHAR) | SELECT MAX(2001 AS _population) FROM table_282413_3 WHERE ethnic_group = "White: British" |
Write a SQL query that answers the following question: What's the Score with the Visitor of Montreal Maroons and has a Date of December 28? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_45 (score VARCHAR, visitor VARCHAR, date VARCHAR) | SELECT score FROM table_name_45 WHERE visitor = "montreal maroons" AND date = "december 28" |
Write a SQL query that answers the following question: List the player that scored 4 times. | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_24565004_15 (name VARCHAR, goals¹ VARCHAR) | SELECT name FROM table_24565004_15 WHERE goals¹ = 4 |
Write a SQL query that answers the following question: With the pick of 1 Cecil Martin has what number as the overall? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_38 (overall VARCHAR, pick VARCHAR, name VARCHAR) | SELECT COUNT(overall) FROM table_name_38 WHERE pick = 1 AND name = "cecil martin" |
Write a SQL query that answers the following question: In what City was Bulgaria the Opponent with Results¹ of 1:0? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_6 (city VARCHAR, results¹ VARCHAR, opponent VARCHAR) | SELECT city FROM table_name_6 WHERE results¹ = "1:0" AND opponent = "bulgaria" |
Write a SQL query that answers the following question: What is the record on October 13, when philadelphia was the home team? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_47 (record VARCHAR, home VARCHAR, date VARCHAR) | SELECT record FROM table_name_47 WHERE home = "philadelphia" AND date = "october 13" |
Write a SQL query that answers the following question: Name the least game for arco arena 13,330 | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_17102076_10 (game INTEGER, location_attendance VARCHAR) | SELECT MIN(game) FROM table_17102076_10 WHERE location_attendance = "ARCO Arena 13,330" |
Write a SQL query that answers the following question: What was the earliest year that had less than 1 point? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_85 (year INTEGER, points INTEGER) | SELECT MIN(year) FROM table_name_85 WHERE points < 1 |
Write a SQL query that answers the following question: What are the notes for the shirt that said Pavv before 2005? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_57 (notes VARCHAR, shirt_printing VARCHAR, year VARCHAR) | SELECT notes FROM table_name_57 WHERE shirt_printing = "pavv" AND year < 2005 |
Write a SQL query that answers the following question: Who attended Columbia law school and was appointed in 2004? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_30 (name VARCHAR, law_school_attended VARCHAR, appointed VARCHAR) | SELECT name FROM table_name_30 WHERE law_school_attended = "columbia law school" AND appointed = 2004 |
Write a SQL query that answers the following question: What is the 2012 club of the cf pos. player? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_85 (pos VARCHAR) | SELECT 2012 AS _club FROM table_name_85 WHERE pos = "cf" |
Write a SQL query that answers the following question: Name the max irish points for eastern michigan | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_22875369_3 (irish_points INTEGER, opponent VARCHAR) | SELECT MAX(irish_points) FROM table_22875369_3 WHERE opponent = "Eastern Michigan" |
Write a SQL query that answers the following question: When michael van stayen is the points classification what is the team classification? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_28298471_14 (team_classification VARCHAR, points_classification VARCHAR) | SELECT team_classification FROM table_28298471_14 WHERE points_classification = "Michael Van Stayen" |
Write a SQL query that answers the following question: Which Tournament has a Score of 1–6, 0–6? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_89 (tournament VARCHAR, score VARCHAR) | SELECT tournament FROM table_name_89 WHERE score = "1–6, 0–6" |
Write a SQL query that answers the following question: List all information about courses sorted by credits in the ascending order. | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE COURSE (Credits VARCHAR) | SELECT * FROM COURSE ORDER BY Credits |
Write a SQL query that answers the following question: What shows for 2nd round when the team 1 was Rc Strasbourg (d1)? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_63 (team_1 VARCHAR) | SELECT 2 AS nd_round FROM table_name_63 WHERE team_1 = "rc strasbourg (d1)" |
Write a SQL query that answers the following question: What is the number of nicknames for the meaning of god knows my journey. | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_11908801_1 (nickname VARCHAR, meaning VARCHAR) | SELECT COUNT(nickname) FROM table_11908801_1 WHERE meaning = "God Knows My Journey" |
Write a SQL query that answers the following question: Which tournament had a winning score of −5 (69-69-73=211)? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_37 (tournament VARCHAR, winning_score VARCHAR) | SELECT tournament FROM table_name_37 WHERE winning_score = −5(69 - 69 - 73 = 211) |
Write a SQL query that answers the following question: What is the size of the biggest crowd for a game where Fitzroy was the away team? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_29 (crowd INTEGER, away_team VARCHAR) | SELECT MAX(crowd) FROM table_name_29 WHERE away_team = "fitzroy" |
Write a SQL query that answers the following question: What is the sum of Total, when Silver is greater than 1, when Rank is 9, and when Bronze is greater than 0? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_14 (total INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR) | SELECT SUM(total) FROM table_name_14 WHERE silver > 1 AND rank = 9 AND bronze > 0 |
Write a SQL query that answers the following question: What is the Venue of the game with a Score of 0–0? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_47 (venue VARCHAR, score VARCHAR) | SELECT venue FROM table_name_47 WHERE score = "0–0" |
Write a SQL query that answers the following question: What competition in 2003 has a score of 2–1? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_81 (competition VARCHAR, year VARCHAR, score VARCHAR) | SELECT competition FROM table_name_81 WHERE year = 2003 AND score = "2–1" |
Write a SQL query that answers the following question: What are the number of storms where fog is lower than 74, and sunshine is 2 668? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_74 (storms__days_year_ VARCHAR, fog__days_year_ VARCHAR, sunshine__hrs_year_ VARCHAR) | SELECT COUNT(storms__days_year_) FROM table_name_74 WHERE fog__days_year_ < 74 AND sunshine__hrs_year_ = "2 668" |
Write a SQL query that answers the following question: Can you tell me the Record that has the Opponent of vs. hamilton tiger cats? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_55 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_55 WHERE opponent = "vs. hamilton tiger cats" |
Write a SQL query that answers the following question: What number has 2002-2003 as the season? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_32 (number VARCHAR, season VARCHAR) | SELECT number FROM table_name_32 WHERE season = "2002-2003" |
Write a SQL query that answers the following question: What is the highest loss before game 14? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_31 (loss INTEGER, game INTEGER) | SELECT MAX(loss) FROM table_name_31 WHERE game < 14 |
Write a SQL query that answers the following question: Name the most gdp per capita latvian | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_21133193_1 (gdp_per_capita__us INTEGER, languages VARCHAR) | SELECT MAX(gdp_per_capita__us) AS $_ FROM table_21133193_1 WHERE languages = "Latvian" |
Write a SQL query that answers the following question: What is the lowest drawn that has games less than 7? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_83 (drawn INTEGER, games INTEGER) | SELECT MIN(drawn) FROM table_name_83 WHERE games < 7 |
Write a SQL query that answers the following question: Which round was played on 10 May? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_name_91 (round VARCHAR, date VARCHAR) | SELECT round FROM table_name_91 WHERE date = "10 may" |
Write a SQL query that answers the following question: What is the greatest round of overall 83? | The relevant table was constructed using the following SQL CREATE TABLE statement: CREATE TABLE table_10361625_1 (round INTEGER, overall VARCHAR) | SELECT MAX(round) FROM table_10361625_1 WHERE overall = 83 |