answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT venue FROM table_name_2 WHERE competition = "friendly match" AND date = "2 june 1992" | CREATE TABLE table_name_2 (venue VARCHAR, competition VARCHAR, date VARCHAR) | In what stadium was the friendly match on 2 June 1992 played in? |
SELECT score FROM table_name_25 WHERE competition = "1998 fifa world cup qualification" | CREATE TABLE table_name_25 (score VARCHAR, competition VARCHAR) | What was the score of the 1998 FIFA World Cup qualification competition? |
SELECT date FROM table_name_72 WHERE competition = "welsh rugby union challenge trophy" AND result = "34-34" | CREATE TABLE table_name_72 (date VARCHAR, competition VARCHAR, result VARCHAR) | Name the Date has a Competition of welsh rugby union challenge trophy and a Result of 34-34? Question 1 |
SELECT result FROM table_name_56 WHERE nationality___opponent = "new zealand" | CREATE TABLE table_name_56 (result VARCHAR, nationality___opponent VARCHAR) | Name the Result of new zealand Nationality / Opponent? |
SELECT nationality___opponent FROM table_name_25 WHERE date = "10 january 1998" | CREATE TABLE table_name_25 (nationality___opponent VARCHAR, date VARCHAR) | Name Nationality / Opponent on 10 january 1998? |
SELECT ground FROM table_name_25 WHERE date = "18 january 1998" | CREATE TABLE table_name_25 (ground VARCHAR, date VARCHAR) | Name The Ground on 18 january 1998? |
SELECT nationality___opponent FROM table_name_63 WHERE competition = "welsh rugby union challenge trophy" AND result = "38-29" | CREATE TABLE table_name_63 (nationality___opponent VARCHAR, competition VARCHAR, result VARCHAR) | Name the Nationality / Opponent of the Competition of welsh rugby union challenge trophy and a Result of 38-29? |
SELECT competition FROM table_name_64 WHERE nationality___opponent = "rosario" | CREATE TABLE table_name_64 (competition VARCHAR, nationality___opponent VARCHAR) | Name the Nationality / Opponent of rosario? |
SELECT team_1 FROM table_name_4 WHERE team_2 = "universidad nacional" | CREATE TABLE table_name_4 (team_1 VARCHAR, team_2 VARCHAR) | What team 1 has a team 2 of universidad nacional? |
SELECT team_2 FROM table_name_82 WHERE team_1 = "harbour view" | CREATE TABLE table_name_82 (team_2 VARCHAR, team_1 VARCHAR) | What team 2 has a team 1 of harbour view? |
SELECT 2 AS nd_leg FROM table_name_62 WHERE team_2 = "san francisco" | CREATE TABLE table_name_62 (team_2 VARCHAR) | What's the 2nd leg for team 2 san francisco? |
SELECT 1 AS st_leg FROM table_name_50 WHERE team_1 = "alajuelense" | CREATE TABLE table_name_50 (team_1 VARCHAR) | What's the 1st leg of team 1 alajuelense? |
SELECT format FROM table_name_51 WHERE catalog = "660-51-015" | CREATE TABLE table_name_51 (format VARCHAR, catalog VARCHAR) | What was the format for catalog 660-51-015? |
SELECT region FROM table_name_77 WHERE year = "may 1974" | CREATE TABLE table_name_77 (region VARCHAR, year VARCHAR) | Which region had the year May 1974? |
SELECT region FROM table_name_17 WHERE year = "march 10, 1998" | CREATE TABLE table_name_17 (region VARCHAR, year VARCHAR) | Which region had a year March 10, 1998? |
SELECT first_party FROM table_name_82 WHERE year < 1857 AND first_member = "lord john hay" | CREATE TABLE table_name_82 (first_party VARCHAR, year VARCHAR, first_member VARCHAR) | What is the first party for Lord John Hay earlier than 1857? |
SELECT second_member FROM table_name_10 WHERE year > 1790 AND first_member = "john williams" | CREATE TABLE table_name_10 (second_member VARCHAR, year VARCHAR, first_member VARCHAR) | Who is the second member more recently than 1790 when John Williams is the first member? |
SELECT second_member FROM table_name_15 WHERE first_party = "tory" AND year < 1804 AND first_member = "henry isherwood" | CREATE TABLE table_name_15 (second_member VARCHAR, first_member VARCHAR, first_party VARCHAR, year VARCHAR) | Who is the second member ewarlier than 1804 when Tory Henry Isherwood is the first member? |
SELECT second_member FROM table_name_14 WHERE first_member = "rt hon. edward stanley" | CREATE TABLE table_name_14 (second_member VARCHAR, first_member VARCHAR) | Who is the second member when RT Hon. Edward Stanley is the first member? |
SELECT second_party FROM table_name_88 WHERE first_party = "tory" AND year = 1820 | CREATE TABLE table_name_88 (second_party VARCHAR, first_party VARCHAR, year VARCHAR) | What is the second party where the first party is Tory and the year is 1820? |
SELECT player FROM table_name_83 WHERE year_s__won = "1993" | CREATE TABLE table_name_83 (player VARCHAR, year_s__won VARCHAR) | Who is the player who won in 1993? |
SELECT year_s__won FROM table_name_68 WHERE finish = "t71" | CREATE TABLE table_name_68 (year_s__won VARCHAR, finish VARCHAR) | What years did the player with a t71 finish win? |
SELECT year_s__won FROM table_name_84 WHERE player = "payne stewart" | CREATE TABLE table_name_84 (year_s__won VARCHAR, player VARCHAR) | What year did player payne stewart win? |
SELECT year_s__won FROM table_name_84 WHERE finish = "t3" | CREATE TABLE table_name_84 (year_s__won VARCHAR, finish VARCHAR) | What year did the player with a t3 finish win? |
SELECT MIN(total) FROM table_name_25 WHERE finish = "t41" | CREATE TABLE table_name_25 (total INTEGER, finish VARCHAR) | What is the lowest total of the player with a t41 finish? |
SELECT battle FROM table_name_24 WHERE bulgarian_commander = "gavril radomir" | CREATE TABLE table_name_24 (battle VARCHAR, bulgarian_commander VARCHAR) | In what Battle was Bulgarian Commander of Gavril Radomir? |
SELECT date FROM table_name_55 WHERE result = "bulgarian victory" AND battle = "battle of arcadiopolis" | CREATE TABLE table_name_55 (date VARCHAR, result VARCHAR, battle VARCHAR) | What is the Date of the Bulgarian Victory at the Battle of Arcadiopolis? |
SELECT bulgarian_commander FROM table_name_41 WHERE battle = "battle of thessalonica" AND date = "autumn 1040" | CREATE TABLE table_name_41 (bulgarian_commander VARCHAR, battle VARCHAR, date VARCHAR) | What is the Bulgarian Commander in Autumn 1040 at the Battle of Thessalonica? |
SELECT byzantine_commander FROM table_name_44 WHERE result = "bulgarian victory" AND battle = "siege of lovech" | CREATE TABLE table_name_44 (byzantine_commander VARCHAR, result VARCHAR, battle VARCHAR) | What is the Byzantine Commander with a Bulgarian Victory at the Siege of Lovech? |
SELECT result FROM table_name_85 WHERE battle = "battle of marcellae" AND date = "756" | CREATE TABLE table_name_85 (result VARCHAR, battle VARCHAR, date VARCHAR) | What is the Result of the Battle of Marcellae in 756? |
SELECT date FROM table_name_15 WHERE result = "bulgarian victory" AND bulgarian_commander = "gavril radomir" | CREATE TABLE table_name_15 (date VARCHAR, result VARCHAR, bulgarian_commander VARCHAR) | What is the date of Gavril Radomir's Bulgarian Victory? |
SELECT wind FROM table_name_18 WHERE rank < 6 AND location = "new york city" | CREATE TABLE table_name_18 (wind VARCHAR, rank VARCHAR, location VARCHAR) | What was the wind at New York City when the rank was smaller than 6? |
SELECT MAX(rank) FROM table_name_94 WHERE location = "kingston" | CREATE TABLE table_name_94 (rank INTEGER, location VARCHAR) | What was the highest rink for Kingston? |
SELECT AVG(first_elected) FROM table_name_75 WHERE district = "south carolina 2" | CREATE TABLE table_name_75 (first_elected INTEGER, district VARCHAR) | What is the average first elected for the district South Carolina 2? |
SELECT first_elected FROM table_name_82 WHERE party = "republican" | CREATE TABLE table_name_82 (first_elected VARCHAR, party VARCHAR) | Who was the first elected for the republican party? |
SELECT party FROM table_name_91 WHERE district = "south carolina 2" | CREATE TABLE table_name_91 (party VARCHAR, district VARCHAR) | What party has the South Carolina 2 district? |
SELECT type FROM table_name_46 WHERE name = "cassano" | CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR) | What is the type for Cassano? |
SELECT nat FROM table_name_53 WHERE name = "diogo" | CREATE TABLE table_name_53 (nat VARCHAR, name VARCHAR) | What nationality is Diogo? |
SELECT name FROM table_name_79 WHERE transfer_window = "winter" AND moving_from = "roma" | CREATE TABLE table_name_79 (name VARCHAR, transfer_window VARCHAR, moving_from VARCHAR) | What is the name of the player with a winter transfer window moving from Roma? |
SELECT pressure FROM table_name_80 WHERE name = "ken" | CREATE TABLE table_name_80 (pressure VARCHAR, name VARCHAR) | What pressure is Ken? |
SELECT round FROM table_name_84 WHERE loser = "barbara hawcroft" | CREATE TABLE table_name_84 (round VARCHAR, loser VARCHAR) | In which round was Barbara Hawcroft the loser? |
SELECT AVG(year) FROM table_name_13 WHERE loser = "nerida gregory" | CREATE TABLE table_name_13 (year INTEGER, loser VARCHAR) | In which year is Nerida Gregory listed as the loser? |
SELECT SUM(year) FROM table_name_32 WHERE grand_slam = "australian open" AND loser = "misaki doi" | CREATE TABLE table_name_32 (year INTEGER, grand_slam VARCHAR, loser VARCHAR) | In which year did Misaki Doi lose the Australian Open Grand Slam? |
SELECT AVG(polish_cup) FROM table_name_20 WHERE puchat_ligi > 0 | CREATE TABLE table_name_20 (polish_cup INTEGER, puchat_ligi INTEGER) | Which Polish Cup has a Puchat Ligi larger than 0? |
SELECT player FROM table_name_43 WHERE total = 3 AND ekstraklasa < 3 AND uefa_cup = 2 | CREATE TABLE table_name_43 (player VARCHAR, uefa_cup VARCHAR, total VARCHAR, ekstraklasa VARCHAR) | Which Player has a Total of 3, and an Ekstraklasa smaller than 3, and a UEFA Cup of 2? |
SELECT MIN(puchat_ligi) FROM table_name_64 WHERE uefa_cup < 2 AND player = "takesure chinyama" | CREATE TABLE table_name_64 (puchat_ligi INTEGER, uefa_cup VARCHAR, player VARCHAR) | Which Puchat Ligi has a UEFA Cup smaller than 2, and a Player of takesure chinyama? |
SELECT SUM(ekstraklasa) FROM table_name_98 WHERE total < 3 | CREATE TABLE table_name_98 (ekstraklasa INTEGER, total INTEGER) | How much Ekstraklasa has a Total smaller than 3? |
SELECT SUM(puchat_ligi) FROM table_name_46 WHERE total < 5 AND ekstraklasa > 1 | CREATE TABLE table_name_46 (puchat_ligi INTEGER, total VARCHAR, ekstraklasa VARCHAR) | How much Puchat Ligi has a Total smaller than 5, and an Ekstraklasa larger than 1? |
SELECT player FROM table_name_74 WHERE to_par > 11 AND total < 155 | CREATE TABLE table_name_74 (player VARCHAR, to_par VARCHAR, total VARCHAR) | Which player has a to par greater than 11, with a total less than 155? |
SELECT country FROM table_name_6 WHERE to_par < 13 AND player = "wayne grady" | CREATE TABLE table_name_6 (country VARCHAR, to_par VARCHAR, player VARCHAR) | What country has a to par less than 13, with wayne grady as the player? |
SELECT MAX(points_1) FROM table_name_36 WHERE drawn = 5 AND goal_difference = "+58" AND lost > 4 | CREATE TABLE table_name_36 (points_1 INTEGER, lost VARCHAR, drawn VARCHAR, goal_difference VARCHAR) | Which Points 1 has Drawn of 5, and a Goal Difference of +58, and a Lost larger than 4? |
SELECT MAX(lost) FROM table_name_13 WHERE goals_against > 92 | CREATE TABLE table_name_13 (lost INTEGER, goals_against INTEGER) | Which Lost has Goals Against larger than 92? |
SELECT MAX(points_1) FROM table_name_11 WHERE team = "atherton collieries" AND position < 8 | CREATE TABLE table_name_11 (points_1 INTEGER, team VARCHAR, position VARCHAR) | Which Points 1 has a Team of atherton collieries, and a Position smaller than 8? |
SELECT SUM(played) FROM table_name_72 WHERE position = 7 AND drawn < 7 | CREATE TABLE table_name_72 (played INTEGER, position VARCHAR, drawn VARCHAR) | How much Played has a Position of 7, and a Drawn smaller than 7? |
SELECT COUNT(drawn) FROM table_name_5 WHERE points_1 = 51 AND lost > 5 | CREATE TABLE table_name_5 (drawn VARCHAR, points_1 VARCHAR, lost VARCHAR) | How much Drawn has Points 1 of 51, and a Lost larger than 5? |
SELECT AVG(introduced) FROM table_name_30 WHERE seating = "115" | CREATE TABLE table_name_30 (introduced INTEGER, seating VARCHAR) | When was the aircraft introduced that could seat 115 people? |
SELECT retired FROM table_name_91 WHERE notes = "replaced by 737-300s" | CREATE TABLE table_name_91 (retired VARCHAR, notes VARCHAR) | What year was the aircraft retired when it was replaced by 737-300s? |
SELECT aircraft FROM table_name_83 WHERE retired = "—" AND introduced = 2004 | CREATE TABLE table_name_83 (aircraft VARCHAR, retired VARCHAR, introduced VARCHAR) | What aircraft was introduced in 2004 and has a retired of —? |
SELECT aircraft FROM table_name_88 WHERE seating = "148/9" | CREATE TABLE table_name_88 (aircraft VARCHAR, seating VARCHAR) | Which aircraft has 148/9 seating? |
SELECT seating FROM table_name_6 WHERE notes = "in service" AND introduced = 2008 | CREATE TABLE table_name_6 (seating VARCHAR, notes VARCHAR, introduced VARCHAR) | How many people can be seated on the aircraft that was introduced in 2008 and has notes of in service? |
SELECT nationality FROM table_name_55 WHERE previous_team = "detroit pistons" | CREATE TABLE table_name_55 (nationality VARCHAR, previous_team VARCHAR) | What is the nationality of the player who was previously with the Detroit Pistons? |
SELECT career_with_the_franchise FROM table_name_47 WHERE years_of_nba_experience_[a_] < 9 AND pos = "f/c" AND previous_team = "phoenix suns" | CREATE TABLE table_name_47 (career_with_the_franchise VARCHAR, previous_team VARCHAR, pos VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR) | What is the career with the franchise of the f/c player with fewer than 9 years of NBA experience who previously played for the Phoenix Suns? |
SELECT tie_no FROM table_name_79 WHERE home_team = "bournemouth" | CREATE TABLE table_name_79 (tie_no VARCHAR, home_team VARCHAR) | What was the tie number when Bournemouth was the home team? |
SELECT away_team FROM table_name_83 WHERE home_team = "norwich city" | CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR) | Who was the away team when the home team was Norwich City? |
SELECT date FROM table_name_81 WHERE home_team = "wimbledon" | CREATE TABLE table_name_81 (date VARCHAR, home_team VARCHAR) | On what date was Wimbledon the home team? |
SELECT date FROM table_name_70 WHERE away_team = "west ham united" | CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR) | On what date was the away team West Ham United? |
SELECT date FROM table_name_24 WHERE away_team = "bournemouth" | CREATE TABLE table_name_24 (date VARCHAR, away_team VARCHAR) | On what date was the away team Bournemouth? |
SELECT district FROM table_name_41 WHERE name = "abhayapuri south" | CREATE TABLE table_name_41 (district VARCHAR, name VARCHAR) | What district has abhayapuri south as the name? |
SELECT bronze FROM table_name_69 WHERE gold > 1 AND silver < 3 AND rank < 5 | CREATE TABLE table_name_69 (bronze VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR) | Which Bronze has a Gold larger than 1, and a Silver smaller than 3, and a Rank smaller than 5? |
SELECT MAX(rank) FROM table_name_90 WHERE gold > 1 AND bronze = 4 AND silver < 1 | CREATE TABLE table_name_90 (rank INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR) | Which Rank has a Gold larger than 1, and a Bronze of 4, and a Silver smaller than 1? |
SELECT MIN(rank) FROM table_name_91 WHERE gold = 3 AND bronze = 4 AND total > 8 | CREATE TABLE table_name_91 (rank INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR) | Which Rank has a Gold of 3, and a Bronze of 4, and a Total larger than 8? |
SELECT SUM(total) FROM table_name_87 WHERE rank < 10 AND silver > 3 AND gold > 3 | CREATE TABLE table_name_87 (total INTEGER, gold VARCHAR, rank VARCHAR, silver VARCHAR) | How much Total has a Rank smaller than 10, and a Silver larger than 3, and a Gold larger than 3? |
SELECT MAX(total) FROM table_name_37 WHERE rank = 9 AND silver < 2 | CREATE TABLE table_name_37 (total INTEGER, rank VARCHAR, silver VARCHAR) | Which Total has a Rank of 9, and a Silver smaller than 2? |
SELECT event FROM table_name_21 WHERE name = "xu zhilin" | CREATE TABLE table_name_21 (event VARCHAR, name VARCHAR) | What event had Xu Zhilin competing? |
SELECT sport FROM table_name_26 WHERE name = "ma yuxi" | CREATE TABLE table_name_26 (sport VARCHAR, name VARCHAR) | What sport has Ma Yuxi in it? |
SELECT COUNT(year) FROM table_name_36 WHERE first = "antonio pompa-baldi italy" | CREATE TABLE table_name_36 (year VARCHAR, first VARCHAR) | How many years is Antonio Pompa-Baldi Italy first? |
SELECT fourth FROM table_name_98 WHERE second = "anders martinson usa" | CREATE TABLE table_name_98 (fourth VARCHAR, second VARCHAR) | Who is fourth when Anders Martinson USA is second? |
SELECT SUM(wins) FROM table_name_47 WHERE club = "abuls smiltene" AND goals_for < 18 | CREATE TABLE table_name_47 (wins INTEGER, club VARCHAR, goals_for VARCHAR) | Can you tell me the sum of Wins that has the Club of abuls smiltene, and the Goals smaller than 18? |
SELECT AVG(wins) FROM table_name_42 WHERE goal_difference > -24 AND draws > 7 | CREATE TABLE table_name_42 (wins INTEGER, goal_difference VARCHAR, draws VARCHAR) | Can you tell me the average Wins that has the Goal Difference larger than -24, and the Draws larger than 7? |
SELECT MAX(draws) FROM table_name_5 WHERE goal_difference < 64 AND played > 30 | CREATE TABLE table_name_5 (draws INTEGER, goal_difference VARCHAR, played VARCHAR) | Can you tell me the highest Draws that has the Goal Difference smaller than 64, and the Played larger than 30? |
SELECT MAX(points) FROM table_name_67 WHERE played < 30 | CREATE TABLE table_name_67 (points INTEGER, played INTEGER) | Can you tell me the highest Points that has the Played smaller than 30? |
SELECT AVG(rank) FROM table_name_57 WHERE bronze < 1 AND silver > 1 | CREATE TABLE table_name_57 (rank INTEGER, bronze VARCHAR, silver VARCHAR) | What rank was the country with no bronze but at least 1 silver medals? |
SELECT MIN(gold) FROM table_name_48 WHERE bronze = 1 AND total = 3 AND rank > 7 | CREATE TABLE table_name_48 (gold INTEGER, rank VARCHAR, bronze VARCHAR, total VARCHAR) | What is the smallest number of gold medals a country with 1 bronze, and a total of 3 medals which is lower than rank 7? |
SELECT MIN(gold) FROM table_name_23 WHERE total = 7 | CREATE TABLE table_name_23 (gold INTEGER, total VARCHAR) | What is the smallest number of gold medals a country with 7 medals has? |
SELECT host_city FROM table_name_35 WHERE games = "vii" | CREATE TABLE table_name_35 (host_city VARCHAR, games VARCHAR) | Can you tell me the Host City that has the Games of vii? |
SELECT nominated_work FROM table_name_68 WHERE year > 2006 AND award = "drama desk award" AND category = "outstanding featured actor in a musical" | CREATE TABLE table_name_68 (nominated_work VARCHAR, category VARCHAR, year VARCHAR, award VARCHAR) | What was the nominated work after 2006, that was awarded the Drama Desk award and the Outstanding featured actor in a musical? |
SELECT COUNT(year) FROM table_name_25 WHERE category = "outstanding featured actor in a musical" AND nominated_work = "evita" | CREATE TABLE table_name_25 (year VARCHAR, category VARCHAR, nominated_work VARCHAR) | What year was Evita nominated for outstanding featured actor in a musical? |
SELECT nominated_work FROM table_name_29 WHERE result = "nominated" AND award = "drama league award" AND year < 2007 | CREATE TABLE table_name_29 (nominated_work VARCHAR, year VARCHAR, result VARCHAR, award VARCHAR) | What was the nominated work, nominated for the drama league award before 2007? |
SELECT pole_position FROM table_name_2 WHERE date = "7 august" | CREATE TABLE table_name_2 (pole_position VARCHAR, date VARCHAR) | Who had the pole position on 7 August? |
SELECT winning_team FROM table_name_6 WHERE circuit = "zandvoort" | CREATE TABLE table_name_6 (winning_team VARCHAR, circuit VARCHAR) | Who was the winning team at Zandvoort? |
SELECT MIN(losses) FROM table_name_39 WHERE wins < 6 AND south_west_dfl = "sandford" | CREATE TABLE table_name_39 (losses INTEGER, wins VARCHAR, south_west_dfl VARCHAR) | Which Losses have Wins smaller than 6, and a South West DFL of sandford? |
SELECT SUM(against) FROM table_name_17 WHERE draws = 2 AND losses < 4 | CREATE TABLE table_name_17 (against INTEGER, draws VARCHAR, losses VARCHAR) | How much Against has Draws of 2, and Losses smaller than 4? |
SELECT COUNT(losses) FROM table_name_51 WHERE south_west_dfl = "coleraine" AND against < 891 | CREATE TABLE table_name_51 (losses VARCHAR, south_west_dfl VARCHAR, against VARCHAR) | How many Losses have South West DFL of coleraine, and an Against smaller than 891? |
SELECT MIN(played) FROM table_name_48 WHERE goals_for = 47 AND wins < 14 | CREATE TABLE table_name_48 (played INTEGER, goals_for VARCHAR, wins VARCHAR) | What is the lowest played number when goals for is 47, and wins is smaller than 14? |
SELECT club FROM table_name_26 WHERE wins = 13 AND goals_against < 48 AND position = 4 | CREATE TABLE table_name_26 (club VARCHAR, position VARCHAR, wins VARCHAR, goals_against VARCHAR) | What Club has 13 wins, goals against less than 48, and a position of 4? |
SELECT MIN(position) FROM table_name_92 WHERE goals_against = 59 AND goals_for < 24 | CREATE TABLE table_name_92 (position INTEGER, goals_against VARCHAR, goals_for VARCHAR) | What is the lowest position number when goals against was 59, and a goals for is smaller than 24? |
SELECT MAX(goals_against) FROM table_name_12 WHERE points > 31 AND goal_difference < 9 AND wins = 13 AND draws > 6 | CREATE TABLE table_name_12 (goals_against INTEGER, draws VARCHAR, wins VARCHAR, points VARCHAR, goal_difference VARCHAR) | What is the highest goals against when points are larger than 31, the goal difference is smaller than 9, wins are 13, and draws are larger than 6? |
SELECT MIN(played) FROM table_name_52 WHERE points > 32 AND wins > 18 | CREATE TABLE table_name_52 (played INTEGER, points VARCHAR, wins VARCHAR) | What is the lowest played number when points are larger than 32, and a wins are larger than 18? |
SELECT MAX(against) FROM table_name_35 WHERE status = "six nations" AND date = "02/03/2002" | CREATE TABLE table_name_35 (against INTEGER, status VARCHAR, date VARCHAR) | Can you tell me the highest Against that has the Status of six nations, and the Date of 02/03/2002? |
SELECT AVG(against) FROM table_name_44 WHERE date = "23/03/2002" | CREATE TABLE table_name_44 (against INTEGER, date VARCHAR) | Can you tell me the average Against thaylt has the Date of 23/03/2002? |
Subsets and Splits