question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
Which tournament was played on clay and there was a score of 4–6, 6–1, 6–4? | CREATE TABLE table_name_52 (tournament VARCHAR, surface VARCHAR, score VARCHAR) | SELECT tournament FROM table_name_52 WHERE surface = "clay" AND score = "4–6, 6–1, 6–4" |
Name the builder for number 3 | CREATE TABLE table_name_64 (builder VARCHAR, number VARCHAR) | SELECT builder FROM table_name_64 WHERE number = 3 |
What are the names of wines that are more expensive then all wines made in the year 2006? | CREATE TABLE WINE (Name VARCHAR, Price INTEGER, YEAR VARCHAR) | SELECT Name FROM WINE WHERE Price > (SELECT MAX(Price) FROM WINE WHERE YEAR = 2006) |
On which date was the opponent the Chicago Bears? | CREATE TABLE table_name_54 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_54 WHERE opponent = "chicago bears" |
Which Margin has a Country of united states, and a Score of 63-70-65-69=267? | CREATE TABLE table_name_50 (margin VARCHAR, country VARCHAR, score VARCHAR) | SELECT margin FROM table_name_50 WHERE country = "united states" AND score = 63 - 70 - 65 - 69 = 267 |
What is the day 1 when the day 3 is math? | CREATE TABLE table_name_16 (day_1 VARCHAR, day_3 VARCHAR) | SELECT day_1 FROM table_name_16 WHERE day_3 = "math" |
When toronto is the hometown how many height measurements are there? | CREATE TABLE table_18618707_1 (height VARCHAR, hometown VARCHAR) | SELECT COUNT(height) FROM table_18618707_1 WHERE hometown = "Toronto" |
How many neighborhoods have a station proposed at a Hospital? | CREATE TABLE table_22771048_4 (city_neighborhood VARCHAR, station VARCHAR) | SELECT COUNT(city_neighborhood) FROM table_22771048_4 WHERE station = "Hospital" |
What is the score for set 2 when the score of set 1 is 19–25? | CREATE TABLE table_name_70 (set_2 VARCHAR, set_1 VARCHAR) | SELECT set_2 FROM table_name_70 WHERE set_1 = "19–25" |
What is the maximum points received when Peeter Vähl gave a 9? | CREATE TABLE table_29261215_4 (points INTEGER, peeter_vähi VARCHAR) | SELECT MIN(points) FROM table_29261215_4 WHERE peeter_vähi = 9 |
What show that was aired on January 24, 2008 with a rating larger than 3.6 had the lowest viewers? How Many Viewers in the millions? | CREATE TABLE table_name_65 (viewers__m_ INTEGER, air_date VARCHAR, rating VARCHAR) | SELECT MIN(viewers__m_) FROM table_name_65 WHERE air_date = "january 24, 2008" AND rating > 3.6 |
How many people attended the game played with the New England Patriots as opponents? | CREATE TABLE table_name_53 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_53 WHERE opponent = "new england patriots" |
In what round was the Alianza home game? | CREATE TABLE table_name_85 (round VARCHAR, home VARCHAR) | SELECT round FROM table_name_85 WHERE home = "alianza" |
Show the names of phones and the districts of markets they are on, in ascending order of the ranking of the market. | CREATE TABLE market (District VARCHAR, Market_ID VARCHAR, Ranking VARCHAR); CREATE TABLE phone (Name VARCHAR, Phone_ID VARCHAR); CREATE TABLE phone_market (Market_ID VARCHAR, Phone_ID VARCHAR) | SELECT T3.Name, T2.District FROM phone_market AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID JOIN phone AS T3 ON T1.Phone_ID = T3.Phone_ID ORDER BY T2.Ranking |
Show the denomination of the school that has the most players. | CREATE TABLE player (School_ID VARCHAR); CREATE TABLE school (Denomination VARCHAR, School_ID VARCHAR) | SELECT T2.Denomination FROM player AS T1 JOIN school AS T2 ON T1.School_ID = T2.School_ID GROUP BY T1.School_ID ORDER BY COUNT(*) DESC LIMIT 1 |
What Week 5 has a Week 1 of mysti sherwood? | CREATE TABLE table_name_10 (week_5 VARCHAR, week_1 VARCHAR) | SELECT week_5 FROM table_name_10 WHERE week_1 = "mysti sherwood" |
Which Total has an A Score of 6.5, and a Position larger than 5? | CREATE TABLE table_name_79 (total INTEGER, a_score VARCHAR, position VARCHAR) | SELECT MIN(total) FROM table_name_79 WHERE a_score = 6.5 AND position > 5 |
Which Opponent has a Score of 3–6, 5–7? | CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_52 WHERE score = "3–6, 5–7" |
What is the average pick for Florida State? | CREATE TABLE table_name_70 (pick INTEGER, school_club_team VARCHAR) | SELECT AVG(pick) FROM table_name_70 WHERE school_club_team = "florida state" |
What is the Gecko value for the item that has a Prince XML value of 'no' and a KHTML value of 'yes'? | CREATE TABLE table_name_6 (gecko VARCHAR, prince_xml VARCHAR, khtml VARCHAR) | SELECT gecko FROM table_name_6 WHERE prince_xml = "yes" AND khtml = "yes" |
Name the total number of points for beta team march 1975 and chassis of march 751 | CREATE TABLE table_name_86 (points VARCHAR, chassis VARCHAR, entrant VARCHAR, year VARCHAR) | SELECT COUNT(points) FROM table_name_86 WHERE entrant = "beta team march" AND year = 1975 AND chassis = "march 751" |
Who is the teleplay by when the director is Rob Bailey? | CREATE TABLE table_14346950_1 (teleplay_by VARCHAR, directed_by VARCHAR) | SELECT teleplay_by FROM table_14346950_1 WHERE directed_by = "Rob Bailey" |
What day did the team play the buffalo bills? | CREATE TABLE table_name_28 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_28 WHERE opponent = "buffalo bills" |
What school did Alexander Korobolin go to? | CREATE TABLE table_name_27 (college_junior_club_team__league_ VARCHAR, player VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_27 WHERE player = "alexander korobolin" |
Name the most for first season in the serie a for 7 de octubre | CREATE TABLE table_2454589_1 (first_season_in_the_serie_a INTEGER, stadium VARCHAR) | SELECT MAX(first_season_in_the_serie_a) FROM table_2454589_1 WHERE stadium = "7 de Octubre" |
Name the tries for points against of 583 | CREATE TABLE table_name_92 (tries_for VARCHAR, points_against VARCHAR) | SELECT tries_for FROM table_name_92 WHERE points_against = "583" |
What is the production code for Episode 153 in the series? | CREATE TABLE table_23097214_1 (production_code INTEGER, series__number VARCHAR) | SELECT MIN(production_code) FROM table_23097214_1 WHERE series__number = 153 |
How many wins did Prema Powerteam won with 240 points? | CREATE TABLE table_25538763_1 (wins VARCHAR, team VARCHAR, points VARCHAR) | SELECT wins FROM table_25538763_1 WHERE team = "Prema Powerteam" AND points = "240" |
How many distinct courses are enrolled in by students? | CREATE TABLE Student_Course_Enrolment (course_id VARCHAR) | SELECT COUNT(course_id) FROM Student_Course_Enrolment |
What is the record of the game with Rudy Gay (20) as the leading scorer? | CREATE TABLE table_name_14 (record VARCHAR, leading_scorer VARCHAR) | SELECT record FROM table_name_14 WHERE leading_scorer = "rudy gay (20)" |
What position did the team new york red bulls pick? | CREATE TABLE table_29626583_3 (position VARCHAR, mls_team VARCHAR) | SELECT position FROM table_29626583_3 WHERE mls_team = "New York Red Bulls" |
What is the name of the series with an ISBN of 978-1-59582-523-0 (tpb)? | CREATE TABLE table_name_22 (series VARCHAR, isbn VARCHAR) | SELECT series FROM table_name_22 WHERE isbn = "978-1-59582-523-0 (tpb)" |
Name the number of titles written by adam i. lapidus | CREATE TABLE table_12030612_9 (title VARCHAR, written_by VARCHAR) | SELECT COUNT(title) FROM table_12030612_9 WHERE written_by = "Adam I. Lapidus" |
Which Position has a Lost larger than 4, and a Played larger than 14? | CREATE TABLE table_name_60 (position INTEGER, lost VARCHAR, played VARCHAR) | SELECT AVG(position) FROM table_name_60 WHERE lost > 4 AND played > 14 |
Which League Cup has a FA Cup of 5, and a Club of boston united, and a League smaller than 16? | CREATE TABLE table_name_18 (league INTEGER, fa_cup VARCHAR, club VARCHAR) | SELECT MAX(league) AS Cup FROM table_name_18 WHERE fa_cup = 5 AND club = "boston united" AND league < 16 |
The episode with the original airdate December22,1996 has what title? | CREATE TABLE table_26866233_1 (title VARCHAR, original_airdate VARCHAR) | SELECT title FROM table_26866233_1 WHERE original_airdate = "December22,1996" |
What is the sum of time with a lane larger than 6, a nationality of canada, and the react smaller than 0.151? | CREATE TABLE table_name_70 (time INTEGER, react VARCHAR, lane VARCHAR, nationality VARCHAR) | SELECT SUM(time) FROM table_name_70 WHERE lane > 6 AND nationality = "canada" AND react < 0.151 |
During which stage was the Intergiro classification held by Miguel Indurain, the Points classification held by Mario Cipollini, and the Young rider classification held by Leonardo Sierra? | CREATE TABLE table_name_76 (stage VARCHAR, young_rider_classification VARCHAR, intergiro_classification VARCHAR, points_classification VARCHAR) | SELECT stage FROM table_name_76 WHERE intergiro_classification = "miguel indurain" AND points_classification = "mario cipollini" AND young_rider_classification = "leonardo sierra" |
Find the job ID for those jobs which average salary is above 8000. | CREATE TABLE employees (job_id VARCHAR, salary INTEGER) | SELECT job_id FROM employees GROUP BY job_id HAVING AVG(salary) > 8000 |
Which Time/Retired has a grid smaller than 9, a Ferrari construct, and is driven by Rubens Barrichello? | CREATE TABLE table_name_16 (time_retired VARCHAR, driver VARCHAR, grid VARCHAR, constructor VARCHAR) | SELECT time_retired FROM table_name_16 WHERE grid < 9 AND constructor = "ferrari" AND driver = "rubens barrichello" |
What league had a finish of 2nd and 3 losses? | CREATE TABLE table_name_74 (league VARCHAR, finish VARCHAR, losses VARCHAR) | SELECT league FROM table_name_74 WHERE finish = "2nd" AND losses = 3 |
Who is born on 29 September 1766? | CREATE TABLE table_name_20 (name VARCHAR, birth VARCHAR) | SELECT name FROM table_name_20 WHERE birth = "29 september 1766" |
What is the episode title for the episode numbered #1.4? | CREATE TABLE table_15211468_1 (episode_title VARCHAR, episode_no VARCHAR) | SELECT episode_title FROM table_15211468_1 WHERE episode_no = "#1.4" |
Which Nation has the USA-18 sail? | CREATE TABLE table_name_91 (nation VARCHAR, sail VARCHAR) | SELECT nation FROM table_name_91 WHERE sail = "usa-18" |
What is the weekly rank for a share of 9 and 9.42 million viewers? | CREATE TABLE table_name_53 (weekly_rank___number_ VARCHAR, share VARCHAR, viewers__m_ VARCHAR) | SELECT weekly_rank___number_ FROM table_name_53 WHERE share = 9 AND viewers__m_ = 9.42 |
Which country had a contestant that was 1.76 meters tall? | CREATE TABLE table_23495048_2 (represent VARCHAR, height__mtr_ VARCHAR) | SELECT represent FROM table_23495048_2 WHERE height__mtr_ = "1.76" |
what is the school when signed is no and round is 50? | CREATE TABLE table_name_26 (school VARCHAR, signed VARCHAR, round VARCHAR) | SELECT school FROM table_name_26 WHERE signed = "no" AND round = 50 |
What's the most races with less than 10 podiums and 1st position? | CREATE TABLE table_name_27 (races INTEGER, position VARCHAR, podiums VARCHAR) | SELECT MAX(races) FROM table_name_27 WHERE position = "1st" AND podiums < 10 |
Before the year 1988, what is the lowest number of points that entrant Coloni SpA scored? | CREATE TABLE table_name_84 (points INTEGER, entrant VARCHAR, year VARCHAR) | SELECT MIN(points) FROM table_name_84 WHERE entrant = "coloni spa" AND year < 1988 |
where did marie-laure taya win? | CREATE TABLE table_name_90 (venue VARCHAR, winner VARCHAR) | SELECT venue FROM table_name_90 WHERE winner = "marie-laure taya" |
What was the attendance on September 28? | CREATE TABLE table_name_92 (attendance INTEGER, date VARCHAR) | SELECT MAX(attendance) FROM table_name_92 WHERE date = "september 28" |
Pick # of 331 went to which college? | CREATE TABLE table_name_36 (college VARCHAR, pick__number VARCHAR) | SELECT college FROM table_name_36 WHERE pick__number = 331 |
Which Gold has a Nation of sri lanka, and a Silver smaller than 10? | CREATE TABLE table_name_39 (gold INTEGER, nation VARCHAR, silver VARCHAR) | SELECT AVG(gold) FROM table_name_39 WHERE nation = "sri lanka" AND silver < 10 |
How many fatalities occurred for the Ju-52 aircraft? | CREATE TABLE table_name_18 (fatalities VARCHAR, aircraft VARCHAR) | SELECT fatalities FROM table_name_18 WHERE aircraft = "ju-52" |
Which district was established in 1942? | CREATE TABLE table_name_82 (district VARCHAR, estd VARCHAR) | SELECT district FROM table_name_82 WHERE estd = 1942 |
What is the total (kg when the bodyweight is more than 57.8, and the clean & jerk is less than 103? | CREATE TABLE table_name_94 (total__kg_ INTEGER, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR) | SELECT SUM(total__kg_) FROM table_name_94 WHERE bodyweight > 57.8 AND clean_ & _jerk < 103 |
When was the home game when the New Jersey team's record became 7-23-7? | CREATE TABLE table_name_9 (date VARCHAR, home VARCHAR, record VARCHAR) | SELECT date FROM table_name_9 WHERE home = "new jersey" AND record = "7-23-7" |
What team with a seed value greater than 7 has a note that they were an NCRAA champion? | CREATE TABLE table_name_75 (team VARCHAR, seed VARCHAR, notes VARCHAR) | SELECT team FROM table_name_75 WHERE seed > 7 AND notes = "ncraa champion" |
What is the total season number for episodes later than episode 30? | CREATE TABLE table_name_67 (season INTEGER, episodes INTEGER) | SELECT SUM(season) FROM table_name_67 WHERE episodes > 30 |
Which Linda McCartney has a Stuart of electric guitar? | CREATE TABLE table_name_80 (linda_mccartney VARCHAR, stuart VARCHAR) | SELECT linda_mccartney FROM table_name_80 WHERE stuart = "electric guitar" |
Name the 0-100 km/hs for name of 2.0 8v | CREATE TABLE table_17941111_2 (s VARCHAR, name VARCHAR) | SELECT 0 AS _100km_h, s FROM table_17941111_2 WHERE name = "2.0 8v" |
what's the total number of final epbeingode count with character being rick stetler | CREATE TABLE table_11210576_4 (final_episode VARCHAR, character VARCHAR) | SELECT COUNT(final_episode) AS Count FROM table_11210576_4 WHERE character = "Rick Stetler" |
How many time is sunday day one is ahad? | CREATE TABLE table_1277350_7 (thursday_day_five VARCHAR, sunday_day_one VARCHAR) | SELECT COUNT(thursday_day_five) FROM table_1277350_7 WHERE sunday_day_one = "Ahad" |
Which category won the Sundance Film Festival award in 1998? | CREATE TABLE table_name_95 (category VARCHAR, award VARCHAR, result VARCHAR, year VARCHAR) | SELECT category FROM table_name_95 WHERE result = "won" AND year = 1998 AND award = "sundance film festival" |
What is the highest game whose score was 94-116 | CREATE TABLE table_name_62 (game INTEGER, score VARCHAR) | SELECT MAX(game) FROM table_name_62 WHERE score = "94-116" |
What are all the different descriptions for the buttonholer with cardboard box for storage and a low shank type? | CREATE TABLE table_28652521_1 (description VARCHAR, storage_case VARCHAR, for_shank_type VARCHAR) | SELECT description FROM table_28652521_1 WHERE storage_case = "cardboard box" AND for_shank_type = "low" |
What are Perkins Engineering's fewest laps? | CREATE TABLE table_name_17 (laps INTEGER, team VARCHAR) | SELECT MIN(laps) FROM table_name_17 WHERE team = "perkins engineering" |
What type has 5 as the quantity? | CREATE TABLE table_name_26 (type VARCHAR, quantity VARCHAR) | SELECT type FROM table_name_26 WHERE quantity = 5 |
Which Name has Games of 105? | CREATE TABLE table_name_53 (name VARCHAR, games VARCHAR) | SELECT name FROM table_name_53 WHERE games = 105 |
What's the Years as tallest with a Street address of 324 E. 11th Street? | CREATE TABLE table_name_12 (years_as_tallest VARCHAR, street_address VARCHAR) | SELECT years_as_tallest FROM table_name_12 WHERE street_address = "324 e. 11th street" |
What School did Player Alonzo Mourning attend? | CREATE TABLE table_name_74 (school VARCHAR, player VARCHAR) | SELECT school FROM table_name_74 WHERE player = "alonzo mourning" |
What is the release date that has english as the subtitles, and magna pacific as the publisher? | CREATE TABLE table_name_61 (release_date VARCHAR, subtitles VARCHAR, publisher VARCHAR) | SELECT release_date FROM table_name_61 WHERE subtitles = "english" AND publisher = "magna pacific" |
What series is at the position 7? | CREATE TABLE table_21297652_1 (series VARCHAR, position VARCHAR) | SELECT series FROM table_21297652_1 WHERE position = 7 |
How many laps did innes ireland drive with a grid higher than 11? | CREATE TABLE table_name_29 (laps INTEGER, driver VARCHAR, grid VARCHAR) | SELECT SUM(laps) FROM table_name_29 WHERE driver = "innes ireland" AND grid > 11 |
How many times is the position lb and the overall is less than 46? | CREATE TABLE table_name_25 (pick VARCHAR, position VARCHAR, overall VARCHAR) | SELECT COUNT(pick) FROM table_name_25 WHERE position = "lb" AND overall < 46 |
What is the week where the game site is Shea Stadium? | CREATE TABLE table_17861179_1 (week INTEGER, game_site VARCHAR) | SELECT MIN(week) FROM table_17861179_1 WHERE game_site = "Shea Stadium" |
Which Part number(s) has a Model number of core i7-3770? | CREATE TABLE table_name_60 (part_number_s_ VARCHAR, model_number VARCHAR) | SELECT part_number_s_ FROM table_name_60 WHERE model_number = "core i7-3770" |
What are the name, phone number and email address of the customer who made the largest number of orders? | CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_email VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR) | SELECT T1.customer_name, T1.customer_phone, T1.customer_email FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T2.customer_id ORDER BY COUNT(*) DESC LIMIT 1 |
How many jury votes for the televote of 7? | CREATE TABLE table_19763199_4 (jury_votes VARCHAR, televotes VARCHAR) | SELECT jury_votes FROM table_19763199_4 WHERE televotes = 7 |
What is the lowest game number on 20 July 2008? | CREATE TABLE table_name_33 (game INTEGER, date VARCHAR) | SELECT MIN(game) FROM table_name_33 WHERE date = "20 july 2008" |
In what category was character Jacqui Mcqueen nominated before 2011? | CREATE TABLE table_name_67 (category VARCHAR, character VARCHAR, year VARCHAR) | SELECT category FROM table_name_67 WHERE character = "jacqui mcqueen" AND year < 2011 |
what is the assists when the club is chicago fire and goals is more than 2? | CREATE TABLE table_name_82 (assists INTEGER, club VARCHAR, goals VARCHAR) | SELECT SUM(assists) FROM table_name_82 WHERE club = "chicago fire" AND goals > 2 |
What seat has a vote percentage of 100.0% | CREATE TABLE table_name_41 (seat_percentage VARCHAR, vote_percentage VARCHAR) | SELECT seat_percentage FROM table_name_41 WHERE vote_percentage = "100.0%" |
what is the result for 11 august 2010? | CREATE TABLE table_name_94 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_94 WHERE date = "11 august 2010" |
How many people scored the most points during the game on December 10? | CREATE TABLE table_27756014_6 (high_points VARCHAR, date VARCHAR) | SELECT COUNT(high_points) FROM table_27756014_6 WHERE date = "December 10" |
What result has January 21, 2002 as the date? | CREATE TABLE table_name_51 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_51 WHERE date = "january 21, 2002" |
When were the Spartans founded? | CREATE TABLE table_28211213_1 (founded INTEGER, team_nickname VARCHAR) | SELECT MAX(founded) FROM table_28211213_1 WHERE team_nickname = "Spartans" |
What was the average year that the Nashville Metros did not qualify for the Playoffs, did not qualify for the Open Cup, and had the Regular Season 7th, Southeast? | CREATE TABLE table_name_78 (year INTEGER, regular_season VARCHAR, playoffs VARCHAR, open_cup VARCHAR) | SELECT AVG(year) FROM table_name_78 WHERE playoffs = "did not qualify" AND open_cup = "did not qualify" AND regular_season = "7th, southeast" |
What position is the player that is from Canada and on the Boston Bruins | CREATE TABLE table_name_51 (position VARCHAR, nationality VARCHAR, nhl_team VARCHAR) | SELECT position FROM table_name_51 WHERE nationality = "canada" AND nhl_team = "boston bruins" |
What's the Outcome for the Partner of Jürgen Melzer on the Date of February 7, 2010? | CREATE TABLE table_name_94 (outcome VARCHAR, partner VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_94 WHERE partner = "jürgen melzer" AND date = "february 7, 2010" |
Clubs involved is 8, what number would you find from winners from previous round? | CREATE TABLE table_1281200_1 (winners_from_previous_round VARCHAR, clubs_involved VARCHAR) | SELECT winners_from_previous_round FROM table_1281200_1 WHERE clubs_involved = 8 |
What was the venue after 2012? | CREATE TABLE table_name_4 (venue VARCHAR, year INTEGER) | SELECT venue FROM table_name_4 WHERE year > 2012 |
Which Number of electorates (2009) has a District of jhajjar, and a Reserved for (SC/ST/None) of sc, and a Constituency number smaller than 66? | CREATE TABLE table_name_56 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR) | SELECT COUNT(number_of_electorates__2009_) FROM table_name_56 WHERE district = "jhajjar" AND reserved_for___sc___st__none_ = "sc" AND constituency_number < 66 |
Which player wears the number 2 on his jersey? | CREATE TABLE table_name_18 (player VARCHAR, jersey_number_s_ VARCHAR) | SELECT player FROM table_name_18 WHERE jersey_number_s_ = "2" |
What is the density (hab/ km²) when the extension km² is 380,64? | CREATE TABLE table_name_22 (density__hab__km²__ VARCHAR, extension_km² VARCHAR) | SELECT density__hab__km²__ FROM table_name_22 WHERE extension_km² = "380,64" |
On which date was the 2006 FIFA World Cup Qualification in Manama, Bahrain? | CREATE TABLE table_name_57 (date VARCHAR, venue VARCHAR, competition VARCHAR) | SELECT date FROM table_name_57 WHERE venue = "manama, bahrain" AND competition = "2006 fifa world cup qualification" |
Who was the trainer in 2013? | CREATE TABLE table_name_71 (trainer VARCHAR, year VARCHAR) | SELECT trainer FROM table_name_71 WHERE year = 2013 |
What trips are operated by Atlantic coast charters? | CREATE TABLE table_name_47 (total_trips__am_pm_ VARCHAR, operated_by VARCHAR) | SELECT total_trips__am_pm_ FROM table_name_47 WHERE operated_by = "atlantic coast charters" |
When did José Luis Sánchez Solá end his term of coaching? | CREATE TABLE table_name_76 (until VARCHAR, name VARCHAR) | SELECT until FROM table_name_76 WHERE name = "josé luis sánchez solá" |
Tell me the title of japan january 31, 2008 | CREATE TABLE table_name_74 (title VARCHAR, japan VARCHAR) | SELECT title FROM table_name_74 WHERE japan = "january 31, 2008" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.