output stringlengths 18 557 | instruction stringlengths 22 540 |
|---|---|
SELECT nation FROM table_name_24 WHERE total > 1 AND bronze < 3 AND silver > 2 AND gold > 2 | CREATE TABLE table_name_24 (nation VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR, bronze VARCHAR), When the total is larger than 1,and the bronze is less than 3, and silver larger than 2, and a gold larger than 2, what is the nation? |
SELECT AVG(rank) FROM table_name_52 WHERE bronze > 1 AND silver < 0 | CREATE TABLE table_name_52 (rank INTEGER, bronze VARCHAR, silver VARCHAR), What is the average rank when the bronze is larger than 1, and silver is less than 0? |
SELECT result FROM table_name_38 WHERE opponent = "sunderland" | CREATE TABLE table_name_38 (result VARCHAR, opponent VARCHAR), Which result has sunderland as opponent? |
SELECT SUM(played) FROM table_name_32 WHERE high_checkout = 135 | CREATE TABLE table_name_32 (played INTEGER, high_checkout VARCHAR), What is the played number when the high checkout is 135? |
SELECT COUNT(3 AS _dart_average) FROM table_name_1 WHERE legs_lost > 41 AND played > 7 | CREATE TABLE table_name_1 (legs_lost VARCHAR, played VARCHAR), What is the total number of 3-dart average when legs lost is larger than 41, and played is larger than 7? |
SELECT years FROM table_name_74 WHERE model = "sl 350" | CREATE TABLE table_name_74 (years VARCHAR, model VARCHAR), What year was the SL 350 Model? |
SELECT race FROM table_name_30 WHERE runners = 7 AND odds = "1/3" | CREATE TABLE table_name_30 (race VARCHAR, runners VARCHAR, odds VARCHAR), Which Race has a Runners of 7 and Odds of 1/3? |
SELECT class FROM table_name_50 WHERE jockey = "michael kinane" AND time = "2:27.71" | CREATE TABLE table_name_50 (class VARCHAR, jockey VARCHAR, time VARCHAR), Which Class has a Jockey of michael kinane on 2:27.71? |
SELECT MAX(dist__f_) FROM table_name_74 WHERE odds = "11/4" AND placing > 1 | CREATE TABLE table_name_74 (dist__f_ INTEGER, odds VARCHAR, placing VARCHAR), Name the highest Dist (f) with Odds of 11/4 and a Placing larger than 1? |
SELECT margin FROM table_name_33 WHERE dist__f_ > 10 AND race = "king george vi & queen elizabeth stakes" | CREATE TABLE table_name_33 (margin VARCHAR, dist__f_ VARCHAR, race VARCHAR), Which Margin has a Dist (f) larger than 10, and a Race of king george vi & queen elizabeth stakes? |
SELECT dist__f_ FROM table_name_75 WHERE race = "irish derby" | CREATE TABLE table_name_75 (dist__f_ VARCHAR, race VARCHAR), Which Dist (f) has a Race of irish derby? |
SELECT AVG(attendance) FROM table_name_49 WHERE arena = "joe louis arena" | CREATE TABLE table_name_49 (attendance INTEGER, arena VARCHAR), What is the Attendance at Joe Louis Arena? |
SELECT loss FROM table_name_42 WHERE score = "4–3" AND arena = "nationwide arena" | CREATE TABLE table_name_42 (loss VARCHAR, score VARCHAR, arena VARCHAR), What is the Loss of the game at Nationwide Arena with a Score of 4–3? |
SELECT COUNT(attendance) FROM table_name_59 WHERE score = "3–2" | CREATE TABLE table_name_59 (attendance VARCHAR, score VARCHAR), What is the Attendance of the game with a Score of 3–2? |
SELECT score FROM table_name_21 WHERE date = "march 19" | CREATE TABLE table_name_21 (score VARCHAR, date VARCHAR), What is the Score of the game on March 19? |
SELECT AVG(attendance) FROM table_name_44 WHERE record = "37–21–12" AND points < 86 | CREATE TABLE table_name_44 (attendance INTEGER, record VARCHAR, points VARCHAR), What is the Attendance of the game with a Record of 37–21–12 and less than 86 Points? |
SELECT player FROM table_name_27 WHERE debut_year < 1943 AND games < 12 AND goals < 11 AND years_at_club = "1942" | CREATE TABLE table_name_27 (player VARCHAR, years_at_club VARCHAR, goals VARCHAR, debut_year VARCHAR, games VARCHAR), Which player debuted before 1943, played for the club in 1942, played less than 12 games, and scored less than 11 goals? |
SELECT label FROM table_name_70 WHERE year > 1978 | CREATE TABLE table_name_70 (label VARCHAR, year INTEGER), What label had the album after 1978? |
SELECT title FROM table_name_56 WHERE riaa = "gold" | CREATE TABLE table_name_56 (title VARCHAR, riaa VARCHAR), What is the title of the album that had a RIAA of gold? |
SELECT MAX(year) FROM table_name_82 WHERE title = "loves lost and found" | CREATE TABLE table_name_82 (year INTEGER, title VARCHAR), What is the highest year for the title, "loves lost and found"? |
SELECT away_team FROM table_name_80 WHERE round < 3 AND home_team = "queensland roar" | CREATE TABLE table_name_80 (away_team VARCHAR, round VARCHAR, home_team VARCHAR), Who was the away team when Queensland Roar was the home team in the round less than 3? |
SELECT MIN(round) FROM table_name_50 WHERE stadium = "members equity stadium" AND attendance < 12 OFFSET 581 | CREATE TABLE table_name_50 (round INTEGER, stadium VARCHAR, attendance VARCHAR), What is the least round for the game played at Members Equity Stadium in from of 12,581 people? |
SELECT previous_conference FROM table_name_69 WHERE location = "converse" | CREATE TABLE table_name_69 (previous_conference VARCHAR, location VARCHAR), what is the previous conference when the location is converse? |
SELECT school FROM table_name_58 WHERE location = "alexandria" | CREATE TABLE table_name_58 (school VARCHAR, location VARCHAR), what is the school with the location of alexandria? |
SELECT ihsaa_class___football___soccer FROM table_name_43 WHERE location = "alexandria" | CREATE TABLE table_name_43 (ihsaa_class___football___soccer VARCHAR, location VARCHAR), what is teh ihsaa class/football/soccer when the location is alexandria? |
SELECT SUM(margin) FROM table_name_40 WHERE country = "canada" | CREATE TABLE table_name_40 (margin INTEGER, country VARCHAR), What is canada's margin? |
SELECT AVG(margin) FROM table_name_30 WHERE player = "russ cochran" | CREATE TABLE table_name_30 (margin INTEGER, player VARCHAR), What is russ cochran's average margin? |
SELECT COUNT(year) FROM table_name_50 WHERE player = "joe durant" AND earnings__$_ > 396 OFFSET 000 | CREATE TABLE table_name_50 (year VARCHAR, player VARCHAR, earnings__$_ VARCHAR), How many years have a Player of joe durant, and Earnings ($) larger than 396,000? |
SELECT margin FROM table_name_50 WHERE country = "united states" AND score = 63 - 70 - 65 - 69 = 267 | CREATE TABLE table_name_50 (margin VARCHAR, country VARCHAR, score VARCHAR), Which Margin has a Country of united states, and a Score of 63-70-65-69=267? |
SELECT quantity_made FROM table_name_38 WHERE class = "d-2" | CREATE TABLE table_name_38 (quantity_made VARCHAR, class VARCHAR), what is the quantity made when the class is d-2? |
SELECT year_made FROM table_name_20 WHERE manufacturer = "2-6-2 — oooo — mogul" | CREATE TABLE table_name_20 (year_made VARCHAR, manufacturer VARCHAR), what is the year made when the manufacturer is 2-6-2 — oooo — mogul? |
SELECT wheel_arrangement FROM table_name_78 WHERE year_made = "1881" | CREATE TABLE table_name_78 (wheel_arrangement VARCHAR, year_made VARCHAR), what is the wheel arrangement when the year made is 1881? |
SELECT quantity_made FROM table_name_78 WHERE wheel_arrangement = "2-6-0" AND class = "k" | CREATE TABLE table_name_78 (quantity_made VARCHAR, wheel_arrangement VARCHAR, class VARCHAR), what is the quantity made when the wheel arrangement is 2-6-0 and the class is k? |
SELECT class FROM table_name_78 WHERE quantity_preserved = "0" AND quantity_made = "5" | CREATE TABLE table_name_78 (class VARCHAR, quantity_preserved VARCHAR, quantity_made VARCHAR), what is the class when the quantity perserved is 0 and the quantity made is 5? |
SELECT COUNT(match) FROM table_name_20 WHERE result = "0:5 (0:3)" | CREATE TABLE table_name_20 (match VARCHAR, result VARCHAR), What is the match number that had a result of 0:5 (0:3)? |
SELECT SUM(match) FROM table_name_91 WHERE result = "0:3 (0:2)" AND opponent = "fcr 2001 duisburg" AND attnd > 1 OFFSET 490 | CREATE TABLE table_name_91 (match INTEGER, attnd VARCHAR, result VARCHAR, opponent VARCHAR), Which match had more than 1,490 people in attendance to watch FCR 2001 Duisburg have a result of 0:3 (0:2)? |
SELECT SUM(match) FROM table_name_39 WHERE opponent = "fcr 2001 duisburg" | CREATE TABLE table_name_39 (match INTEGER, opponent VARCHAR), Which match did FCR 2001 Duisburg participate as the opponent? |
SELECT surface FROM table_name_95 WHERE date = "july 5, 2009" | CREATE TABLE table_name_95 (surface VARCHAR, date VARCHAR), What is the surface of the match on July 5, 2009? |
SELECT date FROM table_name_15 WHERE surface = "clay" AND score = "6-3 2-6 6-4" | CREATE TABLE table_name_15 (date VARCHAR, surface VARCHAR, score VARCHAR), What is the date of the match on clay with score of 6-3 2-6 6-4? |
SELECT opponent_in_final FROM table_name_55 WHERE surface = "carpet" | CREATE TABLE table_name_55 (opponent_in_final VARCHAR, surface VARCHAR), Who was the opponent on carpet in a final? |
SELECT score FROM table_name_75 WHERE surface = "hard" AND tournament = "ramat hasharon" | CREATE TABLE table_name_75 (score VARCHAR, surface VARCHAR, tournament VARCHAR), What is the score of the hard court Ramat Hasharon tournament? |
SELECT score FROM table_name_50 WHERE date = "september 24, 2006" | CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR), What is the score of the match on September 24, 2006? |
SELECT surface FROM table_name_46 WHERE tournament = "volos" | CREATE TABLE table_name_46 (surface VARCHAR, tournament VARCHAR), What is the surface for the Volos tournament? |
SELECT winner FROM table_name_42 WHERE team = "nissan motorsport australia" AND circuit = "oran park raceway" | CREATE TABLE table_name_42 (winner VARCHAR, team VARCHAR, circuit VARCHAR), Who is the Winner of the Nissan Motorsport Australia Team at the Oran Park Raceway? |
SELECT circuit FROM table_name_34 WHERE winner = "jim richards" AND series = "atcc round 1" | CREATE TABLE table_name_34 (circuit VARCHAR, winner VARCHAR, series VARCHAR), What is the Circuit in the ATCC Round 1 Series with Winner Jim Richards? |
SELECT team FROM table_name_82 WHERE winner = "mark skaife" AND series = "atcc round 7" | CREATE TABLE table_name_82 (team VARCHAR, winner VARCHAR, series VARCHAR), What is the Team of Winner Mark Skaife in ATCC Round 7? |
SELECT SUM(bronze) FROM table_name_42 WHERE silver < 0 | CREATE TABLE table_name_42 (bronze INTEGER, silver INTEGER), What is the sum of the bronze medals of the nation with less than 0 silvers? |
SELECT MAX(bronze) FROM table_name_93 WHERE gold > 1 AND nation = "china" AND total > 11 | CREATE TABLE table_name_93 (bronze INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR), What is the highest amount of bronze china, which has more than 1 gold and more than 11 total, has? |
SELECT AVG(bronze) FROM table_name_51 WHERE nation = "hungary" AND silver < 1 | CREATE TABLE table_name_51 (bronze INTEGER, nation VARCHAR, silver VARCHAR), Wha is the average number of bronze of hungary, which has less than 1 silver? |
SELECT size FROM table_name_81 WHERE ihsaa_class = "4a" AND previous_conference = "central indiana" | CREATE TABLE table_name_81 (size VARCHAR, ihsaa_class VARCHAR, previous_conference VARCHAR), What is the size of the team that was previously from Central Indiana conference, and is in IHSSA Class 4a? |
SELECT ihsaa_class FROM table_name_95 WHERE location = "middlebury, in" | CREATE TABLE table_name_95 (ihsaa_class VARCHAR, location VARCHAR), What is the IHSAA class for the team located in Middlebury, IN? |
SELECT COUNT(cuts_made) FROM table_name_91 WHERE top_5 = 0 AND wins > 0 | CREATE TABLE table_name_91 (cuts_made VARCHAR, top_5 VARCHAR, wins VARCHAR), How many total cuts were made in events with more than 0 wins and exactly 0 top-5s? |
SELECT MIN(wins) FROM table_name_13 WHERE events = 9 | CREATE TABLE table_name_13 (wins INTEGER, events VARCHAR), What is the fewest wins for Thomas in events he had entered exactly 9 times? |
SELECT COUNT(wins) FROM table_name_92 WHERE top_25 < 5 AND events > 4 AND top_5 < 2 | CREATE TABLE table_name_92 (wins VARCHAR, top_5 VARCHAR, top_25 VARCHAR, events VARCHAR), What is the total number of wins for events with under 2 top-5s, under 5 top-25s, and more than 4 events played? |
SELECT AVG(cuts_made) FROM table_name_59 WHERE events < 4 AND wins > 0 | CREATE TABLE table_name_59 (cuts_made INTEGER, events VARCHAR, wins VARCHAR), What is the average number of cuts made for events with under 4 entries and more than 0 wins? |
SELECT AVG(cuts_made) FROM table_name_17 WHERE top_5 < 0 | CREATE TABLE table_name_17 (cuts_made INTEGER, top_5 INTEGER), What is the average number of cuts made for events with 0 top-5s? |
SELECT MIN(top_25) FROM table_name_31 WHERE cuts_made > 13 | CREATE TABLE table_name_31 (top_25 INTEGER, cuts_made INTEGER), What is the fewest number of top-25s for events with more than 13 cuts made? |
SELECT record FROM table_name_87 WHERE game > 51 AND date = "1/27/1974" | CREATE TABLE table_name_87 (record VARCHAR, game VARCHAR, date VARCHAR), What was the record after game 51 on 1/27/1974? |
SELECT score FROM table_name_79 WHERE date = "1/10/1974" | CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR), What was the score on 1/10/1974? |
SELECT opponent FROM table_name_6 WHERE date = "1/13/1974" | CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR), What opponent played on 1/13/1974? |
SELECT COUNT(erp_w) FROM table_name_58 WHERE class = "c3" AND frequency_mhz < 89.9 | CREATE TABLE table_name_58 (erp_w VARCHAR, class VARCHAR, frequency_mhz VARCHAR), What is the total erp w of class c3, which has a frequency mhz less than 89.9? |
SELECT COUNT(frequency_mhz) FROM table_name_19 WHERE call_sign = "kgrj" AND erp_w > 21 OFFSET 500 | CREATE TABLE table_name_19 (frequency_mhz VARCHAR, call_sign VARCHAR, erp_w VARCHAR), What is the total frequency mhz of the kgrj call sign, which has an erp w greater than 21,500? |
SELECT call_sign FROM table_name_15 WHERE erp_w = 222 | CREATE TABLE table_name_15 (call_sign VARCHAR, erp_w VARCHAR), What is the call sign with a 222 erp w? |
SELECT AVG(frequency_mhz) FROM table_name_83 WHERE city_of_license = "loomis, south dakota" | CREATE TABLE table_name_83 (frequency_mhz INTEGER, city_of_license VARCHAR), What is the average frequency mhz of the loomis, south dakota city license? |
SELECT SUM(erp_w) FROM table_name_5 WHERE call_sign = "k222al" | CREATE TABLE table_name_5 (erp_w INTEGER, call_sign VARCHAR), What is the sum of the erp w of the k222al call sign? |
SELECT MAX(erp_w) FROM table_name_38 WHERE frequency_mhz = 90.5 | CREATE TABLE table_name_38 (erp_w INTEGER, frequency_mhz VARCHAR), What is the highest erp w with a 90.5 frequency mhz? |
SELECT COUNT(ends) FROM table_name_39 WHERE since > 2006 AND nat = "ita" AND goals < 0 | CREATE TABLE table_name_39 (ends VARCHAR, goals VARCHAR, since VARCHAR, nat VARCHAR), What is the total number of ends after 2006 with a nationality of ita and 0 goals? |
SELECT MIN(since) FROM table_name_76 WHERE transfer_fee = "€ 14m" AND ends > 2011 | CREATE TABLE table_name_76 (since INTEGER, transfer_fee VARCHAR, ends VARCHAR), What is the lowest year in since that had a transfer fee of € 14m and ended after 2011? |
SELECT nationality FROM table_name_10 WHERE round < 5 AND player = "bruce affleck" | CREATE TABLE table_name_10 (nationality VARCHAR, round VARCHAR, player VARCHAR), Can you tell me the Nationality that has the Round smaller than 5, and the Player of bruce affleck? |
SELECT college_junior_club_team FROM table_name_79 WHERE round = 4 | CREATE TABLE table_name_79 (college_junior_club_team VARCHAR, round VARCHAR), Can you tell me the College/Junior/Club Team that has the Round of 4? |
SELECT COUNT(top_25) FROM table_name_45 WHERE wins < 0 | CREATE TABLE table_name_45 (top_25 VARCHAR, wins INTEGER), What is the total number of top-25s for events with 0 wins? |
SELECT COUNT(cuts_made) FROM table_name_44 WHERE events > 3 AND top_25 < 2 | CREATE TABLE table_name_44 (cuts_made VARCHAR, events VARCHAR, top_25 VARCHAR), What is the total number of cuts made for events played more than 3 times and under 2 top-25s? |
SELECT SUM(top_10) FROM table_name_68 WHERE wins > 0 | CREATE TABLE table_name_68 (top_10 INTEGER, wins INTEGER), What is the sum of top-10s for events with more than 0 wins? |
SELECT 3 AS rd_run FROM table_name_55 WHERE rank = 8 | CREATE TABLE table_name_55 (rank VARCHAR), Which 3rd run has rank of 8? |
SELECT 3 AS rd_run FROM table_name_97 WHERE rank = 1 | CREATE TABLE table_name_97 (rank VARCHAR), Which 3rd run has rank of 1? |
SELECT AVG(rank) FROM table_name_78 WHERE total = 16 | CREATE TABLE table_name_78 (rank INTEGER, total VARCHAR), Which average rank has a total of 16? |
SELECT MIN(labour_party) FROM table_name_16 WHERE fianna_fáil > 5 | CREATE TABLE table_name_16 (labour_party INTEGER, fianna_fáil INTEGER), What is the lowest number in the Labour Party for the Fianna Fail higher than 5? |
SELECT SUM(labour_party) FROM table_name_29 WHERE fianna_fáil = 3 AND total > 9 AND green_party > 2 | CREATE TABLE table_name_29 (labour_party INTEGER, green_party VARCHAR, fianna_fáil VARCHAR, total VARCHAR), How many are in the Labour Party of a Fianna Fail of 3 with a total higher than 9 and more than 2 in the Green Party? |
SELECT SUM(green_party) FROM table_name_41 WHERE fine_gael < 4 AND fianna_fáil < 2 AND town = "athy" | CREATE TABLE table_name_41 (green_party INTEGER, town VARCHAR, fine_gael VARCHAR, fianna_fáil VARCHAR), How many are in the Green Party with a Fine Gael of less than 4 and a Fianna Fail of less than 2 in Athy? |
SELECT MIN(lane) FROM table_name_55 WHERE nationality = "brazil" AND time < 21.15 | CREATE TABLE table_name_55 (lane INTEGER, nationality VARCHAR, time VARCHAR), What's Brazil's lane with a time less than 21.15? |
SELECT MAX(lane) FROM table_name_60 WHERE nationality = "russia" AND rank < 1 | CREATE TABLE table_name_60 (lane INTEGER, nationality VARCHAR, rank VARCHAR), What's Russia's lane when they were ranked before 1? |
SELECT SUM(lane) FROM table_name_28 WHERE nationality = "bulgaria" AND time > 21.55 | CREATE TABLE table_name_28 (lane INTEGER, nationality VARCHAR, time VARCHAR), What's Bulgaria's lane with a time more than 21.55? |
SELECT nation FROM table_name_84 WHERE silver = 0 AND bronze = 1 AND rank = "18" | CREATE TABLE table_name_84 (nation VARCHAR, rank VARCHAR, silver VARCHAR, bronze VARCHAR), What nation has 0 as the silver, 1 as the bronze, with 18 as the rank? |
SELECT COUNT(gold) FROM table_name_17 WHERE rank = "3" AND total > 7 | CREATE TABLE table_name_17 (gold VARCHAR, rank VARCHAR, total VARCHAR), How many golds have 3 as the rank, with a total greater than 7? |
SELECT AVG(silver) FROM table_name_23 WHERE nation = "belarus" AND total < 1 | CREATE TABLE table_name_23 (silver INTEGER, nation VARCHAR, total VARCHAR), What average silver has belarus as the nation, with a total less than 1? |
SELECT AVG(total) FROM table_name_69 WHERE gold = 0 AND rank = "6" | CREATE TABLE table_name_69 (total INTEGER, gold VARCHAR, rank VARCHAR), What average total has 0 as the gold, with 6 as the rank? |
SELECT COUNT(rank) FROM table_name_41 WHERE bronze = 21 AND silver > 10 | CREATE TABLE table_name_41 (rank VARCHAR, bronze VARCHAR, silver VARCHAR), How much Rank has a Bronze of 21, and a Silver larger than 10? |
SELECT AVG(gold) FROM table_name_39 WHERE nation = "sri lanka" AND silver < 10 | CREATE TABLE table_name_39 (gold INTEGER, nation VARCHAR, silver VARCHAR), Which Gold has a Nation of sri lanka, and a Silver smaller than 10? |
SELECT COUNT(silver) FROM table_name_4 WHERE rank = 7 | CREATE TABLE table_name_4 (silver VARCHAR, rank VARCHAR), How much Silver has a Rank of 7? |
SELECT AVG(gold) FROM table_name_97 WHERE rank < 5 AND bronze = 20 | CREATE TABLE table_name_97 (gold INTEGER, rank VARCHAR, bronze VARCHAR), Which Gold has a Rank smaller than 5, and a Bronze of 20? |
SELECT MIN(silver) FROM table_name_3 WHERE rank = 6 AND bronze < 3 | CREATE TABLE table_name_3 (silver INTEGER, rank VARCHAR, bronze VARCHAR), Which Silver has a Rank of 6, and a Bronze smaller than 3? |
SELECT MIN(total) FROM table_name_21 WHERE nation = "sweden (swe)" AND silver < 1 | CREATE TABLE table_name_21 (total INTEGER, nation VARCHAR, silver VARCHAR), What's the total of Sweden (SWE) having less than 1 silver? |
SELECT COUNT(bronze) FROM table_name_90 WHERE gold < 1 AND nation = "sweden (swe)" AND silver < 1 | CREATE TABLE table_name_90 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, nation VARCHAR), What's the total number of bronze medals for Sweden (SWE) having less than 1 gold and silver? |
SELECT AVG(total) FROM table_name_95 WHERE silver = 1 AND gold < 0 | CREATE TABLE table_name_95 (total INTEGER, silver VARCHAR, gold VARCHAR), What's the total when the gold is less than 0 and silver is less than 1? |
SELECT COUNT(total) FROM table_name_2 WHERE silver = 0 AND rank = 8 AND gold > 1 | CREATE TABLE table_name_2 (total VARCHAR, gold VARCHAR, silver VARCHAR, rank VARCHAR), What's the total of rank 8 when Silver medals are 0 and gold is more than 1? |
SELECT MAX(bronze) FROM table_name_48 WHERE total > 3 AND rank > 1 | CREATE TABLE table_name_48 (bronze INTEGER, total VARCHAR, rank VARCHAR), What are the most bronze medals in a rank more than 1 with a total larger than 3? |
SELECT COUNT(rank) FROM table_name_14 WHERE nation = "turkey (tur)" AND total > 2 | CREATE TABLE table_name_14 (rank VARCHAR, nation VARCHAR, total VARCHAR), What's the rank of Turkey (TUR) with a total more than 2? |
SELECT opponent FROM table_name_73 WHERE record = "86-62" | CREATE TABLE table_name_73 (opponent VARCHAR, record VARCHAR), What opponent has a record of 86-62? |
SELECT loss FROM table_name_62 WHERE date = "september 16" | CREATE TABLE table_name_62 (loss VARCHAR, date VARCHAR), What's the loss for September 16? |
SELECT score FROM table_name_35 WHERE opponent = "indians" AND date = "september 15" | CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR, date VARCHAR), What is the score from September 15 that has the Indians as the opponent? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.