training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_58 (engine VARCHAR, rounds VARCHAR)
###human: In rounds 7-13 what engine was featured?
###assistant: SELECT engine FROM table_name_58 WHERE rounds = "7-13" |
###context:CREATE TABLE table_name_94 (away_team VARCHAR, home_team VARCHAR)
###human: What score was conceded by Richmond?
###assistant: SELECT away_team AS score FROM table_name_94 WHERE home_team = "richmond" |
###context:CREATE TABLE table_name_63 (goals VARCHAR, date VARCHAR)
###human: What is the number of Goals on 1950-05-30?
###assistant: SELECT COUNT(goals) FROM table_name_63 WHERE date = "1950-05-30" |
###context:CREATE TABLE table_name_75 (goals INTEGER, venue VARCHAR, date VARCHAR)
###human: In 1948-10-28, what were the lowest Goals in Tehran, Iran?
###assistant: SELECT MIN(goals) FROM table_name_75 WHERE venue = "tehran, iran" AND date = "1948-10-28" |
###context:CREATE TABLE table_name_16 (venue VARCHAR, result VARCHAR)
###human: In what Venue was the Result 1-3?
###assistant: SELECT venue FROM table_name_16 WHERE result = "1-3" |
###context:CREATE TABLE table_name_26 (venue VARCHAR, competition VARCHAR, date VARCHAR)
###human: In 1948-10-28, in what Venue was the Competition of International Match held?
###assistant: SELECT venue FROM table_name_26 WHERE competition = "international match" AND date = "1948-10-28" |
###context:CREATE TABLE table_name_42 (chassis VARCHAR, engine VARCHAR)
###human: What was the Zakspeed 1500/4 1.5 l4 t chassis?
###assistant: SELECT chassis FROM table_name_42 WHERE engine = "zakspeed 1500/4 1.5 l4 t" |
###context:CREATE TABLE table_name_22 (engine VARCHAR, driver VARCHAR)
###human: What was the Michele Alboreto's engine?
###assistant: SELECT engine FROM table_name_22 WHERE driver = "michele alboreto" |
###context:CREATE TABLE table_name_26 (rank INTEGER, candidate_name VARCHAR)
###human: What is the average rank for antun salman?
###assistant: SELECT AVG(rank) FROM table_name_26 WHERE candidate_name = "antun salman" |
###context:CREATE TABLE table_name_55 (votes VARCHAR, candidate_name VARCHAR, gender VARCHAR, religion VARCHAR)
###human: Khalil chawka has a gender of β, a religion of βͺ, and how many votes?
###assistant: SELECT votes FROM table_name_55 WHERE gender = "β" AND religion = "βͺ" AND candidate_name = "khalil chawka" |
###context:CREATE TABLE table_name_66 (candidate_name VARCHAR, votes VARCHAR, religion VARCHAR)
###human: Who has a religion of βͺ and more than 1853 votes?
###assistant: SELECT candidate_name FROM table_name_66 WHERE votes > 1853 AND religion = "βͺ" |
###context:CREATE TABLE table_name_77 (recorded VARCHAR, track VARCHAR, time VARCHAR)
###human: What is the recorder has a Track more than 11 with a time 3:06
###assistant: SELECT recorded FROM table_name_77 WHERE track > 11 AND time = "3:06" |
###context:CREATE TABLE table_name_64 (track INTEGER, song_title VARCHAR)
###human: Which track has a title : Just a little bit
###assistant: SELECT MIN(track) FROM table_name_64 WHERE song_title = "just a little bit" |
###context:CREATE TABLE table_name_78 (trophy VARCHAR, season VARCHAR)
###human: What is the Trophy with a Season with 2008β2009?
###assistant: SELECT trophy FROM table_name_78 WHERE season = "2008β2009" |
###context:CREATE TABLE table_name_31 (wasatch VARCHAR, total_time VARCHAR)
###human: What Wasatch time corresponds to a total time of 122:13:40?
###assistant: SELECT wasatch FROM table_name_31 WHERE total_time = "122:13:40" |
###context:CREATE TABLE table_name_29 (opponents_in_final VARCHAR, date VARCHAR)
###human: Who were the opponents in the final on 9 January 1994?
###assistant: SELECT opponents_in_final FROM table_name_29 WHERE date = "9 january 1994" |
###context:CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR)
###human: Who was Melbourne's home team opponent?
###assistant: SELECT home_team FROM table_name_90 WHERE away_team = "melbourne" |
###context:CREATE TABLE table_name_10 (away_team VARCHAR, home_team VARCHAR)
###human: Who was Richmond's away team opponent?
###assistant: SELECT away_team FROM table_name_10 WHERE home_team = "richmond" |
###context:CREATE TABLE table_name_88 (league INTEGER, fa_cup VARCHAR, name VARCHAR)
###human: What is the smallest value for League Cup when the League number is greater than 1, no FA Cups, and Brian Deane scoring?
###assistant: SELECT MIN(league) AS Cup FROM table_name_88 WHERE league > 1 AND name = "brian deane" AND fa_cup < 1 |
###context:CREATE TABLE table_name_58 (region VARCHAR, year VARCHAR, name VARCHAR)
###human: Name the region before 2008 when name of best 1200
###assistant: SELECT region FROM table_name_58 WHERE year < 2008 AND name = "best 1200" |
###context:CREATE TABLE table_name_44 (method VARCHAR, res VARCHAR, time VARCHAR)
###human: What method resulted in a win and a time of 4:36?
###assistant: SELECT method FROM table_name_44 WHERE res = "win" AND time = "4:36" |
###context:CREATE TABLE table_name_92 (venue VARCHAR, away_team VARCHAR)
###human: At what venue did the Essendon team play as an away team?
###assistant: SELECT venue FROM table_name_92 WHERE away_team = "essendon" |
###context:CREATE TABLE table_name_98 (home_team VARCHAR, venue VARCHAR)
###human: Who was the home team for the game played at Junction Oval?
###assistant: SELECT home_team FROM table_name_98 WHERE venue = "junction oval" |
###context:CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR)
###human: What was the score of the home team when the away team was Geelong?
###assistant: SELECT home_team AS score FROM table_name_59 WHERE away_team = "geelong" |
###context:CREATE TABLE table_name_77 (away_team VARCHAR, home_team VARCHAR)
###human: What was the away team when the home team was South Melbourne?
###assistant: SELECT away_team FROM table_name_77 WHERE home_team = "south melbourne" |
###context:CREATE TABLE table_name_10 (home_team VARCHAR, venue VARCHAR)
###human: What was the name of the home team playing at the Junction Oval venue?
###assistant: SELECT home_team FROM table_name_10 WHERE venue = "junction oval" |
###context:CREATE TABLE table_name_86 (established VARCHAR, club VARCHAR)
###human: What is the total number of the established club of Lehigh Valley Storm?
###assistant: SELECT COUNT(established) FROM table_name_86 WHERE club = "lehigh valley storm" |
###context:CREATE TABLE table_name_96 (league VARCHAR, sport VARCHAR)
###human: What is the name of a league in the sport of baseball?
###assistant: SELECT league FROM table_name_96 WHERE sport = "baseball" |
###context:CREATE TABLE table_name_55 (venue VARCHAR, sport VARCHAR, club VARCHAR)
###human: What venue does the soccer team Pennsylvania Stoners play in?
###assistant: SELECT venue FROM table_name_55 WHERE sport = "soccer" AND club = "pennsylvania stoners" |
###context:CREATE TABLE table_name_67 (game__number INTEGER, date VARCHAR)
###human: What game number was played on March 4?
###assistant: SELECT AVG(game__number) FROM table_name_67 WHERE date = "march 4" |
###context:CREATE TABLE table_name_69 (record VARCHAR, visitor VARCHAR)
###human: What is the record when the visitor is Buffalo?
###assistant: SELECT record FROM table_name_69 WHERE visitor = "buffalo" |
###context:CREATE TABLE table_name_4 (attendance VARCHAR, result VARCHAR)
###human: Tell me the number of attendance that has a result of l 35-17
###assistant: SELECT COUNT(attendance) FROM table_name_4 WHERE result = "l 35-17" |
###context:CREATE TABLE table_name_60 (attendance VARCHAR, week VARCHAR, result VARCHAR)
###human: I want the attendance for week larger than 10 and result of l 22-21
###assistant: SELECT attendance FROM table_name_60 WHERE week > 10 AND result = "l 22-21" |
###context:CREATE TABLE table_name_60 (attendance VARCHAR, result VARCHAR, week VARCHAR)
###human: Name for me the total number in attendance for week before 2 and result of t 24-24
###assistant: SELECT COUNT(attendance) FROM table_name_60 WHERE result = "t 24-24" AND week < 2 |
###context:CREATE TABLE table_name_64 (attendance INTEGER, opponent VARCHAR)
###human: I want the greatest attendance when the opponent is the chicago bears
###assistant: SELECT MAX(attendance) FROM table_name_64 WHERE opponent = "chicago bears" |
###context:CREATE TABLE table_name_16 (attendance INTEGER, visitor VARCHAR)
###human: What is the average attendance for a game against Phoenix?
###assistant: SELECT AVG(attendance) FROM table_name_16 WHERE visitor = "phoenix" |
###context:CREATE TABLE table_name_78 (home VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCHAR)
###human: What was the home team in the February 22 game that Legace played in for the St. Louis Blues?
###assistant: SELECT home FROM table_name_78 WHERE decision = "legace" AND visitor = "st. louis" AND date = "february 22" |
###context:CREATE TABLE table_name_65 (home_team VARCHAR, away_team VARCHAR)
###human: Who was Carlton's home team opponent?
###assistant: SELECT home_team FROM table_name_65 WHERE away_team = "carlton" |
###context:CREATE TABLE table_name_68 (away_team VARCHAR, venue VARCHAR)
###human: Who was the away team at Lake Oval?
###assistant: SELECT away_team AS score FROM table_name_68 WHERE venue = "lake oval" |
###context:CREATE TABLE table_name_8 (away_team VARCHAR, home_team VARCHAR)
###human: Who was South Melbourne's away team opponent?
###assistant: SELECT away_team FROM table_name_8 WHERE home_team = "south melbourne" |
###context:CREATE TABLE table_name_89 (grid INTEGER, laps VARCHAR)
###human: What is the high grid with 27 laps?
###assistant: SELECT MAX(grid) FROM table_name_89 WHERE laps = 27 |
###context:CREATE TABLE table_name_4 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
###human: What is the high grid that has a Time/Retired of +6 laps, and under 69 laps?
###assistant: SELECT MAX(grid) FROM table_name_4 WHERE time_retired = "+6 laps" AND laps < 69 |
###context:CREATE TABLE table_name_43 (copies_sold VARCHAR, first_week_sales VARCHAR)
###human: What's the total number of copies sold for the single that sold 206,030 in the first week?
###assistant: SELECT COUNT(copies_sold) FROM table_name_43 WHERE first_week_sales = 206 OFFSET 030 |
###context:CREATE TABLE table_name_3 (release_date INTEGER, label VARCHAR, country VARCHAR)
###human: What was the latest release date for Ariola in Spain?
###assistant: SELECT MAX(release_date) FROM table_name_3 WHERE label = "ariola" AND country = "spain" |
###context:CREATE TABLE table_name_48 (release_format VARCHAR, release_date INTEGER)
###human: What type of format was released after 1979?
###assistant: SELECT release_format FROM table_name_48 WHERE release_date > 1979 |
###context:CREATE TABLE table_name_3 (release_date INTEGER, label VARCHAR)
###human: On what date did Epic label start its release?
###assistant: SELECT SUM(release_date) FROM table_name_3 WHERE label = "epic" |
###context:CREATE TABLE table_name_36 (games VARCHAR, rebounds VARCHAR, rank VARCHAR)
###human: Which game had less than 270 rebounds and a rank lower than 5?
###assistant: SELECT games FROM table_name_36 WHERE rebounds < 270 AND rank < 5 |
###context:CREATE TABLE table_name_20 (games INTEGER, name VARCHAR, rebounds VARCHAR)
###human: Which game did Curtis Borchardt play with more than 274 rebounds?
###assistant: SELECT SUM(games) FROM table_name_20 WHERE name = "curtis borchardt" AND rebounds > 274 |
###context:CREATE TABLE table_name_70 (team VARCHAR, name VARCHAR, rebounds VARCHAR, games VARCHAR)
###human: In game 34 Curtis Borchardt played on which team with less than 275 rebounds?
###assistant: SELECT team FROM table_name_70 WHERE rebounds < 275 AND games < 34 AND name = "curtis borchardt" |
###context:CREATE TABLE table_name_73 (rebounds VARCHAR, rank VARCHAR)
###human: How many rebounds occurred in a rank 4 game?
###assistant: SELECT rebounds FROM table_name_73 WHERE rank = 4 |
###context:CREATE TABLE table_name_88 (games VARCHAR, name VARCHAR)
###human: Which game did was Bud Eley a player in?
###assistant: SELECT games FROM table_name_88 WHERE name = "bud eley" |
###context:CREATE TABLE table_name_80 (games INTEGER, team VARCHAR, rank VARCHAR, rebounds VARCHAR)
###human: Which game did Bruesa GBC play in with fewer than 275 rebounds that is ranked less than 4?
###assistant: SELECT SUM(games) FROM table_name_80 WHERE rank < 4 AND rebounds < 275 AND team = "bruesa gbc" |
###context:CREATE TABLE table_name_6 (grid VARCHAR, driver VARCHAR)
###human: What is the grid for johnny herbert?
###assistant: SELECT grid FROM table_name_6 WHERE driver = "johnny herbert" |
###context:CREATE TABLE table_name_43 (rank INTEGER, studio_s_ VARCHAR, year VARCHAR)
###human: Tell me the average rank for dharma productions before 2013
###assistant: SELECT AVG(rank) FROM table_name_43 WHERE studio_s_ = "dharma productions" AND year < 2013 |
###context:CREATE TABLE table_name_33 (year INTEGER, rank VARCHAR)
###human: Name the average year for 4 rank
###assistant: SELECT AVG(year) FROM table_name_33 WHERE rank = 4 |
###context:CREATE TABLE table_name_99 (rank INTEGER, year VARCHAR, studio_s_ VARCHAR)
###human: Name the lowest rank for red chillies entertainment for 2013
###assistant: SELECT MIN(rank) FROM table_name_99 WHERE year = 2013 AND studio_s_ = "red chillies entertainment" |
###context:CREATE TABLE table_name_27 (date VARCHAR, away_team VARCHAR)
###human: Which date did richmond play as away?
###assistant: SELECT date FROM table_name_27 WHERE away_team = "richmond" |
###context:CREATE TABLE table_name_52 (rank INTEGER, wins VARCHAR, events VARCHAR)
###human: What is the rank for the player with 5 wins and under 32 events?
###assistant: SELECT SUM(rank) FROM table_name_52 WHERE wins = 5 AND events < 32 |
###context:CREATE TABLE table_name_46 (issue_price VARCHAR, mintage VARCHAR, artist VARCHAR, year VARCHAR)
###human: What is the issue price of a Year 2000 coin by artist John Mardon of the Included in Steam Buggy mintage.
###assistant: SELECT issue_price FROM table_name_46 WHERE artist = "john mardon" AND year = 2000 AND mintage = "included in steam buggy" |
###context:CREATE TABLE table_name_86 (theme VARCHAR, year VARCHAR, artist VARCHAR)
###human: What is the theme of the Year 2002 which was created by Artist Dan Fell?
###assistant: SELECT theme FROM table_name_86 WHERE year = 2002 AND artist = "dan fell" |
###context:CREATE TABLE table_name_81 (artist VARCHAR, year VARCHAR, mintage VARCHAR)
###human: What artist had a mintage of 41,828 before year 2002?
###assistant: SELECT artist FROM table_name_81 WHERE year < 2002 AND mintage = "41,828" |
###context:CREATE TABLE table_name_36 (issue_price VARCHAR, mintage VARCHAR)
###human: A mintage of 31,997 has what issue price?
###assistant: SELECT issue_price FROM table_name_36 WHERE mintage = "31,997" |
###context:CREATE TABLE table_name_71 (Control VARCHAR, motors VARCHAR)
###human: Tell me the control trailers for 52 motors
###assistant: SELECT Control AS trailers FROM table_name_71 WHERE motors = "52" |
###context:CREATE TABLE table_name_48 (trailers VARCHAR, year VARCHAR, builder VARCHAR)
###human: I want the trailers for 1931 and builder of mccw
###assistant: SELECT trailers FROM table_name_48 WHERE year = "1931" AND builder = "mccw" |
###context:CREATE TABLE table_name_45 (Control VARCHAR, year VARCHAR, builder VARCHAR)
###human: I want the control trailers for 1931 with builder of grcw
###assistant: SELECT Control AS trailers FROM table_name_45 WHERE year = "1931" AND builder = "grcw" |
###context:CREATE TABLE table_name_92 (trailers VARCHAR, motors VARCHAR)
###human: I want the trailers for motors of 145
###assistant: SELECT trailers FROM table_name_92 WHERE motors = "145" |
###context:CREATE TABLE table_name_77 (wins INTEGER, top_5 INTEGER)
###human: Tell me the sum of wins for top 5 less than 1
###assistant: SELECT SUM(wins) FROM table_name_77 WHERE top_5 < 1 |
###context:CREATE TABLE table_name_17 (events INTEGER, top_10 INTEGER)
###human: I want the average events for top 10 less than 4
###assistant: SELECT AVG(events) FROM table_name_17 WHERE top_10 < 4 |
###context:CREATE TABLE table_name_99 (cuts_made INTEGER, top_5 VARCHAR, top_10 VARCHAR)
###human: Name the highest cuts made when top 5 is less than 3 and top ten is more than 4
###assistant: SELECT MAX(cuts_made) FROM table_name_99 WHERE top_5 < 3 AND top_10 > 4 |
###context:CREATE TABLE table_name_84 (top_25 INTEGER, events VARCHAR, top_10 VARCHAR)
###human: I want the most top 25 when events are more than 20 and top 10 is more than 21
###assistant: SELECT MAX(top_25) FROM table_name_84 WHERE events > 20 AND top_10 > 21 |
###context:CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR)
###human: What was the Attendance on April 28?
###assistant: SELECT SUM(attendance) FROM table_name_40 WHERE date = "april 28" |
###context:CREATE TABLE table_name_64 (released VARCHAR, dvd_name VARCHAR)
###human: What was escape to river cottage released?
###assistant: SELECT released FROM table_name_64 WHERE dvd_name = "escape to river cottage" |
###context:CREATE TABLE table_name_61 (dvd_name VARCHAR, duration VARCHAR)
###human: What DVD has a time of 2 hours 22 minutes?
###assistant: SELECT dvd_name FROM table_name_61 WHERE duration = "2 hours 22 minutes" |
###context:CREATE TABLE table_name_14 (date VARCHAR, week VARCHAR)
###human: What was the date for the game in week 7?
###assistant: SELECT date FROM table_name_14 WHERE week = 7 |
###context:CREATE TABLE table_name_54 (date VARCHAR, attendance VARCHAR)
###human: On what date was the attendance of the crowd 78,431?
###assistant: SELECT date FROM table_name_54 WHERE attendance = "78,431" |
###context:CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR)
###human: What was the date of the Capitals game when Columbus was the home team?
###assistant: SELECT date FROM table_name_28 WHERE home = "columbus" |
###context:CREATE TABLE table_name_20 (date VARCHAR, competition VARCHAR)
###human: The 2002 African Cup of Nations was held on what date?
###assistant: SELECT date FROM table_name_20 WHERE competition = "2002 african cup of nations" |
###context:CREATE TABLE table_name_51 (competition VARCHAR, venue VARCHAR)
###human: Which competition took place at Stade Fernand Fournier, Arles?
###assistant: SELECT competition FROM table_name_51 WHERE venue = "stade fernand fournier, arles" |
###context:CREATE TABLE table_name_83 (crowd VARCHAR, away_team VARCHAR)
###human: What was the attendance of the game where fitzroy was the away team?
###assistant: SELECT COUNT(crowd) FROM table_name_83 WHERE away_team = "fitzroy" |
###context:CREATE TABLE table_name_80 (artist VARCHAR, theme VARCHAR)
###human: Which artist created the silver dollar for the 400th anniversary of Quebec?
###assistant: SELECT artist FROM table_name_80 WHERE theme = "400th anniversary of quebec" |
###context:CREATE TABLE table_name_25 (year VARCHAR, artist VARCHAR)
###human: Which year did the Royal Canadian Mint Staff create a silver dollar?
###assistant: SELECT year FROM table_name_25 WHERE artist = "royal canadian mint staff" |
###context:CREATE TABLE table_name_93 (mintage VARCHAR, artist VARCHAR)
###human: How many coins by Suzanne Duranceau were minted?
###assistant: SELECT mintage FROM table_name_93 WHERE artist = "suzanne duranceau" |
###context:CREATE TABLE table_name_72 (method VARCHAR, round VARCHAR, res VARCHAR)
###human: What was the method for the resolution of nc where the fight lasted less than 3 rounds?
###assistant: SELECT method FROM table_name_72 WHERE round < 3 AND res = "nc" |
###context:CREATE TABLE table_name_95 (opponent VARCHAR, round VARCHAR, event VARCHAR)
###human: Who was the opponent during the UFC 90 event with a fight that lasted less than 4 rounds?
###assistant: SELECT opponent FROM table_name_95 WHERE round < 4 AND event = "ufc 90" |
###context:CREATE TABLE table_name_33 (method VARCHAR, event VARCHAR)
###human: What was the method for the resolution of the fight at UFC 160?
###assistant: SELECT method FROM table_name_33 WHERE event = "ufc 160" |
###context:CREATE TABLE table_name_48 (league VARCHAR, date VARCHAR)
###human: What is the league on 5 October 1997?
###assistant: SELECT league FROM table_name_48 WHERE date = "5 october 1997" |
###context:CREATE TABLE table_name_50 (season VARCHAR, date VARCHAR)
###human: Which season was on 30 October 1977?
###assistant: SELECT season FROM table_name_50 WHERE date = "30 october 1977" |
###context:CREATE TABLE table_name_1 (season VARCHAR, match VARCHAR, date VARCHAR)
###human: What season had the Roma-Napoli match on 12 September 1993?
###assistant: SELECT season FROM table_name_1 WHERE match = "roma-napoli" AND date = "12 september 1993" |
###context:CREATE TABLE table_name_28 (club_province VARCHAR, caps VARCHAR, position VARCHAR)
###human: What club/province for the player with over 18 caps and plays the fly-half?
###assistant: SELECT club_province FROM table_name_28 WHERE caps > 18 AND position = "fly-half" |
###context:CREATE TABLE table_name_14 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
###human: What driver has less than 18 laps and a grid number under 16?
###assistant: SELECT driver FROM table_name_14 WHERE laps < 18 AND grid < 16 |
###context:CREATE TABLE table_name_5 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)
###human: Who constructed the car with laps more than 70 and a time/retired of +12.535?
###assistant: SELECT constructor FROM table_name_5 WHERE laps > 70 AND time_retired = "+12.535" |
###context:CREATE TABLE table_name_52 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, driver VARCHAR)
###human: What was Alexander Wurz's highest laps when he has a grid less than 14 and a time/retired of +1 lap.
###assistant: SELECT MAX(laps) FROM table_name_52 WHERE time_retired = "+1 lap" AND driver = "alexander wurz" AND grid < 14 |
###context:CREATE TABLE table_name_54 (home_team VARCHAR, away_team VARCHAR)
###human: Who was Footscray's opponent on June 15th of 1968?
###assistant: SELECT home_team FROM table_name_54 WHERE away_team = "footscray" |
###context:CREATE TABLE table_name_43 (joined INTEGER, division VARCHAR, location VARCHAR)
###human: What was the most recent year that a team located in Highland Township and a member of the West Division joined the Kensington Lakes Activities Association?
###assistant: SELECT MAX(joined) FROM table_name_43 WHERE division = "west" AND location = "highland township" |
###context:CREATE TABLE table_name_87 (pole_position VARCHAR, race VARCHAR)
###human: What was the pole position for the belgian grand prix?
###assistant: SELECT pole_position FROM table_name_87 WHERE race = "belgian grand prix" |
###context:CREATE TABLE table_name_53 (race VARCHAR)
###human: Who won the australian grand prix?
###assistant: SELECT race AS Winner FROM table_name_53 WHERE race = "australian grand prix" |
###context:CREATE TABLE table_name_39 (pole_position VARCHAR, location VARCHAR)
###human: What was the pole position for jerez?
###assistant: SELECT pole_position FROM table_name_39 WHERE location = "jerez" |
###context:CREATE TABLE table_name_66 (enzyme VARCHAR, disorder VARCHAR)
###human: What is the enzyme involved in the disorder of Ornithine Transcarbamylase deficiency?
###assistant: SELECT enzyme FROM table_name_66 WHERE disorder = "ornithine transcarbamylase deficiency" |
###context:CREATE TABLE table_name_15 (measurements VARCHAR, disorder VARCHAR)
###human: What lab measurements can help diagnosie ornithine transcarbamylase deficiency?
###assistant: SELECT measurements FROM table_name_15 WHERE disorder = "ornithine transcarbamylase deficiency" |
###context:CREATE TABLE table_name_30 (abb VARCHAR, disorder VARCHAR)
###human: What is the abbreviation of the enzyme involved in carbamoyl phosphate synthetase i deficiency?
###assistant: SELECT abb FROM table_name_30 WHERE disorder = "carbamoyl phosphate synthetase i deficiency" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.