instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What is the Points Classification Navy Blue Jersey that has Yoann le Boulanger, and Gerolsteiner?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (points_classification_navy_blue_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, team_classification VARCHAR)
SELECT points_classification_navy_blue_jersey FROM table_name_11 WHERE mountains_classification_green_jersey = "yoann le boulanger" AND team_classification = "gerolsteiner"
Write a SQL query that answers the following question: What was the attendance on April 7?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR)
SELECT SUM(attendance) FROM table_name_75 WHERE date = "april 7"
Write a SQL query that answers the following question: Who won the Northumberland Senior Benevolent Bowl, when the Northumberland Minor Cup was won by Whitley Bay 'a'?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (northumberland_senior_benevolent_bowl VARCHAR, northumberland_minor_cup VARCHAR)
SELECT northumberland_senior_benevolent_bowl FROM table_name_25 WHERE northumberland_minor_cup = "whitley bay 'a'"
Write a SQL query that answers the following question: What was the film nomination in the Netherlands?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (film_title_used_in_nomination VARCHAR, country VARCHAR)
SELECT film_title_used_in_nomination FROM table_name_6 WHERE country = "netherlands"
Write a SQL query that answers the following question: Who directed Turks Fruit?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (director VARCHAR, original_title VARCHAR)
SELECT director FROM table_name_6 WHERE original_title = "turks fruit"
Write a SQL query that answers the following question: What director is from Poland?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (director VARCHAR, country VARCHAR)
SELECT director FROM table_name_65 WHERE country = "poland"
Write a SQL query that answers the following question: Who directed the Romanian film?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (director VARCHAR, language VARCHAR)
SELECT director FROM table_name_60 WHERE language = "romanian"
Write a SQL query that answers the following question: What placement gets more than $400?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (place VARCHAR, money___$__ INTEGER)
SELECT place FROM table_name_18 WHERE money___$__ > 400
Write a SQL query that answers the following question: What's the average payout of toney penna with a +2 par?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_85 (money___ INTEGER, to_par VARCHAR, player VARCHAR)
SELECT AVG(money___) AS $__ FROM table_name_85 WHERE to_par = "+2" AND player = "toney penna"
Write a SQL query that answers the following question: What is the attendance number of the game on April 16?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (attendance VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_91 WHERE date = "april 16"
Write a SQL query that answers the following question: What was the average pick of northwestern state college under round 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (pick INTEGER, round VARCHAR, college VARCHAR)
SELECT AVG(pick) FROM table_name_81 WHERE round < 3 AND college = "northwestern state"
Write a SQL query that answers the following question: Rutgers college holds what position?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (position VARCHAR, college VARCHAR)
SELECT position FROM table_name_32 WHERE college = "rutgers"
Write a SQL query that answers the following question: In what round smaller than 10, was the center les studdard picked in?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (pick INTEGER, round VARCHAR, position VARCHAR, name VARCHAR)
SELECT MIN(pick) FROM table_name_97 WHERE position = "center" AND name = "les studdard" AND round < 10
Write a SQL query that answers the following question: Which college had rounds smaller than 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (college VARCHAR, round INTEGER)
SELECT college FROM table_name_80 WHERE round < 2
Write a SQL query that answers the following question: What record was reached with a score of 7 - 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_8 WHERE score = "7 - 2"
Write a SQL query that answers the following question: What is the name of the club with a rank of 5?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (club VARCHAR, rank VARCHAR)
SELECT club FROM table_name_78 WHERE rank = "5"
Write a SQL query that answers the following question: What is the rank that shows 276 games?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (rank VARCHAR, games VARCHAR)
SELECT rank FROM table_name_25 WHERE games = "276"
Write a SQL query that answers the following question: What is the rank that shows 426 games?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (rank VARCHAR, games VARCHAR)
SELECT rank FROM table_name_64 WHERE games = "426"
Write a SQL query that answers the following question: What is the number of games for Roger Merrett?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (games VARCHAR, player VARCHAR)
SELECT games FROM table_name_39 WHERE player = "roger merrett"
Write a SQL query that answers the following question: What Engine had a Finish of 27?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (engine VARCHAR, finish VARCHAR)
SELECT engine FROM table_name_98 WHERE finish = "27"
Write a SQL query that answers the following question: What Engine had a chassis of March 85c?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (engine VARCHAR, chassis VARCHAR)
SELECT engine FROM table_name_72 WHERE chassis = "march 85c"
Write a SQL query that answers the following question: What Engine has a Finish of 21?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (engine VARCHAR, finish VARCHAR)
SELECT engine FROM table_name_68 WHERE finish = "21"
Write a SQL query that answers the following question: On what platform does Mindark publish?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (platform VARCHAR, publisher VARCHAR)
SELECT platform FROM table_name_84 WHERE publisher = "mindark"
Write a SQL query that answers the following question: What year did Avatar Reality release a game?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (year VARCHAR, developer VARCHAR)
SELECT year FROM table_name_14 WHERE developer = "avatar reality"
Write a SQL query that answers the following question: What publisher created Crysis Warhead?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (publisher VARCHAR, title VARCHAR)
SELECT publisher FROM table_name_35 WHERE title = "crysis warhead"
Write a SQL query that answers the following question: For what platform does Mindark publish?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (platform VARCHAR, publisher VARCHAR)
SELECT platform FROM table_name_37 WHERE publisher = "mindark"
Write a SQL query that answers the following question: What publisher does Paleo Entertainment develop for?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (publisher VARCHAR, developer VARCHAR)
SELECT publisher FROM table_name_14 WHERE developer = "paleo entertainment"
Write a SQL query that answers the following question: Who was the developer for Vigilance?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (developer VARCHAR, title VARCHAR)
SELECT developer FROM table_name_71 WHERE title = "vigilance"
Write a SQL query that answers the following question: Which player's home town is Swift Current, AB?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (player VARCHAR, home_town VARCHAR)
SELECT player FROM table_name_17 WHERE home_town = "swift current, ab"
Write a SQL query that answers the following question: Which position does number 23 play?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (position VARCHAR, number VARCHAR)
SELECT position FROM table_name_13 WHERE number = "23"
Write a SQL query that answers the following question: Which number plays the skaters position?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (number VARCHAR, position VARCHAR)
SELECT number FROM table_name_22 WHERE position = "skaters"
Write a SQL query that answers the following question: How much does number 26 weigh?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (weight VARCHAR, number VARCHAR)
SELECT weight FROM table_name_31 WHERE number = "26"
Write a SQL query that answers the following question: Which family has a Name of humpback whale?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (family VARCHAR, name VARCHAR)
SELECT family FROM table_name_40 WHERE name = "humpback whale"
Write a SQL query that answers the following question: Which name has a Red List larger than 0, and a Species/Authority of balaenoptera acutorostrata lacépède, 1804?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (name VARCHAR, red_list VARCHAR, species_authority VARCHAR)
SELECT name FROM table_name_20 WHERE red_list > 0 AND species_authority = "balaenoptera acutorostrata lacépède, 1804"
Write a SQL query that answers the following question: Which Species/Authority has a Name of true's beaked whale?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (species_authority VARCHAR, name VARCHAR)
SELECT species_authority FROM table_name_44 WHERE name = "true's beaked whale"
Write a SQL query that answers the following question: What engine has 2 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (engine_s_ VARCHAR, points VARCHAR)
SELECT engine_s_ FROM table_name_41 WHERE points = "2"
Write a SQL query that answers the following question: What tyres are associated with a year after 1974 and 5 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (tyres VARCHAR, year VARCHAR, points VARCHAR)
SELECT tyres FROM table_name_37 WHERE year > 1974 AND points = "5"
Write a SQL query that answers the following question: What is the engine(s) on the car before 1978 with ensign n177 chassis?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (engine_s_ VARCHAR, chassis VARCHAR, year VARCHAR)
SELECT engine_s_ FROM table_name_71 WHERE chassis = "ensign n177" AND year < 1978
Write a SQL query that answers the following question: What tyres have 1 point and an ensign n177 chassis?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (tyres VARCHAR, points VARCHAR, chassis VARCHAR)
SELECT tyres FROM table_name_15 WHERE points = "1" AND chassis = "ensign n177"
Write a SQL query that answers the following question: Before 1987, what is the Entrant with bmw straight-4 (t/c) as Engine and a great than 2 Pts?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (entrant VARCHAR, pts VARCHAR, year VARCHAR, engine VARCHAR)
SELECT entrant FROM table_name_12 WHERE year < 1987 AND engine = "bmw straight-4 (t/c)" AND pts > 2
Write a SQL query that answers the following question: What did Ku Hyo-Jin rank?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_46 (rank VARCHAR, name VARCHAR)
SELECT COUNT(rank) FROM table_name_46 WHERE name = "ku hyo-jin"
Write a SQL query that answers the following question: What was the rank of the person who swam in Lane 7 with a time of 2:25.86?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (rank INTEGER, time VARCHAR, lane VARCHAR)
SELECT SUM(rank) FROM table_name_55 WHERE time = "2:25.86" AND lane < 7
Write a SQL query that answers the following question: Which Laid down has a Ship of fearless?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (laid_down VARCHAR, ship VARCHAR)
SELECT laid_down FROM table_name_57 WHERE ship = "fearless"
Write a SQL query that answers the following question: Which ship has a Pennant number of h.69?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (ship VARCHAR, pennant_number VARCHAR)
SELECT ship FROM table_name_43 WHERE pennant_number = "h.69"
Write a SQL query that answers the following question: Which Launched has Commissioned 6 june 1935?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (launched VARCHAR, commissioned VARCHAR)
SELECT launched FROM table_name_36 WHERE commissioned = "6 june 1935"
Write a SQL query that answers the following question: What launch has a Ship of fearless?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (launched VARCHAR, ship VARCHAR)
SELECT launched FROM table_name_64 WHERE ship = "fearless"
Write a SQL query that answers the following question: Which commission was launched 28 june 1934, and has a Pennant number of h.78?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (commissioned VARCHAR, launched VARCHAR, pennant_number VARCHAR)
SELECT commissioned FROM table_name_40 WHERE launched = "28 june 1934" AND pennant_number = "h.78"
Write a SQL query that answers the following question: Which year has a Round of 17?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (year VARCHAR, round VARCHAR)
SELECT year FROM table_name_2 WHERE round = "17"
Write a SQL query that answers the following question: Which opponent has a Club of essendon, and a Score of 13.4.82?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (opponent VARCHAR, club VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_73 WHERE club = "essendon" AND score = "13.4.82"
Write a SQL query that answers the following question: Which opponent has a Score of 15.4.94?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_89 WHERE score = "15.4.94"
Write a SQL query that answers the following question: Which opponent has a Round of 12?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (opponent VARCHAR, round VARCHAR)
SELECT opponent FROM table_name_34 WHERE round = "12"
Write a SQL query that answers the following question: Which Quarter has a Round of 17?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (quarter VARCHAR, round VARCHAR)
SELECT quarter FROM table_name_7 WHERE round = "17"
Write a SQL query that answers the following question: When was moray firth built?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (whenbuilt VARCHAR, name VARCHAR)
SELECT whenbuilt FROM table_name_32 WHERE name = "moray firth"
Write a SQL query that answers the following question: Name the withdrawn for charles dickens
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (withdrawn VARCHAR, name VARCHAR)
SELECT withdrawn FROM table_name_93 WHERE name = "charles dickens"
Write a SQL query that answers the following question: Which opponent has a Date of july 27?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_24 WHERE date = "july 27"
Write a SQL query that answers the following question: What Venue held the World Race Walking Cup tourney before 2008?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (venue VARCHAR, year VARCHAR, tournament VARCHAR)
SELECT venue FROM table_name_69 WHERE year < 2008 AND tournament = "world race walking cup"
Write a SQL query that answers the following question: What tournement was held in Helsinki, Finland in 2005?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (event VARCHAR, venue VARCHAR)
SELECT event FROM table_name_8 WHERE venue = "helsinki, finland"
Write a SQL query that answers the following question: What Venue held the Olympic games in 2012?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (venue VARCHAR, tournament VARCHAR, year VARCHAR)
SELECT venue FROM table_name_12 WHERE tournament = "olympic games" AND year = 2012
Write a SQL query that answers the following question: What's the website for the yamagata international documentary film festival?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (website VARCHAR, name VARCHAR)
SELECT website FROM table_name_27 WHERE name = "yamagata international documentary film festival"
Write a SQL query that answers the following question: How did Johnnie Parsons finish when his qualifying time was 135.328?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (rank VARCHAR, qual VARCHAR)
SELECT rank FROM table_name_51 WHERE qual = "135.328"
Write a SQL query that answers the following question: What was Johnnie Parsons rank when he completed over 200 laps?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (rank VARCHAR, laps INTEGER)
SELECT rank FROM table_name_67 WHERE laps > 200
Write a SQL query that answers the following question: What is the value for Podiums when the value for Wins is 2, and when the Season is 2008?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (podiums VARCHAR, wins VARCHAR, season VARCHAR)
SELECT podiums FROM table_name_62 WHERE wins = "2" AND season = 2008
Write a SQL query that answers the following question: What is the value for Position, when the Series is the Macau Grand Prix, and when the Season is before 2007?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (position VARCHAR, series VARCHAR, season VARCHAR)
SELECT position FROM table_name_98 WHERE series = "macau grand prix" AND season < 2007
Write a SQL query that answers the following question: What is the value for Wins when the Position is 7th?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (wins VARCHAR, position VARCHAR)
SELECT wins FROM table_name_67 WHERE position = "7th"
Write a SQL query that answers the following question: What is the Series, when the Season is after 2008, when the value for Podiums is 3, and when the Position is 8th?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (series VARCHAR, position VARCHAR, season VARCHAR, podiums VARCHAR)
SELECT series FROM table_name_28 WHERE season > 2008 AND podiums = "3" AND position = "8th"
Write a SQL query that answers the following question: What is the value for Podiums, when the Season is after 2008, and when the Series is GP2 Asia Series?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (podiums VARCHAR, season VARCHAR, series VARCHAR)
SELECT podiums FROM table_name_65 WHERE season > 2008 AND series = "gp2 asia series"
Write a SQL query that answers the following question: What is the value for Wins, when the Series is GP2 Series, and when the Season is before 2009?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (wins VARCHAR, series VARCHAR, season VARCHAR)
SELECT wins FROM table_name_41 WHERE series = "gp2 series" AND season < 2009
Write a SQL query that answers the following question: What was the loss of the game against the Indians when the record was 15-15?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (loss VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT loss FROM table_name_68 WHERE opponent = "indians" AND record = "15-15"
Write a SQL query that answers the following question: What is the total attendance for games when the record was 23-23?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (attendance VARCHAR, record VARCHAR)
SELECT COUNT(attendance) FROM table_name_61 WHERE record = "23-23"
Write a SQL query that answers the following question: What is the total number of points for the conference division, a league position of 9th, and a lost result less than 13?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (points VARCHAR, lost VARCHAR, division VARCHAR, league_pos VARCHAR)
SELECT COUNT(points) FROM table_name_61 WHERE division = "conference" AND league_pos = "9th" AND lost < 13
Write a SQL query that answers the following question: What is the drawn result with a league position of 15th and a lost result that is more than 17?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (drawn INTEGER, league_pos VARCHAR, lost VARCHAR)
SELECT SUM(drawn) FROM table_name_36 WHERE league_pos = "15th" AND lost > 17
Write a SQL query that answers the following question: Name the competition of 2010 of dnp
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (competition VARCHAR)
SELECT competition FROM table_name_6 WHERE 2010 = "dnp"
Write a SQL query that answers the following question: Name the score for columbus visitor
The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (score VARCHAR, visitor VARCHAR)
SELECT score FROM table_name_73 WHERE visitor = "columbus"
Write a SQL query that answers the following question: Name the least attendance with visitor of edmonton
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (attendance INTEGER, visitor VARCHAR)
SELECT MIN(attendance) FROM table_name_98 WHERE visitor = "edmonton"
Write a SQL query that answers the following question: What is the lowest numbered lane of Sue Rolph with a rank under 5?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (lane INTEGER, name VARCHAR, rank VARCHAR)
SELECT MIN(lane) FROM table_name_17 WHERE name = "sue rolph" AND rank < 5
Write a SQL query that answers the following question: What is the lane number of the swimmer with a time of 55.69?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (lane VARCHAR, time VARCHAR)
SELECT lane FROM table_name_21 WHERE time = 55.69
Write a SQL query that answers the following question: What is the lowest number of league cups with 4 championships?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (league_cup INTEGER, championship VARCHAR)
SELECT MIN(league_cup) FROM table_name_9 WHERE championship = 4
Write a SQL query that answers the following question: What is the highest value for FA cups, that has a total of 0 4, with less than 4 championships?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (fa_cup INTEGER, total VARCHAR, championship VARCHAR)
SELECT MAX(fa_cup) FROM table_name_43 WHERE total = "0 4" AND championship < 4
Write a SQL query that answers the following question: How many FA cups were there without any league cups, but a total of 0 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (fa_cup INTEGER, total VARCHAR, league_cup VARCHAR)
SELECT MIN(fa_cup) FROM table_name_3 WHERE total = "0 2" AND league_cup < 0
Write a SQL query that answers the following question: Who is Pick #41?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (player VARCHAR, pick__number VARCHAR)
SELECT player FROM table_name_99 WHERE pick__number = "41"
Write a SQL query that answers the following question: Which player was Pick #40?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (player VARCHAR, pick__number VARCHAR)
SELECT player FROM table_name_98 WHERE pick__number = "40"
Write a SQL query that answers the following question: Which team picked Dave Bonter?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (nhl_team VARCHAR, player VARCHAR)
SELECT nhl_team FROM table_name_23 WHERE player = "dave bonter"
Write a SQL query that answers the following question: Which team picked the player from the Toronto Marlboros (OHA) as Pick #32?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (nhl_team VARCHAR, college_junior_club_team VARCHAR, pick__number VARCHAR)
SELECT nhl_team FROM table_name_81 WHERE college_junior_club_team = "toronto marlboros (oha)" AND pick__number = "32"
Write a SQL query that answers the following question: Name the most games for eredivisie when jurrie koolhof is manager when goals are less than 10
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (games INTEGER, goals VARCHAR, league VARCHAR, manager VARCHAR)
SELECT MAX(games) FROM table_name_25 WHERE league = "eredivisie" AND manager = "jurrie koolhof" AND goals < 10
Write a SQL query that answers the following question: Name the least rank when games are more than 34 and the season is 2009-10
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (rank INTEGER, games VARCHAR, season VARCHAR)
SELECT MIN(rank) FROM table_name_98 WHERE games > 34 AND season = "2009-10"
Write a SQL query that answers the following question: Name the least point for mv agusta and rank of 13th for wins less than 0
The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (points INTEGER, wins VARCHAR, team VARCHAR, rank VARCHAR)
SELECT MIN(points) FROM table_name_52 WHERE team = "mv agusta" AND rank = "13th" AND wins < 0
Write a SQL query that answers the following question: Name the rank for wins of 0 and points of 2
The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (rank VARCHAR, wins VARCHAR, points VARCHAR)
SELECT rank FROM table_name_10 WHERE wins = 0 AND points = 2
Write a SQL query that answers the following question: Name the total number of points with year less than 1955 and rank of 5th with wins less than 0
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (points VARCHAR, wins VARCHAR, year VARCHAR, rank VARCHAR)
SELECT COUNT(points) FROM table_name_31 WHERE year < 1955 AND rank = "5th" AND wins < 0
Write a SQL query that answers the following question: What is the total decile in the area of Normanby with a roller smaller than 157?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (decile INTEGER, area VARCHAR, roll VARCHAR)
SELECT SUM(decile) FROM table_name_99 WHERE area = "normanby" AND roll < 157
Write a SQL query that answers the following question: What Authority has a decile greater than 5, with a roll of 170?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (authority VARCHAR, decile VARCHAR, roll VARCHAR)
SELECT authority FROM table_name_62 WHERE decile > 5 AND roll = 170
Write a SQL query that answers the following question: What is the average goals against average for those playing more than 78 games?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (goals_against_average INTEGER, games_played INTEGER)
SELECT AVG(goals_against_average) FROM table_name_33 WHERE games_played > 78
Write a SQL query that answers the following question: Who played over 46 games and allowed less than 195 goals?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (player VARCHAR, games_played VARCHAR, goals_allowed VARCHAR)
SELECT player FROM table_name_50 WHERE games_played > 46 AND goals_allowed < 195
Write a SQL query that answers the following question: Who played 44 games who averaged over 2.07 goals against?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (player VARCHAR, goals_against_average VARCHAR, games_played VARCHAR)
SELECT player FROM table_name_88 WHERE goals_against_average > 2.07 AND games_played = 44
Write a SQL query that answers the following question: Name how ashtagrama lyers say it for engal veetil, engal agathil
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (how_ashtagrama_iyers_say_it VARCHAR, pure_tamil VARCHAR)
SELECT how_ashtagrama_iyers_say_it FROM table_name_6 WHERE pure_tamil = "engal veetil, engal agathil"
Write a SQL query that answers the following question: Name the english meaning for engey poringo
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (english_meaning VARCHAR, how_other_tamils_say_it VARCHAR)
SELECT english_meaning FROM table_name_8 WHERE how_other_tamils_say_it = "engey poringo"
Write a SQL query that answers the following question: Name how other lyers say enga ullale
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (how_other_iyers_say_it VARCHAR, how_ashtagrama_iyers_say_it VARCHAR)
SELECT how_other_iyers_say_it FROM table_name_22 WHERE how_ashtagrama_iyers_say_it = "enga ullale"
Write a SQL query that answers the following question: Name the pure tamil for enga athilae
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (pure_tamil VARCHAR, how_other_iyers_say_it VARCHAR)
SELECT pure_tamil FROM table_name_97 WHERE how_other_iyers_say_it = "enga athilae"
Write a SQL query that answers the following question: What company built the ship named excellent in 1998?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (company VARCHAR, built VARCHAR, ship VARCHAR)
SELECT company FROM table_name_59 WHERE built = 1998 AND ship = "excellent"
Write a SQL query that answers the following question: What's the total built by the United Kingdom and holds 1,300 passengers?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (built VARCHAR, registry VARCHAR, passengers VARCHAR)
SELECT COUNT(built) FROM table_name_68 WHERE registry = "united kingdom" AND passengers = 1 OFFSET 300
Write a SQL query that answers the following question: Name the visiting team for stadium of ralph wilson stadium
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (visiting_team VARCHAR, stadium VARCHAR)
SELECT visiting_team FROM table_name_67 WHERE stadium = "ralph wilson stadium"