training_input stringlengths 118 1.06k |
|---|
###context:CREATE TABLE table_26464364_1 (written_by VARCHAR, directed_by VARCHAR)
###human: Who are the writers of the episodes directed by Justin Hartley?
###assistant: SELECT written_by FROM table_26464364_1 WHERE directed_by = "Justin Hartley" |
###context:CREATE TABLE table_26464364_1 (us_air_date VARCHAR, _number VARCHAR)
###human: On which date did episode # 18 air in the U.S.?
###assistant: SELECT us_air_date FROM table_26464364_1 WHERE _number = 18 |
###context:CREATE TABLE table_26464364_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)
###human: How many million U.S. viewers watched the episode with the production code 3x6004?
###assistant: SELECT us_viewers__million_ FROM table_26464364_1 WHERE production_code = "3X6004" |
###context:CREATE TABLE table_26464364_1 (title VARCHAR, written_by VARCHAR)
###human: List the titles of episodes written by Anne Cofell Saunders.
###assistant: SELECT title FROM table_26464364_1 WHERE written_by = "Anne Cofell Saunders" |
###context:CREATE TABLE table_26464364_1 (title VARCHAR, directed_by VARCHAR, production_code VARCHAR)
###human: What is the title of the episode directed by Christopher Petry with the production cod 3x6006?
###assistant: SELECT title FROM table_26464364_1 WHERE directed_by = "Christopher Petry" AND production_... |
###context:CREATE TABLE table_2646656_3 (incumbent VARCHAR, district VARCHAR)
###human: Who was the incumbent in the Ohio 10 district?
###assistant: SELECT incumbent FROM table_2646656_3 WHERE district = "Ohio 10" |
###context:CREATE TABLE table_2646656_3 (incumbent VARCHAR, district VARCHAR)
###human: Who was the incumbent in the Ohio 5 district?
###assistant: SELECT incumbent FROM table_2646656_3 WHERE district = "Ohio 5" |
###context:CREATE TABLE table_2646656_3 (candidates VARCHAR, result VARCHAR, incumbent VARCHAR)
###human: Who were the candidates where the result was retired Republican hold and the incumbent was Philemon Bliss?
###assistant: SELECT candidates FROM table_2646656_3 WHERE result = "Retired Republican hold" AND i... |
###context:CREATE TABLE table_26476336_2 (new_conference VARCHAR, new_classification VARCHAR)
###human: How many new conferences are in the NCLL deep south conference?
###assistant: SELECT COUNT(new_conference) FROM table_26476336_2 WHERE new_classification = "NCLL Deep South Conference" |
###context:CREATE TABLE table_26476336_2 (team_nickname VARCHAR, institution VARCHAR)
###human: What is the nickname at the University of Nebraska at Omaha?
###assistant: SELECT team_nickname FROM table_26476336_2 WHERE institution = "University of Nebraska at Omaha" |
###context:CREATE TABLE table_26476336_2 (location VARCHAR, years VARCHAR)
###human: What location is listed from 2005-2010?
###assistant: SELECT location FROM table_26476336_2 WHERE years = "2005-2010" |
###context:CREATE TABLE table_26476336_2 (location VARCHAR, team_nickname VARCHAR)
###human: Where is the nickname the Red Raiders?
###assistant: SELECT location FROM table_26476336_2 WHERE team_nickname = "Red Raiders" |
###context:CREATE TABLE table_26476336_2 (institution VARCHAR, new_conference VARCHAR)
###human: What school has the new conference as SELC?
###assistant: SELECT institution FROM table_26476336_2 WHERE new_conference = "SELC" |
###context:CREATE TABLE table_26476336_2 (years VARCHAR, new_classification VARCHAR)
###human: What are the years that the new classification was MCLA division i?
###assistant: SELECT years FROM table_26476336_2 WHERE new_classification = "MCLA Division I" |
###context:CREATE TABLE table_26466528_1 (colors VARCHAR, location VARCHAR)
###human: Name the colors for north canton
###assistant: SELECT colors FROM table_26466528_1 WHERE location = "North Canton" |
###context:CREATE TABLE table_26466528_1 (join_date INTEGER)
###human: Name the most join date
###assistant: SELECT MAX(join_date) FROM table_26466528_1 |
###context:CREATE TABLE table_26466528_1 (join_date INTEGER)
###human: Name the least join date
###assistant: SELECT MIN(join_date) FROM table_26466528_1 |
###context:CREATE TABLE table_26466528_1 (location VARCHAR, colors VARCHAR)
###human: Name the location for black, orange
###assistant: SELECT location FROM table_26466528_1 WHERE colors = "Black, Orange" |
###context:CREATE TABLE table_26466528_1 (join_date VARCHAR, location VARCHAR)
###human: Name when north canton joined
###assistant: SELECT join_date FROM table_26466528_1 WHERE location = "North Canton" |
###context:CREATE TABLE table_26473176_1 (series VARCHAR, position VARCHAR)
###human: How many "series" were in the 12th "position?
###assistant: SELECT COUNT(series) FROM table_26473176_1 WHERE position = "12th" |
###context:CREATE TABLE table_26473176_1 (team VARCHAR, points VARCHAR)
###human: How many teams were at 10 points?
###assistant: SELECT COUNT(team) FROM table_26473176_1 WHERE points = 10 |
###context:CREATE TABLE table_26473176_1 (podiums VARCHAR, position VARCHAR)
###human: What was the number of podiums in 12th position?
###assistant: SELECT podiums FROM table_26473176_1 WHERE position = "12th" |
###context:CREATE TABLE table_2649597_1 (finish VARCHAR, start VARCHAR)
###human: Where did he finish when he started at 21.6?
###assistant: SELECT COUNT(finish) FROM table_2649597_1 WHERE start = "21.6" |
###context:CREATE TABLE table_2649597_1 (team_s_ VARCHAR, start VARCHAR)
###human: What teams started at 39.1?
###assistant: SELECT team_s_ FROM table_2649597_1 WHERE start = "39.1" |
###context:CREATE TABLE table_2649597_1 (season_rank VARCHAR, winnings VARCHAR)
###human: Where did they finish in the season when when they won $491,977?
###assistant: SELECT season_rank FROM table_2649597_1 WHERE winnings = "$491,977" |
###context:CREATE TABLE table_26488540_1 (genre VARCHAR, artist VARCHAR)
###human: How many different genres appear for the Jimi Hendrix Experience?
###assistant: SELECT COUNT(genre) FROM table_26488540_1 WHERE artist = "The Jimi Hendrix Experience" |
###context:CREATE TABLE table_26493520_3 (title VARCHAR, total_viewers_on_fx VARCHAR)
###human: Name the title for total viewers on fx+ being 483,000
###assistant: SELECT title FROM table_26493520_3 WHERE total_viewers_on_fx = "483,000" |
###context:CREATE TABLE table_26493520_3 (rank_on_channel VARCHAR, original_air_date VARCHAR)
###human: Name the rank on channel for january 21, 2011
###assistant: SELECT rank_on_channel FROM table_26493520_3 WHERE original_air_date = "January 21, 2011" |
###context:CREATE TABLE table_26493520_1 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR)
###human: How many episodes were written by Alexander Woo and directed by Scott Winant?
###assistant: SELECT COUNT(title) FROM table_26493520_1 WHERE written_by = "Alexander Woo" AND directed_by = "Scott Winant" |
###context:CREATE TABLE table_26533354_8 (round INTEGER, player VARCHAR)
###human: Name the most round for jordan cameron
###assistant: SELECT MAX(round) FROM table_26533354_8 WHERE player = "Jordan Cameron" |
###context:CREATE TABLE table_26533354_8 (position VARCHAR, player VARCHAR)
###human: Name the position for jordan cameron
###assistant: SELECT position FROM table_26533354_8 WHERE player = "Jordan Cameron" |
###context:CREATE TABLE table_26533354_8 (position VARCHAR, player VARCHAR)
###human: Name the position for stanley havili
###assistant: SELECT position FROM table_26533354_8 WHERE player = "Stanley Havili" |
###context:CREATE TABLE table_26533354_8 (college VARCHAR, player VARCHAR)
###human: Name the college for david carter
###assistant: SELECT college FROM table_26533354_8 WHERE player = "David Carter" |
###context:CREATE TABLE table_2651755_1 (democratic_coalition VARCHAR, together_we_can_do_more VARCHAR)
###human: What is the democratic coalation when together we can do more is sergio castro ( pc )?
###assistant: SELECT democratic_coalition FROM table_2651755_1 WHERE together_we_can_do_more = "Sergio Castro (... |
###context:CREATE TABLE table_2651755_1 (independent_regional_force VARCHAR, alliance VARCHAR)
###human: What is the independent regional force when alliance is (r) iván norambuena ( udi )?
###assistant: SELECT independent_regional_force FROM table_2651755_1 WHERE alliance = "(R) Iván Norambuena ( UDI )" |
###context:CREATE TABLE table_2651755_1 (together_we_can_do_more VARCHAR, democratic_coalition VARCHAR)
###human: Who is the together we can do more when democratic coalition is rené alinco ( ppd )?
###assistant: SELECT together_we_can_do_more FROM table_2651755_1 WHERE democratic_coalition = "René Alinco ( PPD... |
###context:CREATE TABLE table_2651755_1 (independent_regional_force VARCHAR, democratic_coalition VARCHAR)
###human: Who is the independent regional force when democratic coalition is (r) jorge tarud ( ppd )?
###assistant: SELECT independent_regional_force FROM table_2651755_1 WHERE democratic_coalition = "(R) ... |
###context:CREATE TABLE table_2651755_2 (cons VARCHAR, together_we_can_do_more VARCHAR)
###human: where together we can do more is gloria mujica ( ph ) what are all the cons.
###assistant: SELECT cons FROM table_2651755_2 WHERE together_we_can_do_more = "Gloria Mujica ( PH )" |
###context:CREATE TABLE table_2651755_2 (alliance VARCHAR, democratic_coalition VARCHAR)
###human: where democratic coalition is eduardo frei ( pdc ) what are all the alliance
###assistant: SELECT alliance FROM table_2651755_2 WHERE democratic_coalition = "Eduardo Frei ( PDC )" |
###context:CREATE TABLE table_2655016_4 (episode_title VARCHAR, nick_prod__number VARCHAR)
###human: What's the name of the episode associated with Nick production number 342?
###assistant: SELECT episode_title FROM table_2655016_4 WHERE nick_prod__number = 342 |
###context:CREATE TABLE table_2655016_4 (original_air_date VARCHAR, season__number VARCHAR)
###human: What date did season 12 premiere?
###assistant: SELECT original_air_date FROM table_2655016_4 WHERE season__number = 12 |
###context:CREATE TABLE table_2655016_4 (nick_prod__number INTEGER)
###human: What is the lowest Nick production number?
###assistant: SELECT MIN(nick_prod__number) FROM table_2655016_4 |
###context:CREATE TABLE table_2655016_10 (original_air_date VARCHAR, nick_prod__number VARCHAR)
###human: When did the episode originally air with a nick production number of 945?
###assistant: SELECT original_air_date FROM table_2655016_10 WHERE nick_prod__number = 945 |
###context:CREATE TABLE table_2655016_10 (season__number INTEGER, nick_prod__number VARCHAR)
###human: What was the latest season with a nick production number of 942?
###assistant: SELECT MAX(season__number) FROM table_2655016_10 WHERE nick_prod__number = 942 |
###context:CREATE TABLE table_26538461_2 (metrical_equivalence VARCHAR, portuguese_name VARCHAR)
###human: Name the metrical equivalence for linha
###assistant: SELECT metrical_equivalence FROM table_26538461_2 WHERE portuguese_name = "Linha" |
###context:CREATE TABLE table_26538461_2 (equivalence_in_varas VARCHAR, english_name VARCHAR)
###human: Name the equivalence for varas for geometrical pace
###assistant: SELECT equivalence_in_varas FROM table_26538461_2 WHERE english_name = "Geometrical pace" |
###context:CREATE TABLE table_26538461_2 (subdivides_in VARCHAR, equivalence_in_varas VARCHAR)
###human: Name the subdivides in equivalence for varas 1/5
###assistant: SELECT subdivides_in FROM table_26538461_2 WHERE equivalence_in_varas = "1/5" |
###context:CREATE TABLE table_26555737_1 (year__ceremony_ VARCHAR, arabic_title VARCHAR)
###human: When موسم زيتون is the arabic title when is the year (ceremony)?
###assistant: SELECT year__ceremony_ FROM table_26555737_1 WHERE arabic_title = "موسم زيتون" |
###context:CREATE TABLE table_26555737_1 (english_title VARCHAR, arabic_title VARCHAR)
###human: When ملح هذا البحر is the arabic title what is the english title?
###assistant: SELECT english_title FROM table_26555737_1 WHERE arabic_title = "ملح هذا البحر" |
###context:CREATE TABLE table_26555737_1 (director VARCHAR, result VARCHAR)
###human: When nominee is the result who is the director?
###assistant: SELECT director FROM table_26555737_1 WHERE result = "Nominee" |
###context:CREATE TABLE table_26555737_1 (result VARCHAR, director VARCHAR)
###human: When hany abu-assad category:articles with hcards is the director what is the result?
###assistant: SELECT result FROM table_26555737_1 WHERE director = "Hany Abu-Assad Category:Articles with hCards" |
###context:CREATE TABLE table_26555737_1 (result VARCHAR, year__ceremony_ VARCHAR)
###human: When 2012 (85th) is the year (ceremony) how many results?
###assistant: SELECT COUNT(result) FROM table_26555737_1 WHERE year__ceremony_ = "2012 (85th)" |
###context:CREATE TABLE table_26555737_1 (director VARCHAR, english_title VARCHAR)
###human: When salt of this sea is the english title who is the director?
###assistant: SELECT director FROM table_26555737_1 WHERE english_title = "Salt of this Sea" |
###context:CREATE TABLE table_26558_1 (record_low VARCHAR, precip VARCHAR)
###human: What was the record lowest temperature with a precipitation of 1.71 in.?
###assistant: SELECT record_low FROM table_26558_1 WHERE precip = "1.71 in." |
###context:CREATE TABLE table_26561498_1 (directed_by VARCHAR, production_code VARCHAR)
###human: who directed and produced 176452?
###assistant: SELECT directed_by FROM table_26561498_1 WHERE production_code = 176452 |
###context:CREATE TABLE table_26561498_1 (original_air_date VARCHAR, patient_portrayer VARCHAR)
###human: what is the original air date for julie warner?
###assistant: SELECT original_air_date FROM table_26561498_1 WHERE patient_portrayer = "Julie Warner" |
###context:CREATE TABLE table_26561498_1 (written_by VARCHAR, patient_portrayer VARCHAR)
###human: what was written by alex carter?
###assistant: SELECT written_by FROM table_26561498_1 WHERE patient_portrayer = "Alex Carter" |
###context:CREATE TABLE table_26561509_1 (patient_portrayer VARCHAR, production_code VARCHAR)
###human: Who is the patient portrayer of the episode with the production code 3T5004?
###assistant: SELECT patient_portrayer FROM table_26561509_1 WHERE production_code = "3T5004" |
###context:CREATE TABLE table_26561509_1 (written_by VARCHAR, directed_by VARCHAR, no VARCHAR)
###human: The episode with the no. 54, directed by Charles Haid, is written by who?
###assistant: SELECT written_by FROM table_26561509_1 WHERE directed_by = "Charles Haid" AND no = 54 |
###context:CREATE TABLE table_26561509_1 (directed_by VARCHAR, production_code VARCHAR)
###human: How many are directed by episodes with the production code 3T5009?
###assistant: SELECT COUNT(directed_by) FROM table_26561509_1 WHERE production_code = "3T5009" |
###context:CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, episode VARCHAR)
###human: When was the first UK broadcast for episode 9?
###assistant: SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE episode = 9 |
###context:CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, official_tns_gallup_ratings VARCHAR)
###human: When was the first UK broadcast for the episode with an official TNS Gallup rating of 1575000?
###assistant: SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE offici... |
###context:CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, official_barb_ratings VARCHAR)
###human: When was the first UK broadcast when the official Barb ratings was 1085000?
###assistant: SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE official_barb_ratings = 1085000 |
###context:CREATE TABLE table_26591434_1 (writer VARCHAR, ratings__kanto_ VARCHAR)
###human: Who is the writer with the ratings 14.8?
###assistant: SELECT writer FROM table_26591434_1 WHERE ratings__kanto_ = "14.8" |
###context:CREATE TABLE table_26591434_1 (original_airdate VARCHAR, writer VARCHAR)
###human: What is the original air date for the writer tanaka shinichi?
###assistant: SELECT original_airdate FROM table_26591434_1 WHERE writer = "Tanaka Shinichi" |
###context:CREATE TABLE table_26591434_1 (ratings__kansai_ VARCHAR, original_airdate VARCHAR)
###human: What is the ratings for the original air date may 25, 2010 22.00 - 22.54?
###assistant: SELECT ratings__kansai_ FROM table_26591434_1 WHERE original_airdate = "May 25, 2010 22.00 - 22.54" |
###context:CREATE TABLE table_26591434_1 (ratings__kanto_ VARCHAR, episode VARCHAR)
###human: What was the ratings for episode 11?
###assistant: SELECT ratings__kanto_ FROM table_26591434_1 WHERE episode = 11 |
###context:CREATE TABLE table_26593762_3 (outgoing_manager VARCHAR, incoming_manager VARCHAR)
###human: Who was the outgoing manager of the team whose incoming manager was Dougie Freedman?
###assistant: SELECT outgoing_manager FROM table_26593762_3 WHERE incoming_manager = "Dougie Freedman" |
###context:CREATE TABLE table_26593762_3 (position_in_table VARCHAR, outgoing_manager VARCHAR)
###human: What was the table position for the team whose outgoing manager was Brian Laws?
###assistant: SELECT position_in_table FROM table_26593762_3 WHERE outgoing_manager = "Brian Laws" |
###context:CREATE TABLE table_26593762_3 (incoming_manager VARCHAR, team VARCHAR)
###human: How many incoming managers did Burnley have?
###assistant: SELECT COUNT(incoming_manager) FROM table_26593762_3 WHERE team = "Burnley" |
###context:CREATE TABLE table_26593762_3 (manner_of_departure VARCHAR, incoming_manager VARCHAR)
###human: What was the manner of departure for the team whose incoming manager was George Burley?
###assistant: SELECT manner_of_departure FROM table_26593762_3 WHERE incoming_manager = "George Burley" |
###context:CREATE TABLE table_26614365_5 (galician___reintegrationist__ VARCHAR, galician___official__ VARCHAR)
###human: What is the Galician (reintegrationist) word of the Galician (Official) is bo día / bos días?
###assistant: SELECT galician___reintegrationist__ FROM table_26614365_5 WHERE galician___offici... |
###context:CREATE TABLE table_26614365_5 (galician___reintegrationist__ VARCHAR, galician___official__ VARCHAR)
###human: What is the Galician (reintegrationist) word of the Galician (Official) is adeus*?
###assistant: SELECT galician___reintegrationist__ FROM table_26614365_5 WHERE galician___official__ = "Ade... |
###context:CREATE TABLE table_26614365_5 (portuguese VARCHAR, english VARCHAR)
###human: What is the Portuguese word for the English word 'grandfather'?
###assistant: SELECT portuguese FROM table_26614365_5 WHERE english = "Grandfather" |
###context:CREATE TABLE table_26614365_5 (spanish VARCHAR, portuguese VARCHAR)
###human: How many Spanish word is there for the Portuguese bem-vindo?
###assistant: SELECT COUNT(spanish) FROM table_26614365_5 WHERE portuguese = "Bem-vindo" |
###context:CREATE TABLE table_26614365_5 (portuguese VARCHAR, english VARCHAR)
###human: What is the Portuguese word for the English word 'welcome'?
###assistant: SELECT portuguese FROM table_26614365_5 WHERE english = "Welcome" |
###context:CREATE TABLE table_26615633_3 (gender VARCHAR, species VARCHAR)
###human: what gender has an asian black bear?
###assistant: SELECT gender FROM table_26615633_3 WHERE species = "Asian black bear" |
###context:CREATE TABLE table_26615633_3 (sweet VARCHAR, voice_actor VARCHAR)
###human: what is the sweet for voice actor saki fujita?
###assistant: SELECT sweet FROM table_26615633_3 WHERE voice_actor = "Saki Fujita" |
###context:CREATE TABLE table_26615633_3 (gender VARCHAR, species VARCHAR)
###human: whatis the gender wher ethe species is holland lop?
###assistant: SELECT gender FROM table_26615633_3 WHERE species = "Holland Lop" |
###context:CREATE TABLE table_26615633_3 (media_debut VARCHAR, species VARCHAR)
###human: what is the media debut for the asian black bear?
###assistant: SELECT media_debut FROM table_26615633_3 WHERE species = "Asian black bear" |
###context:CREATE TABLE table_26614365_1 (spanish VARCHAR, central VARCHAR)
###human: What is the Spanish word for cas [ˈkas]?
###assistant: SELECT spanish FROM table_26614365_1 WHERE central = "cas [ˈkas]" |
###context:CREATE TABLE table_26614365_1 (eastern VARCHAR, english VARCHAR)
###human: What is the eastern word for "light"?
###assistant: SELECT eastern FROM table_26614365_1 WHERE english = "light" |
###context:CREATE TABLE table_26614365_1 (central VARCHAR, english VARCHAR)
###human: What is the central word for "robbers"?
###assistant: SELECT central FROM table_26614365_1 WHERE english = "robbers" |
###context:CREATE TABLE table_26614365_1 (latin VARCHAR, english VARCHAR)
###human: What is the Latin for "you sang"?
###assistant: SELECT latin FROM table_26614365_1 WHERE english = "you sang" |
###context:CREATE TABLE table_26614365_1 (western VARCHAR, latin VARCHAR)
###human: What is the western word for "latrones" in Latin?
###assistant: SELECT western FROM table_26614365_1 WHERE latin = "latrones" |
###context:CREATE TABLE table_26614365_1 (old_galician__13th_15th_c_ VARCHAR, portuguese VARCHAR)
###human: What is the Old Galician for cantaste in Portuguese?
###assistant: SELECT old_galician__13th_15th_c_ FROM table_26614365_1 WHERE portuguese = "cantaste" |
###context:CREATE TABLE table_26609958_1 (rainfall_totals__million_m_3__ INTEGER)
###human: What is the lowest overall amount of rainfall totals (million m 3)?
###assistant: SELECT MIN(rainfall_totals__million_m_3__) FROM table_26609958_1 |
###context:CREATE TABLE table_26609958_1 (groundwater_discharge__million_m_3__ INTEGER, hydrographic_basin VARCHAR)
###human: When cabarita river is the hydrographic basin what is the lowest groundwater discharge (million m 3)?
###assistant: SELECT MIN(groundwater_discharge__million_m_3__) FROM table_26609958_1... |
###context:CREATE TABLE table_26609958_1 (rainfall_totals__million_m_3__ VARCHAR, hydrographic_basin VARCHAR)
###human: When martha brae, river is the hydrographic basin what is the rainfall totals (million m 3)?
###assistant: SELECT rainfall_totals__million_m_3__ FROM table_26609958_1 WHERE hydrographic_basin ... |
###context:CREATE TABLE table_26611679_3 (average VARCHAR, category VARCHAR)
###human: Name the average for assists per game
###assistant: SELECT average FROM table_26611679_3 WHERE category = "Assists per game" |
###context:CREATE TABLE table_26611679_3 (average VARCHAR, games_played VARCHAR)
###human: Name the average for 23 games played
###assistant: SELECT average FROM table_26611679_3 WHERE games_played = 23 |
###context:CREATE TABLE table_26611679_3 (category VARCHAR, totals VARCHAR)
###human: Name the category for 50 totals
###assistant: SELECT category FROM table_26611679_3 WHERE totals = "50" |
###context:CREATE TABLE table_26611679_3 (average VARCHAR, category VARCHAR)
###human: Name the number of average for steals per game
###assistant: SELECT COUNT(average) FROM table_26611679_3 WHERE category = "Steals per game" |
###context:CREATE TABLE table_26615633_1 (voice_actor VARCHAR, species VARCHAR)
###human: who was the voice actor when the species is hedgehog?
###assistant: SELECT voice_actor FROM table_26615633_1 WHERE species = "Hedgehog" |
###context:CREATE TABLE table_26615633_1 (voice_actor VARCHAR, birthday VARCHAR)
###human: who is the voice actor with the birthday march 26?
###assistant: SELECT voice_actor FROM table_26615633_1 WHERE birthday = "March 26" |
###context:CREATE TABLE table_26615633_1 (jewel VARCHAR, media_debut VARCHAR)
###human: what is the jewel power when the media debut is ep 17?
###assistant: SELECT jewel AS Power FROM table_26615633_1 WHERE media_debut = "EP 17" |
###context:CREATE TABLE table_26615633_1 (birthday VARCHAR, jewel VARCHAR)
###human: how many times is the jewel malachite?
###assistant: SELECT COUNT(birthday) FROM table_26615633_1 WHERE jewel = "Malachite" |
###context:CREATE TABLE table_26615633_1 (species VARCHAR, jewel VARCHAR)
###human: What is the species when jewel is coal?
###assistant: SELECT species FROM table_26615633_1 WHERE jewel = "Coal" |
###context:CREATE TABLE table_26638600_3 (lites_2_race_two_winning_team VARCHAR, lites_1_race_one_winning_team VARCHAR)
###human: Who was the lights 2 race two winning team when the lites 1 race one winning team was #13 Inspire Motorsports?
###assistant: SELECT lites_2_race_two_winning_team FROM table_26638600_... |
###context:CREATE TABLE table_26638600_3 (lites_2_race_one_winning_team VARCHAR, lites_1_race_two_winning_team VARCHAR)
###human: How many different circuits had Gary Gibson has the Lites 1 race two winning team?
###assistant: SELECT COUNT(lites_2_race_one_winning_team) FROM table_26638600_3 WHERE lites_1_race_... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.