question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What stadium had an opponent of Cal State Fullerton Titans? | CREATE TABLE table_name_56 (stadium VARCHAR, opponent VARCHAR) | SELECT stadium FROM table_name_56 WHERE opponent = "cal state fullerton titans" |
How many positions are there for RB1 Motorsports? | CREATE TABLE table_26609690_1 (position VARCHAR, team_s_ VARCHAR) | SELECT COUNT(position) FROM table_26609690_1 WHERE team_s_ = "RB1 Motorsports" |
Which region had the year May 1974? | CREATE TABLE table_name_77 (region VARCHAR, year VARCHAR) | SELECT region FROM table_name_77 WHERE year = "may 1974" |
Which Third/Vice skip has a Second of éric sylvain? | CREATE TABLE table_name_13 (third_vice_skip VARCHAR, second VARCHAR) | SELECT third_vice_skip FROM table_name_13 WHERE second = "éric sylvain" |
What is the college where player terry moss attended? | CREATE TABLE table_26996293_7 (college VARCHAR, player VARCHAR) | SELECT college FROM table_26996293_7 WHERE player = "Terry Moss" |
How many bronzes had a rank of 10 and 0 gold? | CREATE TABLE table_name_9 (bronze INTEGER, rank VARCHAR, gold VARCHAR) | SELECT SUM(bronze) FROM table_name_9 WHERE rank = "10" AND gold < 0 |
What are the results of incumbent dave weldon? | CREATE TABLE table_1805191_10 (results VARCHAR, incumbent VARCHAR) | SELECT COUNT(results) FROM table_1805191_10 WHERE incumbent = "Dave Weldon" |
How many South Asians were there in 2011 in Quebec when there were fewer than 59,510 in 2001? | CREATE TABLE table_name_19 (south_asians_2011 VARCHAR, province VARCHAR, south_asians_2001 VARCHAR) | SELECT COUNT(south_asians_2011) FROM table_name_19 WHERE province = "quebec" AND south_asians_2001 < 59 OFFSET 510 |
Which Seasons have a Poles larger than 29, and Entries larger than 191? | CREATE TABLE table_name_66 (seasons VARCHAR, poles VARCHAR, entries VARCHAR) | SELECT seasons FROM table_name_66 WHERE poles > 29 AND entries > 191 |
Who drove for team Circle Sport? | CREATE TABLE table_1266602_2 (driver_s_ VARCHAR, team VARCHAR) | SELECT driver_s_ FROM table_1266602_2 WHERE team = "Circle Sport" |
Name the ICAO for IATA of ccu | CREATE TABLE table_name_62 (icao VARCHAR, iata VARCHAR) | SELECT icao FROM table_name_62 WHERE iata = "ccu" |
What station was owned since 2011, and a channel (tv/rf) of 27? | CREATE TABLE table_name_73 (station VARCHAR, owned_since VARCHAR, channel___tv___rf__ VARCHAR) | SELECT station FROM table_name_73 WHERE owned_since = 2011 AND channel___tv___rf__ = "27" |
What is the type when McCormack is the name? | CREATE TABLE table_name_21 (type VARCHAR, name VARCHAR) | SELECT type FROM table_name_21 WHERE name = "mccormack" |
Which title has tracks smaller than 7 with translation of an island? | CREATE TABLE table_name_67 (title VARCHAR, track VARCHAR, translation VARCHAR) | SELECT title FROM table_name_67 WHERE track < 7 AND translation = "an island" |
what was the final score of the game versus Milwaukee? | CREATE TABLE table_17325580_5 (score VARCHAR, team VARCHAR) | SELECT score FROM table_17325580_5 WHERE team = "Milwaukee" |
What is the pick number of Jesse Alexander? | CREATE TABLE table_name_39 (pick__number INTEGER, player VARCHAR) | SELECT MIN(pick__number) FROM table_name_39 WHERE player = "jesse alexander" |
Who is the authority for the coed Eastbourne school? | CREATE TABLE table_name_46 (authority VARCHAR, area VARCHAR, gender VARCHAR) | SELECT authority FROM table_name_46 WHERE area = "eastbourne" AND gender = "coed" |
During the Tournament of Torneo Fraternidad/UNCAF Club championship, what is the Role of the Platense Municipal Zacatecoluca Team? | CREATE TABLE table_name_65 (role VARCHAR, team VARCHAR, tournament VARCHAR) | SELECT role FROM table_name_65 WHERE team = "platense municipal zacatecoluca" AND tournament = "torneo fraternidad/uncaf club championship" |
What is the biggest number of the team who's owned by Jeff Gordon? | CREATE TABLE table_1266602_1 (_number INTEGER, owner_s_ VARCHAR) | SELECT MAX(_number) FROM table_1266602_1 WHERE owner_s_ = "Jeff Gordon" |
What is the Company Name, when the Accreditation Status is Approved (Valid Until 03.07.13)? | CREATE TABLE table_name_76 (company_name VARCHAR, accreditation_status VARCHAR) | SELECT company_name FROM table_name_76 WHERE accreditation_status = "approved (valid until 03.07.13)" |
How many schools are there? | CREATE TABLE school (Id VARCHAR) | SELECT COUNT(*) FROM school |
What is the earliest date with Great Expectations label with LP format? | CREATE TABLE table_name_92 (date INTEGER, label VARCHAR, format VARCHAR) | SELECT MIN(date) FROM table_name_92 WHERE label = "great expectations" AND format = "lp" |
Name the broadcast for davis-wade stadium • starkville ms | CREATE TABLE table_26842217_18 (broadcast VARCHAR, site VARCHAR) | SELECT broadcast FROM table_26842217_18 WHERE site = "Davis-Wade Stadium • Starkville MS" |
What is the status of the community with a census ranking of 2,418 of 5,008? | CREATE TABLE table_name_67 (status VARCHAR, census_ranking VARCHAR) | SELECT status FROM table_name_67 WHERE census_ranking = "2,418 of 5,008" |
What was the winning score for the tournament with runner-up Rory Sabbatini? | CREATE TABLE table_1602858_1 (winning_score VARCHAR, runner_s__up VARCHAR) | SELECT winning_score FROM table_1602858_1 WHERE runner_s__up = "Rory Sabbatini" |
what is the class of the station with erp w more than 30? | CREATE TABLE table_name_54 (class VARCHAR, erp_w INTEGER) | SELECT class FROM table_name_54 WHERE erp_w > 30 |
Who was the winner of the mechelen > mechelen route? | CREATE TABLE table_name_63 (winner VARCHAR, route VARCHAR) | SELECT winner FROM table_name_63 WHERE route = "mechelen > mechelen" |
What is the Proto-Malayo-Polynesian word for the Proto-Oceanic word of *saqit, *turi? | CREATE TABLE table_name_71 (proto_malayo_polynesian VARCHAR, proto_oceanic VARCHAR) | SELECT proto_malayo_polynesian FROM table_name_71 WHERE proto_oceanic = "*saqit, *turi" |
Name the least total kurdistan list | CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER) | SELECT MIN(total_kurdistan_list) FROM table_24440361_1 |
How many players had the most points in the game @ Milwaukee? | CREATE TABLE table_11960944_6 (high_points VARCHAR, team VARCHAR) | SELECT COUNT(high_points) FROM table_11960944_6 WHERE team = "@ Milwaukee" |
What was the result of the election with jamie l. whitten? | CREATE TABLE table_1342218_24 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_1342218_24 WHERE incumbent = "Jamie L. Whitten" |
What year(s) was Duisburg runner-up? | CREATE TABLE table_name_81 (years_runner_up VARCHAR, team VARCHAR) | SELECT years_runner_up FROM table_name_81 WHERE team = "duisburg" |
Which song was by artist Gino Vannelli? | CREATE TABLE table_name_15 (song VARCHAR, artist VARCHAR) | SELECT song FROM table_name_15 WHERE artist = "gino vannelli" |
What is the flange thickness when the weight is 19.9? | CREATE TABLE table_2071644_2 (flange_thickness__mm_ VARCHAR, weight__kg_m_ VARCHAR) | SELECT flange_thickness__mm_ FROM table_2071644_2 WHERE weight__kg_m_ = "19.9" |
what is the total number of coach where captain is grant welsh and win/loss is 5-15 | CREATE TABLE table_1165048_1 (coach VARCHAR, captain VARCHAR, win_loss VARCHAR) | SELECT COUNT(coach) FROM table_1165048_1 WHERE captain = "Grant Welsh" AND win_loss = "5-15" |
What is the lowest height in feet for the building located in platz der einheit 1, gallus, that was built after 1961 with a height less than 130 meters? | CREATE TABLE table_name_62 (height__ft_ INTEGER, height__m_ VARCHAR, year_built VARCHAR, location VARCHAR) | SELECT MIN(height__ft_) FROM table_name_62 WHERE year_built > 1961 AND location = "platz der einheit 1, gallus" AND height__m_ < 130 |
Find name of the project that needs the least amount of time to finish and the name of scientists who worked on it. | CREATE TABLE scientists (name VARCHAR, SSN VARCHAR); CREATE TABLE assignedto (project VARCHAR, scientist VARCHAR); CREATE TABLE projects (name VARCHAR, code VARCHAR, hours INTEGER); CREATE TABLE projects (hours INTEGER) | SELECT T2.name, T3.name FROM assignedto AS T1 JOIN projects AS T2 ON T1.project = T2.code JOIN scientists AS T3 ON T1.scientist = T3.SSN WHERE T2.hours = (SELECT MIN(hours) FROM projects) |
What is Position, when Overall is less than 590, and when Round is 3? | CREATE TABLE table_name_6 (position VARCHAR, overall VARCHAR, round VARCHAR) | SELECT position FROM table_name_6 WHERE overall < 590 AND round = 3 |
What is Muzzle energy, when Cartridge is .375 remington ultra magnum? | CREATE TABLE table_name_24 (muzzle_energy VARCHAR, cartridge VARCHAR) | SELECT muzzle_energy FROM table_name_24 WHERE cartridge = ".375 remington ultra magnum" |
What is the Set 1 with set 2 at 21:17? | CREATE TABLE table_name_93 (set_1 VARCHAR, set_2 VARCHAR) | SELECT set_1 FROM table_name_93 WHERE set_2 = "21:17" |
Name the least number for 君のそばで~ヒカリのテーマ~(popup.version) | CREATE TABLE table_2144389_8 (_number INTEGER, japanese_title VARCHAR) | SELECT MIN(_number) FROM table_2144389_8 WHERE japanese_title = "君のそばで~ヒカリのテーマ~(PopUp.Version)" |
What's the voltage of the model with part number TT80503300? | CREATE TABLE table_24096813_15 (voltage VARCHAR, part_number_s_ VARCHAR) | SELECT voltage FROM table_24096813_15 WHERE part_number_s_ = "TT80503300" |
What competition was held on the date 6/7/03 | CREATE TABLE table_name_97 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_97 WHERE date = "6/7/03" |
College of lsu has how many rounds? | CREATE TABLE table_name_52 (round VARCHAR, college VARCHAR) | SELECT COUNT(round) FROM table_name_52 WHERE college = "lsu" |
What mountains classification corresponds to Mark Cavendish and the Garmin-Chipotle-H30? | CREATE TABLE table_name_80 (mountains_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) | SELECT mountains_classification FROM table_name_80 WHERE general_classification = "mark cavendish" AND team_classification = "garmin-chipotle-h30" |
Which 1992 has a 1996 of sf and a 1993 of a? | CREATE TABLE table_name_59 (Id VARCHAR) | SELECT 1992 FROM table_name_59 WHERE 1996 = "sf" AND 1993 = "a" |
How many Drawns have a Team of aa são bento and Points larger than 1? | CREATE TABLE table_name_54 (drawn INTEGER, team VARCHAR, points VARCHAR) | SELECT SUM(drawn) FROM table_name_54 WHERE team = "aa são bento" AND points > 1 |
Which Opponents in the final has a Partner of olga lugina? | CREATE TABLE table_name_79 (opponents_in_the_final VARCHAR, partner VARCHAR) | SELECT opponents_in_the_final FROM table_name_79 WHERE partner = "olga lugina" |
If the site is sanford stadium • athens, ga, what is the date? | CREATE TABLE table_26842217_8 (date VARCHAR, site VARCHAR) | SELECT date FROM table_26842217_8 WHERE site = "Sanford Stadium • Athens, GA" |
What is the original name of the place by designer Glen Peloso with a Location of n/a? | CREATE TABLE table_name_4 (original_name VARCHAR, designer VARCHAR, location VARCHAR) | SELECT original_name FROM table_name_4 WHERE designer = "glen peloso" AND location = "n/a" |
Where was the Rally HQ for Round 1? | CREATE TABLE table_name_9 (rally_hq VARCHAR, round VARCHAR) | SELECT rally_hq FROM table_name_9 WHERE round = 1 |
Which country has swimsuit more than 9.46 and interview more than 9.22 with average less than 9.6? | CREATE TABLE table_name_22 (country VARCHAR, swimsuit VARCHAR, average VARCHAR, interview VARCHAR) | SELECT country FROM table_name_22 WHERE average < 9.6 AND interview > 9.22 AND swimsuit > 9.46 |
Name the golden ticket for invesco field | CREATE TABLE table_22897967_1 (golden_tickets VARCHAR, audition_venue VARCHAR) | SELECT golden_tickets FROM table_22897967_1 WHERE audition_venue = "Invesco Field" |
How many losses for the team with 3 wins and more than 1919 against? | CREATE TABLE table_name_28 (losses INTEGER, wins VARCHAR, against VARCHAR) | SELECT MIN(losses) FROM table_name_28 WHERE wins = 3 AND against > 1919 |
What is the rank for the team with a Time of 1:12.40.28? | CREATE TABLE table_name_94 (rank INTEGER, time VARCHAR) | SELECT SUM(rank) FROM table_name_94 WHERE time = "1:12.40.28" |
What is the average pick number for jerry hackenbruck who was overall pick less than 282? | CREATE TABLE table_name_78 (pick INTEGER, name VARCHAR, overall VARCHAR) | SELECT AVG(pick) FROM table_name_78 WHERE name = "jerry hackenbruck" AND overall < 282 |
What is the chassis for the year of 1969? | CREATE TABLE table_name_85 (chassis VARCHAR, year VARCHAR) | SELECT chassis FROM table_name_85 WHERE year = 1969 |
Which Result has a Venue of away, and a Game smaller than 43, and an Opponent of bournemouth? | CREATE TABLE table_name_22 (result VARCHAR, opponent VARCHAR, venue VARCHAR, game VARCHAR) | SELECT result FROM table_name_22 WHERE venue = "away" AND game < 43 AND opponent = "bournemouth" |
Name the ICAO for IATA of rgn | CREATE TABLE table_name_69 (icao VARCHAR, iata VARCHAR) | SELECT icao FROM table_name_69 WHERE iata = "rgn" |
What is the highest population (2008) created earlier than 1857, and the county was Sinoe? | CREATE TABLE table_name_69 (population__2008_ INTEGER, created VARCHAR, county VARCHAR) | SELECT MAX(population__2008_) FROM table_name_69 WHERE created < 1857 AND county = "sinoe" |
What district has 213 constituents? | CREATE TABLE table_29785324_5 (district VARCHAR, constituency_no VARCHAR) | SELECT COUNT(district) FROM table_29785324_5 WHERE constituency_no = 213 |
What Player is from the west Division and the Team of special teams and is from the School Toledo Western Michigan? | CREATE TABLE table_name_21 (player VARCHAR, school VARCHAR, division VARCHAR, team VARCHAR) | SELECT player FROM table_name_21 WHERE division = "west" AND team = "special teams" AND school = "toledo western michigan" |
Which location has a date of may 21? | CREATE TABLE table_name_95 (location VARCHAR, date VARCHAR) | SELECT location FROM table_name_95 WHERE date = "may 21" |
What was the duration of Robert Joy's portrayal? | CREATE TABLE table_11240028_1 (duration VARCHAR, portrayed_by VARCHAR) | SELECT COUNT(duration) FROM table_11240028_1 WHERE portrayed_by = "Robert Joy" |
What's the total earnings ($) with more than two wins and a rank less than 2? | CREATE TABLE table_name_1 (earnings___ VARCHAR, wins VARCHAR, rank VARCHAR) | SELECT COUNT(earnings___) AS $__ FROM table_name_1 WHERE wins > 2 AND rank < 2 |
What is Australian, when British is "aɪ, ɪ, ə"? | CREATE TABLE table_name_12 (australian VARCHAR, british VARCHAR) | SELECT australian FROM table_name_12 WHERE british = "aɪ, ɪ, ə" |
What tournament venue is listed during the Missouri Valley Conference? | CREATE TABLE table_28365816_2 (tournament_venue__city_ VARCHAR, conference VARCHAR) | SELECT tournament_venue__city_ FROM table_28365816_2 WHERE conference = "Missouri Valley conference" |
How many people are guest 1 on episodes where guest 4 is Des Kelly? | CREATE TABLE table_20466963_9 (guest_1 VARCHAR, guest_4 VARCHAR) | SELECT COUNT(guest_1) FROM table_20466963_9 WHERE guest_4 = "Des Kelly" |
What is the highest # Of Constituency Votes, when Election is 2005? | CREATE TABLE table_name_22 (_number_of_constituency_votes INTEGER, election VARCHAR) | SELECT MAX(_number_of_constituency_votes) FROM table_name_22 WHERE election = 2005 |
What is every value for sacks if interceptions is 19? | CREATE TABLE table_27487336_1 (sacks VARCHAR, interceptions VARCHAR) | SELECT sacks FROM table_27487336_1 WHERE interceptions = "19" |
Which Points have a December smaller than 6, and a Score of 1–1 ot, and a Game smaller than 28? | CREATE TABLE table_name_1 (points INTEGER, game VARCHAR, december VARCHAR, score VARCHAR) | SELECT MIN(points) FROM table_name_1 WHERE december < 6 AND score = "1–1 ot" AND game < 28 |
what is the number of provincial captial where the province is northern cape? | CREATE TABLE table_17416221_1 (provincial_capital VARCHAR, province VARCHAR) | SELECT COUNT(provincial_capital) FROM table_17416221_1 WHERE province = "Northern Cape" |
What is the total market value of all corporations headquartered in Germany? | CREATE TABLE table_name_51 (market_value___usd_million_ VARCHAR, headquarters VARCHAR) | SELECT COUNT(market_value___usd_million_) FROM table_name_51 WHERE headquarters = "germany" |
What was the series standing for games over 4? | CREATE TABLE table_name_2 (series VARCHAR, game INTEGER) | SELECT series FROM table_name_2 WHERE game > 4 |
What is the average wins with 5 cuts and 1 in the top-10? | CREATE TABLE table_name_91 (wins INTEGER, cuts_made VARCHAR, top_10 VARCHAR) | SELECT AVG(wins) FROM table_name_91 WHERE cuts_made = 5 AND top_10 = 1 |
What was the result of the election in california 2? | CREATE TABLE table_1341973_6 (result VARCHAR, district VARCHAR) | SELECT result FROM table_1341973_6 WHERE district = "California 2" |
What day did the celebrity who finished 4th enter? | CREATE TABLE table_name_96 (entered VARCHAR, finished VARCHAR) | SELECT entered FROM table_name_96 WHERE finished = "4th" |
How many floors does the building on 800 Boylston Street have? | CREATE TABLE table_name_52 (floors INTEGER, street_address VARCHAR) | SELECT MAX(floors) FROM table_name_52 WHERE street_address = "800 boylston street" |
What is the latitude for a crater with a diameter of 12.8 km and a longitude of 208? | CREATE TABLE table_name_18 (latitude INTEGER, diameter__km_ VARCHAR, longitude VARCHAR) | SELECT AVG(latitude) FROM table_name_18 WHERE diameter__km_ < 12.8 AND longitude < 208 |
How many flights depart from City Aberdeen? | CREATE TABLE FLIGHTS (SourceAirport VARCHAR); CREATE TABLE AIRPORTS (AirportCode VARCHAR, City VARCHAR) | SELECT COUNT(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.SourceAirport = T2.AirportCode WHERE T2.City = "Aberdeen" |
What is the Aircraft when Kabul was the location, unknown fatalities, and the tail number was ya-ban? | CREATE TABLE table_name_3 (aircraft VARCHAR, tail_number VARCHAR, location VARCHAR, fatalities VARCHAR) | SELECT aircraft FROM table_name_3 WHERE location = "kabul" AND fatalities = "unknown" AND tail_number = "ya-ban" |
what's the deadline for completion where description is iphone recall within the first 3 months of release | CREATE TABLE table_12078626_1 (deadline_for_completion VARCHAR, description VARCHAR) | SELECT deadline_for_completion FROM table_12078626_1 WHERE description = "iPhone recall within the first 3 months of release" |
What status has a role? | CREATE TABLE table_name_56 (status VARCHAR) | SELECT status FROM table_name_56 WHERE "role" = "role" |
Which Years at club have Games smaller than 7, and Goals larger than 2, and a Player of john frazer? | CREATE TABLE table_name_10 (years_at_club VARCHAR, player VARCHAR, games VARCHAR, goals VARCHAR) | SELECT years_at_club FROM table_name_10 WHERE games < 7 AND goals > 2 AND player = "john frazer" |
What is the overall pick average with the pick # lower than 15? | CREATE TABLE table_name_26 (overall INTEGER, pick__number INTEGER) | SELECT AVG(overall) FROM table_name_26 WHERE pick__number < 15 |
When was roshan mahanama born? | CREATE TABLE table_name_71 (date_of_birth VARCHAR, player VARCHAR) | SELECT date_of_birth FROM table_name_71 WHERE player = "roshan mahanama" |
What distance did giovanni lombardi win after stage 5? | CREATE TABLE table_name_10 (distance VARCHAR, stage VARCHAR, winner VARCHAR) | SELECT distance FROM table_name_10 WHERE stage > 5 AND winner = "giovanni lombardi" |
What is the value for 2012 when the value for 2009 is 1R and the vale for 2007 is 2R? | CREATE TABLE table_name_51 (Id VARCHAR) | SELECT 2012 FROM table_name_51 WHERE 2009 = "1r" AND 2007 = "2r" |
What is the total when the league cup is less than 1, and the fa cup is less than 1? | CREATE TABLE table_name_45 (total INTEGER, league_cup VARCHAR, fa_cup VARCHAR) | SELECT SUM(total) FROM table_name_45 WHERE league_cup < 1 AND fa_cup < 1 |
Show the account id and the number of transactions for each account | CREATE TABLE Financial_transactions (account_id VARCHAR) | SELECT account_id, COUNT(*) FROM Financial_transactions GROUP BY account_id |
What is the fewest number of golds for teams with a total of 3 and fewer than 2 silvers? | CREATE TABLE table_name_59 (gold INTEGER, total VARCHAR, silver VARCHAR) | SELECT MIN(gold) FROM table_name_59 WHERE total = 3 AND silver < 2 |
How do you spell the Hebrew word יְהוֹשָפָט in English? | CREATE TABLE table_name_24 (english_spelling VARCHAR, hebrew_word VARCHAR) | SELECT english_spelling FROM table_name_24 WHERE hebrew_word = "יְהוֹשָפָט" |
When the total was smaller than 290, what was the highest To par? | CREATE TABLE table_name_24 (to_par INTEGER, total INTEGER) | SELECT MAX(to_par) FROM table_name_24 WHERE total < 290 |
Who was the opponent at the Football League Trophy competition? | CREATE TABLE table_name_84 (opponents VARCHAR, competition VARCHAR) | SELECT opponents FROM table_name_84 WHERE competition = "football league trophy" |
What is the greatest position when the points are less than 21, and the played greater than 14? | CREATE TABLE table_name_78 (position INTEGER, points VARCHAR, played VARCHAR) | SELECT MAX(position) FROM table_name_78 WHERE points < 21 AND played > 14 |
What is the college/junior/club team for player don barber? | CREATE TABLE table_2679061_6 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2679061_6 WHERE player = "Don Barber" |
What is the date for the player who debuted later than 1972 against Limerick? | CREATE TABLE table_name_32 (date VARCHAR, début VARCHAR, opposition VARCHAR) | SELECT date FROM table_name_32 WHERE début > 1972 AND opposition = "limerick" |
What group was in office when the term ended in January 3, 1993? | CREATE TABLE table_197446_1 (office VARCHAR, term_ended VARCHAR) | SELECT office FROM table_197446_1 WHERE term_ended = "January 3, 1993" |
Who directed Dulcinea? | CREATE TABLE table_10798928_1 (director VARCHAR, original_title VARCHAR) | SELECT director FROM table_10798928_1 WHERE original_title = "Dulcinea" |
Which Romaji Title has a Japanese Title of 女王の教室? | CREATE TABLE table_name_64 (romaji_title VARCHAR, japanese_title VARCHAR) | SELECT romaji_title FROM table_name_64 WHERE japanese_title = "女王の教室" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.