answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT sponsor FROM table_name_18 WHERE driver = "neil bonnett" | Who sponsors driver neil bonnett? | CREATE TABLE table_name_18 (sponsor VARCHAR, driver VARCHAR) |
SELECT country FROM table_name_1 WHERE city = "gafsa" | what is the country when the city is gafsa? | CREATE TABLE table_name_1 (country VARCHAR, city VARCHAR) |
SELECT MAX(aggregate) FROM table_25931938_1 WHERE celebrity = "Ricky Groves" | What was the aggregate for Ricky Groves? | CREATE TABLE table_25931938_1 (aggregate INTEGER, celebrity VARCHAR) |
SELECT incumbent FROM table_1341672_10 WHERE candidates = "William V. Chappell, Jr. (D) Unopposed" | who is the incumbent where the candidates is william v. chappell, jr. (d) unopposed? | CREATE TABLE table_1341672_10 (incumbent VARCHAR, candidates VARCHAR) |
SELECT rank FROM table_name_70 WHERE time = "6:50.48" | What is the rank when the time is 6:50.48? | CREATE TABLE table_name_70 (rank VARCHAR, time VARCHAR) |
SELECT fin_pos FROM table_name_21 WHERE grid = "6" | What was the finishing position for the car that started in grid 6? | CREATE TABLE table_name_21 (fin_pos VARCHAR, grid VARCHAR) |
SELECT player FROM table_name_43 WHERE total = 3 AND ekstraklasa < 3 AND uefa_cup = 2 | Which Player has a Total of 3, and an Ekstraklasa smaller than 3, and a UEFA Cup of 2? | CREATE TABLE table_name_43 (player VARCHAR, uefa_cup VARCHAR, total VARCHAR, ekstraklasa VARCHAR) |
SELECT rank FROM table_19744915_15 WHERE couple = "Michael and Melanie" | What is Michael and Melanie's rank? | CREATE TABLE table_19744915_15 (rank VARCHAR, couple VARCHAR) |
SELECT score FROM table_name_88 WHERE home = "phoenix" AND record = "3–6–0" | What was the score did phoenix have with a Record of 3–6–0 at home? | CREATE TABLE table_name_88 (score VARCHAR, home VARCHAR, record VARCHAR) |
SELECT developer FROM table_name_96 WHERE year_of_release = "cancelled" | Which developer has a year of cancelled releases? | CREATE TABLE table_name_96 (developer VARCHAR, year_of_release VARCHAR) |
SELECT type FROM table_name_46 WHERE name = "colton's crossing bridge" | What type of bridge is Colton's Crossing Bridge? | CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR) |
SELECT preferred_foot, COUNT(*) FROM Player_Attributes WHERE overall_rating > 80 GROUP BY preferred_foot | Of all players with an overall rating greater than 80, how many are right-footed and left-footed? | CREATE TABLE Player_Attributes (preferred_foot VARCHAR, overall_rating INTEGER) |
SELECT result FROM table_name_75 WHERE date = "10/04/1947" | What was the result for 10/04/1947? | CREATE TABLE table_name_75 (result VARCHAR, date VARCHAR) |
SELECT country FROM table_name_79 WHERE total > 293 AND to_par < 17 | What country has a total larger than 293, and a to par less than 17? | CREATE TABLE table_name_79 (country VARCHAR, total VARCHAR, to_par VARCHAR) |
SELECT score FROM table_name_83 WHERE progress = "no entrants" AND year = 1997 | What was the score in 1997 for the team that has a Progress of no entrants? | CREATE TABLE table_name_83 (score VARCHAR, progress VARCHAR, year VARCHAR) |
SELECT COUNT(s_hindu) FROM table_14598_5 WHERE buddhist = "73.0%" | What is the data point for s hindu where the buddhist data point is 73.0%? | CREATE TABLE table_14598_5 (s_hindu VARCHAR, buddhist VARCHAR) |
SELECT source FROM table_21535453_1 WHERE terry_mcauliffe = "30%" AND dates_administered = "June 8" | What was the source of the poll that gave McAuliffe 30% on June 8? | CREATE TABLE table_21535453_1 (source VARCHAR, terry_mcauliffe VARCHAR, dates_administered VARCHAR) |
SELECT apogee FROM table_name_46 WHERE mission = "maxus 3" | Which Apogee has a Mission of maxus 3? | CREATE TABLE table_name_46 (apogee VARCHAR, mission VARCHAR) |
SELECT province, _community FROM table_name_82 WHERE geographical_regions = "el cibao" AND height > 1.8 | What is province of community with height larger than 1.8 and is in el cibao region? | CREATE TABLE table_name_82 (province VARCHAR, _community VARCHAR, geographical_regions VARCHAR, height VARCHAR) |
SELECT reg_season FROM table_1908049_1 WHERE year = "1995/96" | in the year 1995/96 what was the reg. season | CREATE TABLE table_1908049_1 (reg_season VARCHAR, year VARCHAR) |
SELECT MIN(density_per_km²) FROM table_name_21 WHERE number__map_ < 13 AND area_in_km² = 11.1 | Which Density per km² is the lowest one that has a Number (map) smaller than 13, and an Area in km² of 11.1? | CREATE TABLE table_name_21 (density_per_km² INTEGER, number__map_ VARCHAR, area_in_km² VARCHAR) |
SELECT city FROM table_name_64 WHERE iata = "nkg" | Which city's IATA is nkg? | CREATE TABLE table_name_64 (city VARCHAR, iata VARCHAR) |
SELECT AVG(games) FROM table_name_76 WHERE rank > 2 AND team = "olympiacos" AND points > 113 | What is the game average that has a rank larger than 2 with team Olympiacos and points larger than 113? | CREATE TABLE table_name_76 (games INTEGER, points VARCHAR, rank VARCHAR, team VARCHAR) |
SELECT nation FROM table_name_91 WHERE gold = 0 AND bronze < "6" AND rank = "6" | Which Nation has a Gold of 0, and a Bronze smaller than 6, and a Rank of 6? | CREATE TABLE table_name_91 (nation VARCHAR, rank VARCHAR, gold VARCHAR, bronze VARCHAR) |
SELECT tries_against FROM table_name_43 WHERE losing_bonus = "7" | What Tries against has a Losing bonus of 7? | CREATE TABLE table_name_43 (tries_against VARCHAR, losing_bonus VARCHAR) |
SELECT MAX(number_at_pyewipe) FROM table_15608800_2 | Name the most number of pyewipe | CREATE TABLE table_15608800_2 (number_at_pyewipe INTEGER) |
SELECT MAX(grid) FROM table_name_61 WHERE manufacturer = "honda" AND time = "+1:38.407" | What is Honda's highest grid with a time of +1:38.407? | CREATE TABLE table_name_61 (grid INTEGER, manufacturer VARCHAR, time VARCHAR) |
SELECT SUM(points) FROM table_name_25 WHERE player = "shawn mceachern" AND goals < 79 | How many points does Shawn Mceachern with less than 79 goals? | CREATE TABLE table_name_25 (points INTEGER, player VARCHAR, goals VARCHAR) |
SELECT rank FROM table_name_43 WHERE publication = "the observer music monthly" | What rank is the publication the observer music monthly? | CREATE TABLE table_name_43 (rank VARCHAR, publication VARCHAR) |
SELECT countries_visited FROM table_15211468_1 WHERE presenter = "Brian B. Thompson" | What countries are visited in the episode presented by Brian B. Thompson? | CREATE TABLE table_15211468_1 (countries_visited VARCHAR, presenter VARCHAR) |
SELECT opponent_in_the_final FROM table_name_42 WHERE tournament = "blenheim" | Who is the opponent in the final of the Tournament of Blenheim? | CREATE TABLE table_name_42 (opponent_in_the_final VARCHAR, tournament VARCHAR) |
SELECT total FROM table_25831483_1 WHERE actor_actress = "Pam Ferris" | How many total are there when actor/actress is pam ferris? | CREATE TABLE table_25831483_1 (total VARCHAR, actor_actress VARCHAR) |
SELECT away_team AS score FROM table_name_4 WHERE home_team = "geelong" | What was the score for the away team when geelong was the home team? | CREATE TABLE table_name_4 (away_team VARCHAR, home_team VARCHAR) |
SELECT bhofen_number1__rk_ FROM table_14948647_1 WHERE bhofen_number2__rk_ = "231.2 (8)" | What was the Bhofen #1 score and rank for the player whose Bhofen #2 score and rank was 231.2 (8)? | CREATE TABLE table_14948647_1 (bhofen_number1__rk_ VARCHAR, bhofen_number2__rk_ VARCHAR) |
SELECT COUNT(subject) FROM table_1216675_1 WHERE pinyin = "Shixun" | How many subjects have the pinyin shixun? | CREATE TABLE table_1216675_1 (subject VARCHAR, pinyin VARCHAR) |
SELECT COUNT(city) FROM table_13463790_2 WHERE name = "Providence Tower" | how many city with name being providence tower | CREATE TABLE table_13463790_2 (city VARCHAR, name VARCHAR) |
SELECT country FROM table_name_45 WHERE place = "t3" | Name the country for t3 place | CREATE TABLE table_name_45 (country VARCHAR, place VARCHAR) |
SELECT name FROM table_name_83 WHERE nat = "sco" AND transfer_window = "summer" AND moving_to = "greenock morton" | What is the name of the player who is Sco and moving to greenock morton in the summer? | CREATE TABLE table_name_83 (name VARCHAR, moving_to VARCHAR, nat VARCHAR, transfer_window VARCHAR) |
SELECT SUM(markatal) FROM table_name_47 WHERE inhabitants_per_km² < 13 AND area__in_km²_ = 27 | What is the sum of Markatal, when Inhabitants Per Km² is less than 13, and when Area (in Km²) is 27? | CREATE TABLE table_name_47 (markatal INTEGER, inhabitants_per_km² VARCHAR, area__in_km²_ VARCHAR) |
SELECT margin_of_victory FROM table_name_16 WHERE runner_s__up = "jack nicklaus" | By how many strokes did Lema beat Jack Nicklaus? | CREATE TABLE table_name_16 (margin_of_victory VARCHAR, runner_s__up VARCHAR) |
SELECT nba_draft FROM table_name_10 WHERE school = "bishop o'connell high school" | What is the NBA Draft for the School Bishop O'Connell High School? | CREATE TABLE table_name_10 (nba_draft VARCHAR, school VARCHAR) |
SELECT high_assists FROM table_name_61 WHERE game > 46 | What high assists have a game greater than 46? | CREATE TABLE table_name_61 (high_assists VARCHAR, game INTEGER) |
SELECT player FROM table_name_83 WHERE nationality = "united states" AND years_for_grizzlies = "1997-1998" | What player from the United States played for the Grizzlies from 1997-1998? | CREATE TABLE table_name_83 (player VARCHAR, nationality VARCHAR, years_for_grizzlies VARCHAR) |
SELECT sanskrit FROM table_name_98 WHERE greek = "λέων" | What is the Sanskrit for the Greek word λέων? | CREATE TABLE table_name_98 (sanskrit VARCHAR, greek VARCHAR) |
SELECT game_site FROM table_17781394_1 WHERE date = "November 1, 1964" | On November 1, 1964, where was the game site? | CREATE TABLE table_17781394_1 (game_site VARCHAR, date VARCHAR) |
SELECT area_km² FROM table_name_92 WHERE density__hab_km²_ = "8,546.1" | What is the area of the city with a density of 8,546.1? | CREATE TABLE table_name_92 (area_km² VARCHAR, density__hab_km²_ VARCHAR) |
SELECT career_sr FROM table_name_16 WHERE 1985 = "grand slams" | What is the career SR when 1985 is Grand Slams? | CREATE TABLE table_name_16 (career_sr VARCHAR) |
SELECT campusfee FROM campuses AS T1 JOIN csu_fees AS T2 ON T1.id = t2.campus WHERE t1.campus = "San Jose State University" AND T2.year = 1996 | What is the campus fee of "San Jose State University" in year 1996? | CREATE TABLE csu_fees (year VARCHAR); CREATE TABLE campuses (id VARCHAR) |
SELECT home_team AS score FROM table_name_2 WHERE venue = "lake oval" | What did the home team score at Lake Oval? | CREATE TABLE table_name_2 (home_team VARCHAR, venue VARCHAR) |
SELECT COUNT(position) FROM table_2181798_1 WHERE avg_start = "23.7" | Name the position for 23.7 avg start | CREATE TABLE table_2181798_1 (position VARCHAR, avg_start VARCHAR) |
SELECT record FROM table_17340355_9 WHERE date = "March 15" | After the March 15 game, what was the team's record? | CREATE TABLE table_17340355_9 (record VARCHAR, date VARCHAR) |
SELECT constructor FROM table_name_9 WHERE laps > 50 AND grid = 7 | What is the name of the constructor who has more than 50 laps and a grid of 7? | CREATE TABLE table_name_9 (constructor VARCHAR, laps VARCHAR, grid VARCHAR) |
SELECT COUNT(year_joined) FROM table_name_68 WHERE size < 417 AND ihsaa_class = "a" AND school = "jac-cen-del" | How many years Joined have a Size smaller than 417, and an IHSAA Class of A, and a School of jac-cen-del? | CREATE TABLE table_name_68 (year_joined VARCHAR, school VARCHAR, size VARCHAR, ihsaa_class VARCHAR) |
SELECT chassis FROM table_name_92 WHERE points < 9 AND entrant = "equipe rosier" | What chassis has smaller than 9 points by Equipe Rosier? | CREATE TABLE table_name_92 (chassis VARCHAR, points VARCHAR, entrant VARCHAR) |
SELECT Advisor, COUNT(*) FROM STUDENT GROUP BY Advisor | For each advisor, report the total number of students advised by him or her. | CREATE TABLE STUDENT (Advisor VARCHAR) |
SELECT COUNT(laps) FROM table_name_36 WHERE driver = "giancarlo fisichella" AND grid > 15 | How many laps did Giancarlo Fisichella do with a grid larger than 15? | CREATE TABLE table_name_36 (laps VARCHAR, driver VARCHAR, grid VARCHAR) |
SELECT player FROM table_name_9 WHERE pick = "145" | Tell me the player for pick of 145 | CREATE TABLE table_name_9 (player VARCHAR, pick VARCHAR) |
SELECT avg_finish FROM table_2182562_1 WHERE winnings = "$71,200" | What is the average finish when winnings equals $71,200? | CREATE TABLE table_2182562_1 (avg_finish VARCHAR, winnings VARCHAR) |
SELECT population_in_1000__1931_ FROM table_11654169_1 WHERE voivodeship_separate_city = "pomorskie" | What is the population in the city of Pomorskie? | CREATE TABLE table_11654169_1 (population_in_1000__1931_ VARCHAR, voivodeship_separate_city VARCHAR) |
SELECT nation___athlete_s_ FROM table_name_12 WHERE sport = "luge - men's singles" AND record = "track" | What is the Nation - athlete(s), when the Sport is luge - men's singles, and when the Record is, "track"? | CREATE TABLE table_name_12 (nation___athlete_s_ VARCHAR, sport VARCHAR, record VARCHAR) |
SELECT location FROM table_name_5 WHERE event = "fury fc 4: high voltage" | Where was the Fury FC 4: High Voltage event held? | CREATE TABLE table_name_5 (location VARCHAR, event VARCHAR) |
SELECT COUNT(location_attendance) FROM table_11959669_7 WHERE date = "March 2" | How many numbers were listed under attendance for March 2? | CREATE TABLE table_11959669_7 (location_attendance VARCHAR, date VARCHAR) |
SELECT order_and_title FROM table_name_78 WHERE elevated = "may 1262" AND elector = "guillaume de bray" | With a date of May 1262 under elevated, Guillaume de Bray as the elector, what is the order and title? | CREATE TABLE table_name_78 (order_and_title VARCHAR, elevated VARCHAR, elector VARCHAR) |
SELECT MAX(home_run) FROM table_name_82 WHERE opposing_pitcher = "efrain valdez" | When Efrain Valdez was pitching, what was the highest home run? | CREATE TABLE table_name_82 (home_run INTEGER, opposing_pitcher VARCHAR) |
SELECT model FROM table_17157367_1 WHERE method = "HA" | what is the model where the method is ha? | CREATE TABLE table_17157367_1 (model VARCHAR, method VARCHAR) |
SELECT round5 FROM table_16815824_1 WHERE total_points = 212 | What was the round 5 score if the team's total points where 212? | CREATE TABLE table_16815824_1 (round5 VARCHAR, total_points VARCHAR) |
SELECT name FROM table_name_54 WHERE position = "3b" | what is the name of the player that played position 3b? | CREATE TABLE table_name_54 (name VARCHAR, position VARCHAR) |
SELECT COUNT(number_of_troops) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = "2.45" | Name the number of troops for troops per $1 billion being 2.45 | CREATE TABLE table_30108346_1 (number_of_troops VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR) |
SELECT venue FROM table_14981555_1 WHERE distance = "1400 m" | Where was the 1400 m held? | CREATE TABLE table_14981555_1 (venue VARCHAR, distance VARCHAR) |
SELECT result FROM table_name_30 WHERE venue = "queen's park oval" | What was the result of the game hosted at Queen's Park Oval? | CREATE TABLE table_name_30 (result VARCHAR, venue VARCHAR) |
SELECT COUNT(reason_for_change) FROM table_2192067_4 WHERE date_successor_seated = "June 8, 1876" | what is the total number of reasons for change where the date the successor was seated is june 8, 1876? | CREATE TABLE table_2192067_4 (reason_for_change VARCHAR, date_successor_seated VARCHAR) |
SELECT opposing_team FROM table_name_97 WHERE against = 3 AND date = "11 february 1950" | Which Opposing Team has an Against of 3, and a Date of 11 february 1950? | CREATE TABLE table_name_97 (opposing_team VARCHAR, against VARCHAR, date VARCHAR) |
SELECT unwto_region FROM table_name_24 WHERE country = "italy" | What is Italy's UNWTO region? | CREATE TABLE table_name_24 (unwto_region VARCHAR, country VARCHAR) |
SELECT MIN(grid) FROM table_name_96 WHERE points > 11 AND driver = "sébastien bourdais" AND laps < 67 | Tell me the least Grid with points more than 11 and drivers being sébastien bourdais with laps less than 67 | CREATE TABLE table_name_96 (grid INTEGER, laps VARCHAR, points VARCHAR, driver VARCHAR) |
SELECT MIN(match) FROM table_name_99 WHERE lost > 3 AND team = "kolejarz rawicz" | What is the lowest match that has a lost greater than 3, and kolejarz rawicz as the team? | CREATE TABLE table_name_99 (match INTEGER, lost VARCHAR, team VARCHAR) |
SELECT SUM(rank) FROM table_name_55 WHERE time = "2:25.86" AND lane < 7 | What was the rank of the person who swam in Lane 7 with a time of 2:25.86? | CREATE TABLE table_name_55 (rank INTEGER, time VARCHAR, lane VARCHAR) |
SELECT location FROM table_name_86 WHERE opponent = "mario rinaldi" | What is Location, when Opponent is "Mario Rinaldi"? | CREATE TABLE table_name_86 (location VARCHAR, opponent VARCHAR) |
SELECT tournament FROM table_name_21 WHERE winning_score = –10(68 - 71 - 69 - 70 = 278) | In what tournament was the winning score –10 (68-71-69-70=278)? | CREATE TABLE table_name_21 (tournament VARCHAR, winning_score VARCHAR) |
SELECT COUNT(opponent) FROM table_21378160_2 WHERE date = "17/05/2009" | How many opponents did they play on 17/05/2009? | CREATE TABLE table_21378160_2 (opponent VARCHAR, date VARCHAR) |
SELECT MAX(year_)[a_] FROM table_name_3 WHERE position = "linebacker" AND college = "georgia tech" | What is the most recent year georgia tech chose a linebacker? | CREATE TABLE table_name_3 (a_ VARCHAR, year_ INTEGER, position VARCHAR, college VARCHAR) |
SELECT MAX(crowd) FROM table_name_52 WHERE venue = "lake oval" | What is the largest crowd at Lake Oval? | CREATE TABLE table_name_52 (crowd INTEGER, venue VARCHAR) |
SELECT T3.booking_start_date, T3.booking_end_date FROM Products_for_hire AS T1 JOIN products_booked AS T2 ON T1.product_id = T2.product_id JOIN bookings AS T3 ON T2.booking_id = T3.booking_id WHERE T1.product_name = 'Book collection A' | What are the start date and end date of the booking that has booked the product named 'Book collection A'? | CREATE TABLE bookings (booking_start_date VARCHAR, booking_end_date VARCHAR, booking_id VARCHAR); CREATE TABLE products_booked (product_id VARCHAR, booking_id VARCHAR); CREATE TABLE Products_for_hire (product_id VARCHAR, product_name VARCHAR) |
SELECT number_of_jews__wjc_ FROM table_name_96 WHERE rank___wjc__ = 6 | What was the number of WJC Jews with a WJC rank of 6? | CREATE TABLE table_name_96 (number_of_jews__wjc_ VARCHAR, rank___wjc__ VARCHAR) |
SELECT MAX(rank) FROM table_name_97 WHERE location = "dresden" AND fastest_time__s_ < 10.88 | what is the highest rank in dresden with a time faster than 10.88? | CREATE TABLE table_name_97 (rank INTEGER, location VARCHAR, fastest_time__s_ VARCHAR) |
SELECT character FROM table_name_1 WHERE result = "won" AND year > 2003 | Which characters after 2003 won? | CREATE TABLE table_name_1 (character VARCHAR, result VARCHAR, year VARCHAR) |
SELECT constructor FROM table_name_67 WHERE circuit = "oulton park" AND winning_driver = "john surtees" | Who is the constructor of John Surtees's Oulton Park circuit car? | CREATE TABLE table_name_67 (constructor VARCHAR, circuit VARCHAR, winning_driver VARCHAR) |
SELECT score_in_final FROM table_name_21 WHERE date = "february 24, 2002" | What was the Final Score on February 24, 2002? | CREATE TABLE table_name_21 (score_in_final VARCHAR, date VARCHAR) |
SELECT COUNT(round) FROM table_name_51 WHERE position = "wide receiver" AND college = "kent state" | Name the total number of round for wide receiver for kent state | CREATE TABLE table_name_51 (round VARCHAR, position VARCHAR, college VARCHAR) |
SELECT length FROM table_name_38 WHERE numbers = "2600-2825 (223 buses)" | For numbers of 2600-2825 (223 buses), what is the length? | CREATE TABLE table_name_38 (length VARCHAR, numbers VARCHAR) |
SELECT attendance FROM table_name_32 WHERE visitor = "san jose" AND date = "may 4" | What is the attendance at the game where San Jose was the visitor on May 4? | CREATE TABLE table_name_32 (attendance VARCHAR, visitor VARCHAR, date VARCHAR) |
SELECT T1.student_id, T2.first_name FROM Student_Addresses AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY AVG(monthly_rental) DESC LIMIT 1 | What are the id and first name of the student whose addresses have the highest average monthly rental? | CREATE TABLE Students (first_name VARCHAR, student_id VARCHAR); CREATE TABLE Student_Addresses (student_id VARCHAR) |
SELECT speed FROM table_name_41 WHERE rider = "andy reynolds" | Name the speed for andy reynolds | CREATE TABLE table_name_41 (speed VARCHAR, rider VARCHAR) |
SELECT to_par FROM table_name_28 WHERE total > 283 AND finish = "t12" | Which To par has a Total larger than 283, and a Finish of t12? | CREATE TABLE table_name_28 (to_par VARCHAR, total VARCHAR, finish VARCHAR) |
SELECT original_air_date FROM table_name_87 WHERE written_by = "boyd hale" AND title = "julie gets validated" | When did Boyd Hale's Julie gets Validated originally air? | CREATE TABLE table_name_87 (original_air_date VARCHAR, written_by VARCHAR, title VARCHAR) |
SELECT COUNT(player) FROM table_12962773_5 WHERE no = 12 | how many player with no being 12 | CREATE TABLE table_12962773_5 (player VARCHAR, no VARCHAR) |
SELECT directed_by FROM table_14637853_3 WHERE original_air_date = "November18,1995" | who directed with original air date being november18,1995 | CREATE TABLE table_14637853_3 (directed_by VARCHAR, original_air_date VARCHAR) |
SELECT latitude FROM table_16768245_5 WHERE name = "Philae Sulcus" | Philae Sulcus has a latitude of what? | CREATE TABLE table_16768245_5 (latitude VARCHAR, name VARCHAR) |
SELECT dance_styles FROM table_name_54 WHERE draw < 15 AND points = 18 | Which dance style had a draw smaller than 15 and 18 points? | CREATE TABLE table_name_54 (dance_styles VARCHAR, draw VARCHAR, points VARCHAR) |
SELECT loss FROM table_name_15 WHERE record = "21-13" | What was the loss of the game when the record was 21-13? | CREATE TABLE table_name_15 (loss VARCHAR, record VARCHAR) |
SELECT result FROM table_name_81 WHERE captain_2 = "louis burger" | Which Result has a Captain 2 of louis burger? | CREATE TABLE table_name_81 (result VARCHAR, captain_2 VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.