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