instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: How many points occurred with a difference of 2 for position less than 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (points VARCHAR, difference VARCHAR, position VARCHAR)
SELECT COUNT(points) FROM table_name_90 WHERE difference = "2" AND position < 4
Write a SQL query that answers the following question: What is the highest number of points for a position less than 3 and less than 1 loss?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (points INTEGER, position VARCHAR, lost VARCHAR)
SELECT MAX(points) FROM table_name_19 WHERE position < 3 AND lost < 1
Write a SQL query that answers the following question: When Estudiantes was team #2, what was their agg. value?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (agg VARCHAR, team__number2 VARCHAR)
SELECT agg FROM table_name_28 WHERE team__number2 = "estudiantes"
Write a SQL query that answers the following question: Who played against TSV bayer 04 leverkusen when they were team #1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (team__number1 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_9 WHERE team__number1 = "tsv bayer 04 leverkusen"
Write a SQL query that answers the following question: Who played against Hapoel tel aviv when they were team #1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (team__number2 VARCHAR, team__number1 VARCHAR)
SELECT team__number2 FROM table_name_89 WHERE team__number1 = "hapoel tel aviv"
Write a SQL query that answers the following question: What is the 2013 BAFA adult flag division in Aylesbury?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (location VARCHAR)
SELECT 2013 AS _bafa_adult_flag_division FROM table_name_95 WHERE location = "aylesbury"
Write a SQL query that answers the following question: Records from Kontor Records from the catalog of Kontor446 was released in what format?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (format VARCHAR, label VARCHAR, catalog VARCHAR)
SELECT format FROM table_name_63 WHERE label = "kontor records" AND catalog = "kontor446"
Write a SQL query that answers the following question: What date was the release that was Wrongun as the label?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (date VARCHAR, label VARCHAR)
SELECT date FROM table_name_66 WHERE label = "wrongun"
Write a SQL query that answers the following question: Catalog Nebdj068 was released when?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (date VARCHAR, catalog VARCHAR)
SELECT date FROM table_name_26 WHERE catalog = "nebdj068"
Write a SQL query that answers the following question: In what format was the release from the Nebt068 catalog on April 11, 2005 in?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (format VARCHAR, date VARCHAR, catalog VARCHAR)
SELECT format FROM table_name_62 WHERE date = "april 11, 2005" AND catalog = "nebt068"
Write a SQL query that answers the following question: What region has the date of 2005 and Playground Music Scandinavia as a label?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (region VARCHAR, date VARCHAR, label VARCHAR)
SELECT region FROM table_name_16 WHERE date = "2005" AND label = "playground music scandinavia"
Write a SQL query that answers the following question: What is the Result with a Venue that is filbert street?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (result VARCHAR, venue VARCHAR)
SELECT result FROM table_name_16 WHERE venue = "filbert street"
Write a SQL query that answers the following question: When did the Texans play BYE?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_8 WHERE opponent = "bye"
Write a SQL query that answers the following question: Who did the Texans play when there were 70,724 people in attendance?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_11 WHERE attendance = "70,724"
Write a SQL query that answers the following question: Who has the status of jr synonym of protosialis casca?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (novelty VARCHAR, status VARCHAR)
SELECT novelty FROM table_name_75 WHERE status = "jr synonym of protosialis casca"
Write a SQL query that answers the following question: Which writer is named mongolbittacus?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (authors VARCHAR, name VARCHAR)
SELECT authors FROM table_name_62 WHERE name = "mongolbittacus"
Write a SQL query that answers the following question: What is the score of the game that had 359 people in attendance?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (score VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_59 WHERE attendance = "359"
Write a SQL query that answers the following question: What is the home team of the game that ended with a score of 0-1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (home_team VARCHAR, score VARCHAR)
SELECT home_team FROM table_name_95 WHERE score = "0-1"
Write a SQL query that answers the following question: How many people attended Match No. 31?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (attendance VARCHAR, match_no VARCHAR)
SELECT attendance FROM table_name_51 WHERE match_no = "31"
Write a SQL query that answers the following question: Who is the Home Team for Match No. 23?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (home_team VARCHAR, match_no VARCHAR)
SELECT home_team FROM table_name_42 WHERE match_no = "23"
Write a SQL query that answers the following question: What is the score of the game with 1,125 people in attendance?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (score VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_37 WHERE attendance = "1,125"
Write a SQL query that answers the following question: What is the Country with a Launched that is april 3, 1990?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (country VARCHAR, launched VARCHAR)
SELECT country FROM table_name_70 WHERE launched = "april 3, 1990"
Write a SQL query that answers the following question: What is the Launched from a Country that is spain?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (launched VARCHAR, country VARCHAR)
SELECT launched FROM table_name_45 WHERE country = "spain"
Write a SQL query that answers the following question: What is the lowest order with a Minister that is joe hockey?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (order INTEGER, minister VARCHAR)
SELECT MIN(order) FROM table_name_66 WHERE minister = "joe hockey"
Write a SQL query that answers the following question: Which Years in Orlando has a Nationality of united states, and a Player of doug overton?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (years_in_orlando VARCHAR, nationality VARCHAR, player VARCHAR)
SELECT years_in_orlando FROM table_name_43 WHERE nationality = "united states" AND player = "doug overton"
Write a SQL query that answers the following question: Which Years in Orlando has a Nationality of united states, a Position of center, and a Player of jawann oldham?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (years_in_orlando VARCHAR, player VARCHAR, nationality VARCHAR, position VARCHAR)
SELECT years_in_orlando FROM table_name_10 WHERE nationality = "united states" AND position = "center" AND player = "jawann oldham"
Write a SQL query that answers the following question: Which Years in Orlando has a Player of bo outlaw?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (years_in_orlando VARCHAR, player VARCHAR)
SELECT years_in_orlando FROM table_name_54 WHERE player = "bo outlaw"
Write a SQL query that answers the following question: Which Years in Orlando has a School/Club Team of seattle?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (years_in_orlando VARCHAR, school_club_team VARCHAR)
SELECT years_in_orlando FROM table_name_16 WHERE school_club_team = "seattle"
Write a SQL query that answers the following question: Which Nationality has a Position of center, and a Years in Orlando of 2010–2012?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (nationality VARCHAR, position VARCHAR, years_in_orlando VARCHAR)
SELECT nationality FROM table_name_63 WHERE position = "center" AND years_in_orlando = "2010–2012"
Write a SQL query that answers the following question: Which Nationality has a School/Club Team of seattle?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (nationality VARCHAR, school_club_team VARCHAR)
SELECT nationality FROM table_name_40 WHERE school_club_team = "seattle"
Write a SQL query that answers the following question: When did they play at Candlestick Park?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (date VARCHAR, game_site VARCHAR)
SELECT date FROM table_name_25 WHERE game_site = "candlestick park"
Write a SQL query that answers the following question: What is the average number of top-10s for events under 57 and 0 top-5s?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (top_10 INTEGER, events VARCHAR, top_5 VARCHAR)
SELECT AVG(top_10) FROM table_name_6 WHERE events < 57 AND top_5 < 0
Write a SQL query that answers the following question: What is the average number of top-10s for events with more than 12 cuts made and 0 wins?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR)
SELECT AVG(top_10) FROM table_name_56 WHERE cuts_made > 12 AND wins < 0
Write a SQL query that answers the following question: What is the average number of top-25s for events with less than 2 top-10s?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (top_25 INTEGER, top_10 INTEGER)
SELECT AVG(top_25) FROM table_name_93 WHERE top_10 < 2
Write a SQL query that answers the following question: Which Works number has a Builder of canadian engine & machinery company, and a Number smaller than 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (works_number VARCHAR, builder VARCHAR, number VARCHAR)
SELECT works_number FROM table_name_20 WHERE builder = "canadian engine & machinery company" AND number < 3
Write a SQL query that answers the following question: Which Works number has a Builder of avonside engine company, and a Type of 4-6-0, and a Number smaller than 12, and a Date of december 1871?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (works_number VARCHAR, date VARCHAR, number VARCHAR, builder VARCHAR, type VARCHAR)
SELECT works_number FROM table_name_76 WHERE builder = "avonside engine company" AND type = "4-6-0" AND number < 12 AND date = "december 1871"
Write a SQL query that answers the following question: Which Type has a Builder of avonside engine company, and a Number of 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (type VARCHAR, builder VARCHAR, number VARCHAR)
SELECT type FROM table_name_55 WHERE builder = "avonside engine company" AND number = 9
Write a SQL query that answers the following question: Which Date has a Type of 4-6-0, and a Number larger than 11?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (date VARCHAR, type VARCHAR, number VARCHAR)
SELECT date FROM table_name_22 WHERE type = "4-6-0" AND number > 11
Write a SQL query that answers the following question: Which Builder has a Date of early 1871?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (builder VARCHAR, date VARCHAR)
SELECT builder FROM table_name_39 WHERE date = "early 1871"
Write a SQL query that answers the following question: What ist he Home with a Score that is 42-64?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (home VARCHAR, score VARCHAR)
SELECT home FROM table_name_69 WHERE score = "42-64"
Write a SQL query that answers the following question: What is the Home with a Time that is 12:00?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (home VARCHAR, time VARCHAR)
SELECT home FROM table_name_34 WHERE time = "12:00"
Write a SQL query that answers the following question: What is the Ground with a Score that is 49-80?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (ground VARCHAR, score VARCHAR)
SELECT ground FROM table_name_61 WHERE score = "49-80"
Write a SQL query that answers the following question: What's the smallest March when the record is 22-12-6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (march INTEGER, record VARCHAR)
SELECT MIN(march) FROM table_name_7 WHERE record = "22-12-6"
Write a SQL query that answers the following question: Which record's march was 26?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (record VARCHAR, march VARCHAR)
SELECT record FROM table_name_77 WHERE march = 26
Write a SQL query that answers the following question: What is the Lost with a Losing Bonus that is 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (lost VARCHAR, losing_bonus VARCHAR)
SELECT lost FROM table_name_30 WHERE losing_bonus = "4"
Write a SQL query that answers the following question: What is the Points with a Tries For that is 21?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (points VARCHAR, tries_for VARCHAR)
SELECT points FROM table_name_13 WHERE tries_for = "21"
Write a SQL query that answers the following question: What is the Lost with a Try Bonus that is try bonus?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (lost VARCHAR, try_bonus VARCHAR)
SELECT lost FROM table_name_77 WHERE try_bonus = "try bonus"
Write a SQL query that answers the following question: What is the highest Total for the rank 12, and gold less than 0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (total INTEGER, rank VARCHAR, gold VARCHAR)
SELECT MAX(total) FROM table_name_53 WHERE rank = "12" AND gold < 0
Write a SQL query that answers the following question: What is the total number of Total when the Silver is less than 2, and a Bronze is less than 0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (total VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT COUNT(total) FROM table_name_70 WHERE silver < 2 AND bronze < 0
Write a SQL query that answers the following question: What is the nickname of the team that has the colors blue and gold?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (nickname VARCHAR, colors VARCHAR)
SELECT nickname FROM table_name_42 WHERE colors = "blue and gold"
Write a SQL query that answers the following question: What is the nickname of the team that has the colors black and gold?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (nickname VARCHAR, colors VARCHAR)
SELECT nickname FROM table_name_27 WHERE colors = "black and gold"
Write a SQL query that answers the following question: What is the nickname of the team in division 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (nickname VARCHAR, division VARCHAR)
SELECT nickname FROM table_name_34 WHERE division = "division 2"
Write a SQL query that answers the following question: What is the class of the Middletown High School team that is in the DSHA league?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (class VARCHAR, league VARCHAR, school VARCHAR)
SELECT class FROM table_name_98 WHERE league = "dsha" AND school = "middletown high school"
Write a SQL query that answers the following question: What school is the team from that has the colors blue and gold?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (school VARCHAR, colors VARCHAR)
SELECT school FROM table_name_29 WHERE colors = "blue and gold"
Write a SQL query that answers the following question: What are the colors for the division 2 team with the nickname, the seahawks?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (colors VARCHAR, division VARCHAR, nickname VARCHAR)
SELECT colors FROM table_name_74 WHERE division = "division 2" AND nickname = "seahawks"
Write a SQL query that answers the following question: Who's the Centerfold model with a Pictorials of adrianne curry, girls of tuscany?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (centerfold_model VARCHAR, pictorials VARCHAR)
SELECT centerfold_model FROM table_name_47 WHERE pictorials = "adrianne curry, girls of tuscany"
Write a SQL query that answers the following question: Which Interview subject has a Pictorials of vida guerra?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (interview_subject VARCHAR, pictorials VARCHAR)
SELECT interview_subject FROM table_name_30 WHERE pictorials = "vida guerra"
Write a SQL query that answers the following question: Which Date has a Pictorials of mercedes mcnab, girls of hawaiian tropic?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (date VARCHAR, pictorials VARCHAR)
SELECT date FROM table_name_67 WHERE pictorials = "mercedes mcnab, girls of hawaiian tropic"
Write a SQL query that answers the following question: Which Interview subject has a Centerfold model of athena lundberg?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (interview_subject VARCHAR, centerfold_model VARCHAR)
SELECT interview_subject FROM table_name_60 WHERE centerfold_model = "athena lundberg"
Write a SQL query that answers the following question: What is the total number of votes from the Labour Party?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (votes VARCHAR, party VARCHAR)
SELECT COUNT(votes) FROM table_name_23 WHERE party = "labour"
Write a SQL query that answers the following question: Which party has less than 11,484 votes?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (party VARCHAR, votes INTEGER)
SELECT party FROM table_name_81 WHERE votes < 11 OFFSET 484
Write a SQL query that answers the following question: How many numbers had Brandon Dean as a name?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (number INTEGER, name VARCHAR)
SELECT SUM(number) FROM table_name_24 WHERE name = "brandon dean"
Write a SQL query that answers the following question: What is the singular for the Meaning of night?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (singular VARCHAR, meaning VARCHAR)
SELECT singular FROM table_name_28 WHERE meaning = "night"
Write a SQL query that answers the following question: What is the plural for the Meaning of night?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_85 (plural VARCHAR, meaning VARCHAR)
SELECT plural FROM table_name_85 WHERE meaning = "night"
Write a SQL query that answers the following question: What is the plural if the singular is nyaqot?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (plural VARCHAR, singular VARCHAR)
SELECT plural FROM table_name_47 WHERE singular = "nyaqot"
Write a SQL query that answers the following question: What is the plural if the meaning is python and the plural gender is n?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (plural VARCHAR, plural_gender VARCHAR, meaning VARCHAR)
SELECT plural FROM table_name_92 WHERE plural_gender = "n" AND meaning = "python"
Write a SQL query that answers the following question: What is the plural if the singular is awu?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (plural VARCHAR, singular VARCHAR)
SELECT plural FROM table_name_60 WHERE singular = "awu"
Write a SQL query that answers the following question: What is the singular if the plural is xweer(a)du?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (singular VARCHAR, plural VARCHAR)
SELECT singular FROM table_name_19 WHERE plural = "xweer(a)du"
Write a SQL query that answers the following question: What is the Total againsts for the Sant'Anna team with a position number greater than 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (against VARCHAR, team VARCHAR, position VARCHAR)
SELECT COUNT(against) FROM table_name_94 WHERE team = "sant'anna" AND position > 10
Write a SQL query that answers the following question: What is the total number of games played with 3 losses, 1 or more drawns and 10 or fewer points?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (played INTEGER, points VARCHAR, lost VARCHAR, drawn VARCHAR)
SELECT SUM(played) FROM table_name_68 WHERE lost = 3 AND drawn > 1 AND points < 10
Write a SQL query that answers the following question: What is the average lost of games played of more than 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (lost INTEGER, played INTEGER)
SELECT AVG(lost) FROM table_name_16 WHERE played > 9
Write a SQL query that answers the following question: What is the lowest number of bronze medals for Great Britain with more than 2 medals total?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (bronze INTEGER, nation VARCHAR, total VARCHAR)
SELECT MIN(bronze) FROM table_name_71 WHERE nation = "great britain" AND total > 2
Write a SQL query that answers the following question: What is the lowest wins the club with a position of 4 and less than 4 losses has?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (wins INTEGER, position VARCHAR, loses VARCHAR)
SELECT MIN(wins) FROM table_name_67 WHERE position = 4 AND loses < 4
Write a SQL query that answers the following question: What is the sum of the points of club nevėžis-2 kėdainiai, which has more than 35 goals conceded?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (points INTEGER, club VARCHAR, goals_conceded VARCHAR)
SELECT SUM(points) FROM table_name_39 WHERE club = "nevėžis-2 kėdainiai" AND goals_conceded > 35
Write a SQL query that answers the following question: What is the total number of games played of the team with 4 wins and a position less than 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (games_played VARCHAR, wins VARCHAR, position VARCHAR)
SELECT COUNT(games_played) FROM table_name_6 WHERE wins = 4 AND position < 9
Write a SQL query that answers the following question: What is the highest number of wins of the team with a position less than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (wins INTEGER, position INTEGER)
SELECT MAX(wins) FROM table_name_8 WHERE position < 1
Write a SQL query that answers the following question: What is the total losses against 1412, and 10 wins, but draws less than 0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (losses INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR)
SELECT SUM(losses) FROM table_name_56 WHERE against > 1412 AND wins = 10 AND draws < 0
Write a SQL query that answers the following question: What is the highest draw against 2161?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (draws INTEGER, against INTEGER)
SELECT MAX(draws) FROM table_name_98 WHERE against > 2161
Write a SQL query that answers the following question: What is the total number of losses against 1412, and Byes less than 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (losses VARCHAR, against VARCHAR, byes VARCHAR)
SELECT COUNT(losses) FROM table_name_4 WHERE against = 1412 AND byes < 2
Write a SQL query that answers the following question: What is the lowest wins with less than 2 Byes?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (wins INTEGER, byes INTEGER)
SELECT MIN(wins) FROM table_name_15 WHERE byes < 2
Write a SQL query that answers the following question: What is the highest score with 0 wins and more than 2 Byes?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (against INTEGER, wins VARCHAR, byes VARCHAR)
SELECT MAX(against) FROM table_name_4 WHERE wins = 0 AND byes > 2
Write a SQL query that answers the following question: What is the sum of wins against the smaller score 1148?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (wins INTEGER, against INTEGER)
SELECT SUM(wins) FROM table_name_80 WHERE against < 1148
Write a SQL query that answers the following question: Who had a rank larger than 7, less than 305 goals, and 418 matches?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (name VARCHAR, matches VARCHAR, rank VARCHAR, goals VARCHAR)
SELECT name FROM table_name_36 WHERE rank > 7 AND goals < 305 AND matches = "418"
Write a SQL query that answers the following question: How many goals ranked 6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (goals VARCHAR, rank VARCHAR)
SELECT COUNT(goals) FROM table_name_36 WHERE rank = 6
Write a SQL query that answers the following question: How many matches had 360 goals?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (matches VARCHAR, goals VARCHAR)
SELECT matches FROM table_name_31 WHERE goals = 360
Write a SQL query that answers the following question: What is the Nominee from the Category that is best costume design?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (nominee VARCHAR, category VARCHAR)
SELECT nominee FROM table_name_64 WHERE category = "best costume design"
Write a SQL query that answers the following question: Which Total has a Bronze larger than 12, and a Silver larger than 772, and a Country of thailand?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (total INTEGER, country VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT SUM(total) FROM table_name_70 WHERE bronze > 12 AND silver > 772 AND country = "thailand"
Write a SQL query that answers the following question: Which Gold has a Total of 2998, and a Bronze smaller than 1191?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (gold INTEGER, total VARCHAR, bronze VARCHAR)
SELECT AVG(gold) FROM table_name_68 WHERE total = 2998 AND bronze < 1191
Write a SQL query that answers the following question: Which Bronze has a Country of malaysia, and a Total smaller than 2644?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (bronze INTEGER, country VARCHAR, total VARCHAR)
SELECT SUM(bronze) FROM table_name_75 WHERE country = "malaysia" AND total < 2644
Write a SQL query that answers the following question: Which Silver has a Bronze smaller than 618, and a Country of laos?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (silver VARCHAR, bronze VARCHAR, country VARCHAR)
SELECT silver FROM table_name_65 WHERE bronze < 618 AND country = "laos"
Write a SQL query that answers the following question: What is the Score with a Team that is @ portland?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_1 (score VARCHAR, team VARCHAR)
SELECT score FROM table_name_1 WHERE team = "@ portland"
Write a SQL query that answers the following question: What is the High points with a Date that is january 20?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_name_35 WHERE date = "january 20"
Write a SQL query that answers the following question: Who was the home team that the Clippers played?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (home VARCHAR, visitor VARCHAR)
SELECT home FROM table_name_64 WHERE visitor = "clippers"
Write a SQL query that answers the following question: What's the record of the game where Lebron James (16) was the leading scorer?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (record VARCHAR, leading_scorer VARCHAR)
SELECT record FROM table_name_69 WHERE leading_scorer = "lebron james (16)"
Write a SQL query that answers the following question: When the venue was A and the date was 2 january 2008, what was the average attendance?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (attendance INTEGER, venue VARCHAR, date VARCHAR)
SELECT AVG(attendance) FROM table_name_61 WHERE venue = "a" AND date = "2 january 2008"
Write a SQL query that answers the following question: On 10 November 2007, what was the venue?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_60 WHERE date = "10 november 2007"
Write a SQL query that answers the following question: On what date was the opponent Ayr United, the result 1–0, and the attendance more than 668?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (date VARCHAR, opponent VARCHAR, result VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_17 WHERE result = "1–0" AND attendance > 668 AND opponent = "ayr united"
Write a SQL query that answers the following question: When the opponent was Brechin City and the attendance was 656, what was the Result?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (result VARCHAR, opponent VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_47 WHERE opponent = "brechin city" AND attendance = 656
Write a SQL query that answers the following question: On 1 september 2007, at the Venue A, what was the average attendance?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (attendance INTEGER, venue VARCHAR, date VARCHAR)
SELECT AVG(attendance) FROM table_name_45 WHERE venue = "a" AND date = "1 september 2007"
Write a SQL query that answers the following question: Which Score has a Country of england, and a Year larger than 1971?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (score VARCHAR, country VARCHAR, year VARCHAR)
SELECT score FROM table_name_77 WHERE country = "england" AND year > 1971