answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT decision FROM table_name_56 WHERE visitor = "carolina" | Which team won when the visitor was Carolina? | CREATE TABLE table_name_56 (decision VARCHAR, visitor VARCHAR) |
SELECT bulls FROM table_name_58 WHERE oxen > 113.8 AND sheep_and_goats > 4533.4 AND cows < 3987 AND total_horses > 5056.5 | What is the number of bulls that has oxen larger than 113.8, and a sheep and goats larger than 4533.4, and a cows smaller than 3987, and a total horses larger than 5056.5? | CREATE TABLE table_name_58 (bulls VARCHAR, total_horses VARCHAR, cows VARCHAR, oxen VARCHAR, sheep_and_goats VARCHAR) |
SELECT COUNT(draws) FROM table_name_74 WHERE played < 30 | What is the number of draws when played is smaller than 30? | CREATE TABLE table_name_74 (draws VARCHAR, played INTEGER) |
SELECT MIN(year) FROM table_name_50 WHERE event = "wimbledon" AND opponent = "zheng jie" | what's the earliest year that the wimbledon opponent was zheng jie? | CREATE TABLE table_name_50 (year INTEGER, event VARCHAR, opponent VARCHAR) |
SELECT affiliation FROM table_28211213_1 WHERE institution = "Davenport University" | What is the affiliation of Davenport University? | CREATE TABLE table_28211213_1 (affiliation VARCHAR, institution VARCHAR) |
SELECT college_junior_club_team FROM table_1213511_7 WHERE nationality = "Canada" AND nhl_team = "Minnesota North Stars" | Which college/junior/club teams nationality is canada and nhl team is minnesota north stars | CREATE TABLE table_1213511_7 (college_junior_club_team VARCHAR, nationality VARCHAR, nhl_team VARCHAR) |
SELECT region FROM table_name_5 WHERE coach = "trevor gleeson" | Which region is Coach Trevor Gleeson in? | CREATE TABLE table_name_5 (region VARCHAR, coach VARCHAR) |
SELECT score FROM table_name_9 WHERE comp = "og" | What is the Score of the Shooter with a Comp of OG? | CREATE TABLE table_name_9 (score VARCHAR, comp VARCHAR) |
SELECT AVG(draws) FROM table_name_13 WHERE wins > 0 | What is the average number of draws for the team that had more than 0 wins? | CREATE TABLE table_name_13 (draws INTEGER, wins INTEGER) |
SELECT surface FROM table_name_3 WHERE date = "12 september 2006" | Name the surface for 12 september 2006 | CREATE TABLE table_name_3 (surface VARCHAR, date VARCHAR) |
SELECT MAX(seed) FROM table_24431264_16 WHERE player = "David Ferrer" | What was david ferrer seeded? | CREATE TABLE table_24431264_16 (seed INTEGER, player VARCHAR) |
SELECT total_tenure_rank FROM table_name_6 WHERE uninterrupted_time = "49 years, 349 days" | What is the total tenure rank of the person with an uninterrupted time of 49 years, 349 days? | CREATE TABLE table_name_6 (total_tenure_rank VARCHAR, uninterrupted_time VARCHAR) |
SELECT position FROM table_name_18 WHERE round = 3 | What position did the player who was picked in round 3 play? | CREATE TABLE table_name_18 (position VARCHAR, round VARCHAR) |
SELECT incumbent FROM table_2668374_18 WHERE party = "Federalist" AND first_elected = "1803" | What incumbent was a federalist that was first elected in 1803? | CREATE TABLE table_2668374_18 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR) |
SELECT Name FROM singer WHERE NOT Singer_ID IN (SELECT Singer_ID FROM song) | List the name of singers that do not have any song. | CREATE TABLE song (Name VARCHAR, Singer_ID VARCHAR); CREATE TABLE singer (Name VARCHAR, Singer_ID VARCHAR) |
SELECT opponent FROM table_17120964_9 WHERE date = "21st" | who was the opponent where the date was the 21st? | CREATE TABLE table_17120964_9 (opponent VARCHAR, date VARCHAR) |
SELECT score FROM table_name_85 WHERE attendance = "25,034" | What is the score of the game attended by 25,034? | CREATE TABLE table_name_85 (score VARCHAR, attendance VARCHAR) |
SELECT name_of_mill FROM table_name_24 WHERE type = "grondzeiler" | What is the Name of the Grondzeiler Mill? | CREATE TABLE table_name_24 (name_of_mill VARCHAR, type VARCHAR) |
SELECT type FROM table_name_13 WHERE date = "unknown" AND satellite = "gps iif-10" | What is the type of the gps iif-10 satellite with an unknown date? | CREATE TABLE table_name_13 (type VARCHAR, date VARCHAR, satellite VARCHAR) |
SELECT film_title_used_in_nomination FROM table_name_43 WHERE language = "spanish" AND original_title = "traffic" | What title was used in the nomination of the Spanish language film Traffic? | CREATE TABLE table_name_43 (film_title_used_in_nomination VARCHAR, language VARCHAR, original_title VARCHAR) |
SELECT team FROM table_27733258_11 WHERE date = "April 1" | What company plays on april 1? | CREATE TABLE table_27733258_11 (team VARCHAR, date VARCHAR) |
SELECT AVG(pct) FROM table_name_45 WHERE pts < 9 AND wins > 1 | What is the average PCT when it has a PTS smaller than 9 a wins larger than 1? | CREATE TABLE table_name_45 (pct INTEGER, pts VARCHAR, wins VARCHAR) |
SELECT chinese__traditional_ FROM table_name_54 WHERE label = "rock records" AND english_title = "grown up overnight" | What traditional Chinese name would the Rock Records release Grown up Overnight be given? | CREATE TABLE table_name_54 (chinese__traditional_ VARCHAR, label VARCHAR, english_title VARCHAR) |
SELECT name FROM table_name_72 WHERE winning_driver = "bobby unser" | What race did Bobby Unser win? | CREATE TABLE table_name_72 (name VARCHAR, winning_driver VARCHAR) |
SELECT directed_by FROM table_23399481_2 WHERE us_viewers__in_millions_ = "2.14" | If the amount of U.S. viewers is 2.14 million, who was the episode directed by? | CREATE TABLE table_23399481_2 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR) |
SELECT MAX(pick) FROM table_name_29 WHERE school = "naperville central high school" | Which is the biggest pick for Naperville Central High School? | CREATE TABLE table_name_29 (pick INTEGER, school VARCHAR) |
SELECT COUNT(effective_exhaust_velocity__m_s_) FROM table_15944_5 WHERE scenario = "Space shuttle vacuum" | What is the effective exhaust velocity in a Space Shuttle Vacuum? | CREATE TABLE table_15944_5 (effective_exhaust_velocity__m_s_ VARCHAR, scenario VARCHAR) |
SELECT MAX(grid) FROM table_name_44 WHERE laps < 39 AND driver = "juan manuel fangio" | When the driver is Juan Manuel Fangio and laps is less than 39, what is the highest grid? | CREATE TABLE table_name_44 (grid INTEGER, laps VARCHAR, driver VARCHAR) |
SELECT COUNT(years_at_school) FROM table_28744929_2 WHERE team = "Maryland" | How many values were used to express the years at school of the Maryland team? | CREATE TABLE table_28744929_2 (years_at_school VARCHAR, team VARCHAR) |
SELECT COUNT(ends_won) FROM table_name_92 WHERE province = "saskatchewan" AND stolen_ends < 6 | What is the total number of Ends Won, when Province is "Saskatchewan", and when Stolen Ends is less than 6? | CREATE TABLE table_name_92 (ends_won VARCHAR, province VARCHAR, stolen_ends VARCHAR) |
SELECT MIN(losses) FROM table_name_38 WHERE scored > 13 AND draws > 7 | What are the lowest losses with more than 13 scored, and more than 7 draws? | CREATE TABLE table_name_38 (losses INTEGER, scored VARCHAR, draws VARCHAR) |
SELECT hometown FROM table_11677100_17 WHERE player = "Bubba Starling" | What is the hometown of Bubba Starling? | CREATE TABLE table_11677100_17 (hometown VARCHAR, player VARCHAR) |
SELECT print_resolution__dpi__resolution_is_given_in_dots_per_inch__dpi_ FROM table_10528691_4 WHERE introduction = "December 2002" | What is the print resolution (FPI) for December 2002? | CREATE TABLE table_10528691_4 (print_resolution__dpi__resolution_is_given_in_dots_per_inch__dpi_ VARCHAR, introduction VARCHAR) |
SELECT score FROM table_name_19 WHERE attendance = "33,531" | What is the score of the game that 33,531 people went too? | CREATE TABLE table_name_19 (score VARCHAR, attendance VARCHAR) |
SELECT SUM(wins) FROM table_name_43 WHERE rank > 5 | What number of wins was ranked higher than 5? | CREATE TABLE table_name_43 (wins INTEGER, rank INTEGER) |
SELECT SUM(laps) FROM table_name_76 WHERE driver = "satrio hermanto" | How many Laps have a Driver of satrio hermanto? | CREATE TABLE table_name_76 (laps INTEGER, driver VARCHAR) |
SELECT COUNT(country) FROM table_26166836_2 WHERE road_race = "Ottawa Marathon" | What's the whole range of united states where road race is ottawa marathon | CREATE TABLE table_26166836_2 (country VARCHAR, road_race VARCHAR) |
SELECT episode__number FROM table_20205538_4 WHERE series__number = 17 | What is the episode number for series 17? | CREATE TABLE table_20205538_4 (episode__number VARCHAR, series__number VARCHAR) |
SELECT COUNT(district_home) FROM table_2841865_2 WHERE congress = "87th" | How many entries for district home are listed for the 87th congress? | CREATE TABLE table_2841865_2 (district_home VARCHAR, congress VARCHAR) |
SELECT COUNT(directed_by) FROM table_29063233_1 WHERE uk_viewers__million_ = "6.16" | How many directed by entries have UK viewership over 6.16 million? | CREATE TABLE table_29063233_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR) |
SELECT flight_down FROM table_245801_1 WHERE crew = "Vladimir Vasyutin , Alexander Volkov" | Name the flight down for vladimir vasyutin , alexander volkov | CREATE TABLE table_245801_1 (flight_down VARCHAR, crew VARCHAR) |
SELECT MAX(rank) FROM table_name_37 WHERE bronze < 1 AND silver = 1 AND total > 1 | Which of the largest ranks has a bronze number less than 1, a silver of 1, and a total that is more than 1? | CREATE TABLE table_name_37 (rank INTEGER, total VARCHAR, bronze VARCHAR, silver VARCHAR) |
SELECT score FROM table_name_12 WHERE time = "18:00" AND set_3 = "13–25" | What is the score with a time at 18:00 and a score for set 3 of 13–25? | CREATE TABLE table_name_12 (score VARCHAR, time VARCHAR, set_3 VARCHAR) |
SELECT r1b1a2__r_m269_ FROM table_21481509_4 WHERE r1b1c__r_v88_ = "77.8%" | What percentage is listed in column r1b1a2 (r-m269) for the 77.8% r1b1c (r-v88)? | CREATE TABLE table_21481509_4 (r1b1a2__r_m269_ VARCHAR, r1b1c__r_v88_ VARCHAR) |
SELECT japanese_title FROM table_name_44 WHERE disc < 12 AND artist = "kōzō murashita" | Which Japanese title has a Disc smaller than 12, and an Artist of kōzō murashita? | CREATE TABLE table_name_44 (japanese_title VARCHAR, disc VARCHAR, artist VARCHAR) |
SELECT marriage FROM table_name_67 WHERE death = "29 december 1829" | What is the marriage date for the Habsburg-Lorraine house member who died 29 December 1829? | CREATE TABLE table_name_67 (marriage VARCHAR, death VARCHAR) |
SELECT game FROM table_name_60 WHERE location_attendance = "los angeles memorial sports arena" | What game was located at the Los Angeles Memorial Sports Arena? | CREATE TABLE table_name_60 (game VARCHAR, location_attendance VARCHAR) |
SELECT 2 AS nd__m_ FROM table_14407512_24 WHERE name = "Gregor Schlierenzauer" | Name the 2nd m for gregor schlierenzauer | CREATE TABLE table_14407512_24 (name VARCHAR) |
SELECT SUM(wins) FROM table_name_2 WHERE ties < 2 AND goals_against = 18 AND losses < 2 | What is the total wins with less than 2 ties, 18 goals, and less than 2 losses? | CREATE TABLE table_name_2 (wins INTEGER, losses VARCHAR, ties VARCHAR, goals_against VARCHAR) |
SELECT first_edition FROM table_name_60 WHERE pages = "264" AND isbn = "978-0785111832" | Which first edition has 264 pages and the ISBN of 978-0785111832? | CREATE TABLE table_name_60 (first_edition VARCHAR, pages VARCHAR, isbn VARCHAR) |
SELECT number FROM table_name_7 WHERE works_number < 1563 AND builder = "hinkley locomotive works" | Hinkley Locomotive Works is listed as what number as it has a works number smaller than 1563? | CREATE TABLE table_name_7 (number VARCHAR, works_number VARCHAR, builder VARCHAR) |
SELECT placings FROM table_name_72 WHERE total > 131.26 AND name = "jacqueline du bief" | How many placings did Jacqueline du Bief earn where her total score is greater than 131.26? | CREATE TABLE table_name_72 (placings VARCHAR, total VARCHAR, name VARCHAR) |
SELECT T1.professional_id, T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING COUNT(*) >= 2 | Which professionals have done at least two types of treatments? List the professional id and cell phone. | CREATE TABLE Professionals (professional_id VARCHAR, cell_number VARCHAR); CREATE TABLE Treatments (professional_id VARCHAR) |
SELECT AVG(price_range) FROM HOTELS WHERE star_rating_code = "5" AND pets_allowed_yn = 1 | Show the average price range of hotels that have 5 star ratings and allow pets. | CREATE TABLE HOTELS (price_range INTEGER, star_rating_code VARCHAR, pets_allowed_yn VARCHAR) |
SELECT ceremony FROM table_name_45 WHERE outcome = "nominated" AND nominee = "leela chitnis" | What ceremony was leela chitnis nominated at? | CREATE TABLE table_name_45 (ceremony VARCHAR, outcome VARCHAR, nominee VARCHAR) |
SELECT customer_id, COUNT(*) FROM Customers_cards GROUP BY customer_id | Show all customer ids and the number of cards owned by each customer. | CREATE TABLE Customers_cards (customer_id VARCHAR) |
SELECT AVG(to_par) FROM table_name_58 WHERE score = 70 - 71 = 141 | What is the To par of the Player with a Score of 70-71=141? | CREATE TABLE table_name_58 (to_par INTEGER, score VARCHAR) |
SELECT COUNT(producer__s_) FROM table_28232443_1 WHERE song__s_ = "Calling Out to Marlboro" | how many producers are responsible for the song 'calling out to marlboro? | CREATE TABLE table_28232443_1 (producer__s_ VARCHAR, song__s_ VARCHAR) |
SELECT opponent FROM table_name_78 WHERE round > 4 AND event = "draka v" | Which Opponent has a Round larger than 4 and the Event, Draka V? | CREATE TABLE table_name_78 (opponent VARCHAR, round VARCHAR, event VARCHAR) |
SELECT MIN(size) FROM table_name_93 WHERE mascot = "titans" | What is the lowest size of the school with titans as the mascot? | CREATE TABLE table_name_93 (size INTEGER, mascot VARCHAR) |
SELECT COUNT(attendance) FROM table_name_34 WHERE games > 15 AND sellouts > 8 AND season = "2011-12" | How many attendance numbers had more than 15 games, and sellouts of more than 8 in the 2011-12 season? | CREATE TABLE table_name_34 (attendance VARCHAR, season VARCHAR, games VARCHAR, sellouts VARCHAR) |
SELECT AVG(money___) AS $__ FROM table_name_64 WHERE place = "t4" AND score = 71 - 66 - 74 - 67 = 278 | What is the Money of the T4 Place Player with a Score of 71-66-74-67=278? | CREATE TABLE table_name_64 (money___ INTEGER, place VARCHAR, score VARCHAR) |
SELECT original_artist FROM table_name_88 WHERE week__number = "top 9" | What is the original artist of top 9 as the week number? | CREATE TABLE table_name_88 (original_artist VARCHAR, week__number VARCHAR) |
SELECT model FROM table_name_6 WHERE number_of_cpus = "1–10" AND performance__mips_ = "49–447" | Which Model has a Number of CPUs of 1–10, and a Performance (MIPS) of 49–447? | CREATE TABLE table_name_6 (model VARCHAR, number_of_cpus VARCHAR, performance__mips_ VARCHAR) |
SELECT AVG(week) FROM table_name_99 WHERE result = "l 31-27" AND attendance < 85 OFFSET 865 | Tell me the week for result of l 31-27, and an Attendance smaller than 85,865 | CREATE TABLE table_name_99 (week INTEGER, result VARCHAR, attendance VARCHAR) |
SELECT COUNT(world_record) FROM table_24062944_2 WHERE kenenisa_bekele___eth__ = "Marílson Gomes dos Santos ( BRA )" | How many times is kenenisa bekele ( eth ) is marílson gomes dos santos ( bra )? | CREATE TABLE table_24062944_2 (world_record VARCHAR, kenenisa_bekele___eth__ VARCHAR) |
SELECT SUM(rank) FROM table_name_6 WHERE notes = "r" AND country = "australia" | What is the sum of the rank of the rower with an r note from Australia? | CREATE TABLE table_name_6 (rank INTEGER, notes VARCHAR, country VARCHAR) |
SELECT fuel__trans FROM table_name_15 WHERE colour = "grey & red" | What sort of Fuel/Trans does the Grey & Red locomotive have? | CREATE TABLE table_name_15 (fuel__trans VARCHAR, colour VARCHAR) |
SELECT eliminated AS by FROM table_name_15 WHERE time = "12:38" | What is the number eliminated for the person with a time of 12:38? | CREATE TABLE table_name_15 (eliminated VARCHAR, time VARCHAR) |
SELECT COUNT(party) FROM table_2668347_14 WHERE incumbent = "John B. Yates" | how many times was the incumbent is john b. yates? | CREATE TABLE table_2668347_14 (party VARCHAR, incumbent VARCHAR) |
SELECT MAX(pa) FROM table_17012578_6 | What is the top Points Allowed? | CREATE TABLE table_17012578_6 (pa INTEGER) |
SELECT SUM(points) FROM table_name_84 WHERE nation = "east germany" AND places = "88" | What is the number of points for east germany, and a Places of 88? | CREATE TABLE table_name_84 (points INTEGER, nation VARCHAR, places VARCHAR) |
SELECT purse FROM table_name_33 WHERE date = "january 3, 2010" | What is the Purse on January 3, 2010? | CREATE TABLE table_name_33 (purse VARCHAR, date VARCHAR) |
SELECT SUM(gold) FROM table_name_17 WHERE rank = "7" AND silver < 0 | When rank is 7 and silver is less than 0, what is the total gold? | CREATE TABLE table_name_17 (gold INTEGER, rank VARCHAR, silver VARCHAR) |
SELECT finish FROM table_name_25 WHERE team = "platense municipal zacatecoluca" AND tournament = "1st division el salvador" | During the Tournament of 1st Division El Salvador, what was the Finish for the Team of Platense Municipal Zacatecoluca? | CREATE TABLE table_name_25 (finish VARCHAR, team VARCHAR, tournament VARCHAR) |
SELECT week FROM table_name_57 WHERE tournament = "cincinnati" | What week was the tournament at Cincinnati? | CREATE TABLE table_name_57 (week VARCHAR, tournament VARCHAR) |
SELECT LANGUAGE, CountryCode, MAX(Percentage) FROM countrylanguage GROUP BY CountryCode | What is the language spoken by the largest percentage of people in each country? | CREATE TABLE countrylanguage (LANGUAGE VARCHAR, CountryCode VARCHAR, Percentage INTEGER) |
SELECT to_par FROM table_name_97 WHERE money___$__ = "playoff" AND score = 68 - 73 - 77 - 65 = 283 | What is To Par, when Money ( $ ) is Playoff, and when Score is 68-73-77-65=283? | CREATE TABLE table_name_97 (to_par VARCHAR, money___$__ VARCHAR, score VARCHAR) |
SELECT MIN(overall) FROM table_name_78 WHERE school_club_team = "wisconsin" | Which was the lowest overall that Wisconsin's team managed? | CREATE TABLE table_name_78 (overall INTEGER, school_club_team VARCHAR) |
SELECT MIN(result) FROM table_17265535_7 WHERE equation = "0 × 9² + 3 × 9 + 3" | If the equation is 0 × 9² + 3 × 9 + 3, what is the result? | CREATE TABLE table_17265535_7 (result INTEGER, equation VARCHAR) |
SELECT institution FROM table_1974443_1 WHERE location = "Watertown, Wisconsin" | What institution is located in Watertown, Wisconsin? | CREATE TABLE table_1974443_1 (institution VARCHAR, location VARCHAR) |
SELECT opponent FROM table_name_17 WHERE result = "loss" AND venue = "mosaic stadium" | What is Opponent, when Result is Loss, and when Venue is Mosaic Stadium? | CREATE TABLE table_name_17 (opponent VARCHAR, result VARCHAR, venue VARCHAR) |
SELECT score FROM table_name_93 WHERE date = "8 september 1999" | What was the score on 8 September 1999? | CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR) |
SELECT date FROM table_name_37 WHERE record = "11-8" | On which Date was there a record of 11-8? | CREATE TABLE table_name_37 (date VARCHAR, record VARCHAR) |
SELECT MIN(earnings___) AS $__ FROM table_name_87 WHERE wins < 72 AND rank > 3 | What's the smallest amount of earnings when the wins are less than 72 and the rank is more than 3? | CREATE TABLE table_name_87 (earnings___ INTEGER, wins VARCHAR, rank VARCHAR) |
SELECT shooter FROM table_name_7 WHERE event = "wc rio de janeiro" AND rank_points = "10" | Who is the shooter at the WC Rio De Janeiro event with 10 rank points? | CREATE TABLE table_name_7 (shooter VARCHAR, event VARCHAR, rank_points VARCHAR) |
SELECT player FROM table_name_89 WHERE finish = "t66" | Who has a finish of t66? | CREATE TABLE table_name_89 (player VARCHAR, finish VARCHAR) |
SELECT home_team FROM table_name_55 WHERE away_team = "footscray" | Who was the home team when the away team was Footscray? | CREATE TABLE table_name_55 (home_team VARCHAR, away_team VARCHAR) |
SELECT rank FROM table_name_90 WHERE year > 1971 AND floors < 35 AND height_ft__m_ = "19.0 477 (145)" | After 1971, what is the Rank with a Height ft (m) of 19.0 477 (145) and less than 35 Floors? | CREATE TABLE table_name_90 (rank VARCHAR, height_ft__m_ VARCHAR, year VARCHAR, floors VARCHAR) |
SELECT name FROM table_name_86 WHERE goals < 7 AND rank < 7 AND appearances > 8 | Who had less than 7 goals, was ranked under 7, and had more than 8 appearances? | CREATE TABLE table_name_86 (name VARCHAR, appearances VARCHAR, goals VARCHAR, rank VARCHAR) |
SELECT original_air_date FROM table_11664625_2 WHERE no_in_season = 18 | What is the original air date of season 18? | CREATE TABLE table_11664625_2 (original_air_date VARCHAR, no_in_season VARCHAR) |
SELECT MIN(rank) FROM table_1682026_7 WHERE assets__billion_$_ = "248.44" | What is the lowest rank of a company with 248.44 billions of dollars in assets? | CREATE TABLE table_1682026_7 (rank INTEGER, assets__billion_$_ VARCHAR) |
SELECT current_version FROM table_name_14 WHERE rtm_build = "9200" AND name = "windows 8" | What is the current version of windows 8 with an RTM build of 9200? | CREATE TABLE table_name_14 (current_version VARCHAR, rtm_build VARCHAR, name VARCHAR) |
SELECT place FROM table_name_21 WHERE country = "spain" | What place is the golfer in who is from Spain? | CREATE TABLE table_name_21 (place VARCHAR, country VARCHAR) |
SELECT second_quarter FROM table_name_69 WHERE rank = 2 | With a rank of 2 what is the second quarter? | CREATE TABLE table_name_69 (second_quarter VARCHAR, rank VARCHAR) |
SELECT company_name FROM table_name_13 WHERE accreditation_level = "joyn hot fixes" AND accreditation_status = "approved (awarded 17.05.13)" | What is the Company Name, when the Accreditation Level is Joyn Hot Fixes, and when the Accreditation Status is Approved (Awarded 17.05.13)? | CREATE TABLE table_name_13 (company_name VARCHAR, accreditation_level VARCHAR, accreditation_status VARCHAR) |
SELECT record FROM table_name_72 WHERE date = "september 1" | What was the record as of September 1? | CREATE TABLE table_name_72 (record VARCHAR, date VARCHAR) |
SELECT player_name FROM table_name_75 WHERE pick = "15" AND year_[a_] = 2000 | who is the player when the pick is 15 and the year [A] is 2000? | CREATE TABLE table_name_75 (player_name VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR) |
SELECT date FROM table_name_36 WHERE venue = "oval" | What is the Date with a Venue that is oval? | CREATE TABLE table_name_36 (date VARCHAR, venue VARCHAR) |
SELECT height FROM table_29418619_1 WHERE name = "Anthony Crater" | What is the height of Anthony Crater? | CREATE TABLE table_29418619_1 (height VARCHAR, name VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.