combined_text stringlengths 106 1.05k |
|---|
###question:In rounds 7-13 what engine was featured?###answer:SELECT engine FROM table_name_58 WHERE rounds = "7-13"###context:CREATE TABLE table_name_58 (engine VARCHAR, rounds VARCHAR) |
###question:What score was conceded by Richmond?###answer: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 is the number of Goals on 1950-05-30?###answer:SELECT COUNT(goals) FROM table_name_63 WHERE date = "1950-05-30"###context:CREATE TABLE table_name_63 (goals 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"###context:CREATE TABLE table_name_75 (goals INTEGER, venue VARCHAR, date VARCHAR) |
###question:In what Venue was the Result 1-3?###answer:SELECT venue FROM table_name_16 WHERE result = "1-3"###context:CREATE TABLE table_name_16 (venue VARCHAR, result 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"###context:CREATE TABLE table_name_26 (venue VARCHAR, competition VARCHAR, date 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"###context:CREATE TABLE table_name_42 (chassis VARCHAR, engine VARCHAR) |
###question:What was the Michele Alboreto's engine?###answer:SELECT engine FROM table_name_22 WHERE driver = "michele alboreto"###context:CREATE TABLE table_name_22 (engine VARCHAR, driver VARCHAR) |
###question:What is the average rank for antun salman?###answer:SELECT AVG(rank) FROM table_name_26 WHERE candidate_name = "antun salman"###context:CREATE TABLE table_name_26 (rank INTEGER, candidate_name 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"###context:CREATE TABLE table_name_55 (votes VARCHAR, candidate_name VARCHAR, gender 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 = "☪"###context:CREATE TABLE table_name_66 (candidate_name VARCHAR, votes VARCHAR, religion 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"###context:CREATE TABLE table_name_77 (recorded VARCHAR, track VARCHAR, time 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"###context:CREATE TABLE table_name_64 (track INTEGER, song_title VARCHAR) |
###question:What is the Trophy with a Season with 2008–2009?###answer:SELECT trophy FROM table_name_78 WHERE season = "2008–2009"###context:CREATE TABLE table_name_78 (trophy VARCHAR, season 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"###context:CREATE TABLE table_name_31 (wasatch VARCHAR, total_time 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"###context:CREATE TABLE table_name_29 (opponents_in_final VARCHAR, date VARCHAR) |
###question:Who was Melbourne's home team opponent?###answer: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 Richmond's away team opponent?###answer:SELECT away_team FROM table_name_10 WHERE home_team = "richmond"###context:CREATE TABLE table_name_10 (away_team VARCHAR, home_team 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###context:CREATE TABLE table_name_88 (league INTEGER, fa_cup VARCHAR, name V... |
###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"###context:CREATE TABLE table_name_58 (region VARCHAR, year VARCHAR, name 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"###context:CREATE TABLE table_name_44 (method VARCHAR, res VARCHAR, time 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"###context:CREATE TABLE table_name_92 (venue VARCHAR, away_team 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"###context:CREATE TABLE table_name_98 (home_team VARCHAR, venue 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"###context:CREATE TABLE table_name_59 (home_team VARCHAR, away_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"###context:CREATE TABLE table_name_77 (away_team VARCHAR, home_team 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"###context:CREATE TABLE table_name_10 (home_team VARCHAR, venue 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"###context:CREATE TABLE table_name_86 (established VARCHAR, club VARCHAR) |
###question:What is the name of a league in the sport of baseball?###answer:SELECT league FROM table_name_96 WHERE sport = "baseball"###context:CREATE TABLE table_name_96 (league VARCHAR, sport 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"###context:CREATE TABLE table_name_55 (venue VARCHAR, sport VARCHAR, club VARCHAR) |
###question:What game number was played on March 4?###answer: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 is the record when the visitor is Buffalo?###answer:SELECT record FROM table_name_69 WHERE visitor = "buffalo"###context:CREATE TABLE table_name_69 (record VARCHAR, visitor 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"###context:CREATE TABLE table_name_4 (attendance 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"###context:CREATE TABLE table_name_60 (attendance VARCHAR, week VARCHAR, result 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###context:CREATE TABLE table_name_60 (attendance VARCHAR, result VARCHAR, week 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"###context:CREATE TABLE table_name_64 (attendance INTEGER, opponent VARCHAR) |
###question:What is the average attendance for a game against Phoenix?###answer:SELECT AVG(attendance) FROM table_name_16 WHERE visitor = "phoenix"###context:CREATE TABLE table_name_16 (attendance INTEGER, 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"###context:CREATE TABLE table_name_78 (home VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCH... |
###question:Who was Carlton's home team opponent?###answer: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 the away team at Lake Oval?###answer: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 South Melbourne's away team opponent?###answer: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:What is the high grid with 27 laps?###answer: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 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###context:CREATE TABLE table_name_4 (grid INTEGER, time_retired VARCHAR, laps 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###context:CREATE TABLE table_name_43 (copies_sold VARCHAR, first_week_sales 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"###context:CREATE TABLE table_name_3 (release_date INTEGER, label VARCHAR, country VARCHAR) |
###question:What type of format was released after 1979?###answer:SELECT release_format FROM table_name_48 WHERE release_date > 1979###context:CREATE TABLE table_name_48 (release_format VARCHAR, release_date INTEGER) |
###question:On what date did Epic label start its release?###answer:SELECT SUM(release_date) FROM table_name_3 WHERE label = "epic"###context:CREATE TABLE table_name_3 (release_date INTEGER, label 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###context:CREATE TABLE table_name_36 (games VARCHAR, rebounds VARCHAR, rank 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###context:CREATE TABLE table_name_20 (games INTEGER, name VARCHAR, rebounds 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"###context:CREATE TABLE table_name_70 (team VARCHAR, name VARCHAR, rebounds VARCHAR, games VARCHAR) |
###question:How many rebounds occurred in a rank 4 game?###answer:SELECT rebounds FROM table_name_73 WHERE rank = 4###context:CREATE TABLE table_name_73 (rebounds VARCHAR, rank VARCHAR) |
###question:Which game did was Bud Eley a player in?###answer:SELECT games FROM table_name_88 WHERE name = "bud eley"###context:CREATE TABLE table_name_88 (games VARCHAR, name 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"###context:CREATE TABLE table_name_80 (games INTEGER, team VARCHAR, rank VARCHAR, rebounds VARCHAR) |
###question:What is the grid for johnny herbert?###answer:SELECT grid FROM table_name_6 WHERE driver = "johnny herbert"###context:CREATE TABLE table_name_6 (grid VARCHAR, driver 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###context:CREATE TABLE table_name_43 (rank INTEGER, studio_s_ VARCHAR, year VARCHAR) |
###question:Name the average year for 4 rank###answer:SELECT AVG(year) FROM table_name_33 WHERE rank = 4###context:CREATE TABLE table_name_33 (year INTEGER, rank 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"###context:CREATE TABLE table_name_99 (rank INTEGER, year VARCHAR, studio_s_ VARCHAR) |
###question:Which date did richmond play as away?###answer:SELECT date FROM table_name_27 WHERE away_team = "richmond"###context:CREATE TABLE table_name_27 (date VARCHAR, away_team 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###context:CREATE TABLE table_name_52 (rank INTEGER, wins VARCHAR, events 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"###context:CREATE TABLE table_name_46 (issue_price VARCHAR, mintage VAR... |
###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"###context:CREATE TABLE table_name_86 (theme VARCHAR, year VARCHAR, artist 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"###context:CREATE TABLE table_name_81 (artist VARCHAR, year 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"###context:CREATE TABLE table_name_36 (issue_price VARCHAR, mintage VARCHAR) |
###question:Tell me the control trailers for 52 motors###answer:SELECT Control AS trailers FROM table_name_71 WHERE motors = "52"###context:CREATE TABLE table_name_71 (Control VARCHAR, motors 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"###context:CREATE TABLE table_name_48 (trailers 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"###context:CREATE TABLE table_name_45 (Control VARCHAR, year VARCHAR, builder VARCHAR) |
###question:I want the trailers for motors of 145###answer:SELECT trailers FROM table_name_92 WHERE motors = "145"###context:CREATE TABLE table_name_92 (trailers VARCHAR, motors VARCHAR) |
###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###context:CREATE TABLE table_name_77 (wins INTEGER, top_5 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###context:CREATE TABLE table_name_17 (events INTEGER, top_10 INTEGER) |
###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###context:CREATE TABLE table_name_99 (cuts_made INTEGER, top_5 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###context:CREATE TABLE table_name_84 (top_25 INTEGER, events VARCHAR, top_10 VARCHAR) |
###question:What was the Attendance on April 28?###answer:SELECT SUM(attendance) FROM table_name_40 WHERE date = "april 28"###context:CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR) |
###question:What was escape to river cottage released?###answer: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 DVD has a time of 2 hours 22 minutes?###answer: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 was the date for the game in week 7?###answer:SELECT date FROM table_name_14 WHERE week = 7###context:CREATE TABLE table_name_14 (date VARCHAR, week VARCHAR) |
###question:On what date was the attendance of the crowd 78,431?###answer:SELECT date FROM table_name_54 WHERE attendance = "78,431"###context:CREATE TABLE table_name_54 (date VARCHAR, attendance 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"###context:CREATE TABLE table_name_28 (date VARCHAR, home 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"###context:CREATE TABLE table_name_20 (date VARCHAR, competition VARCHAR) |
###question:Which competition took place at Stade Fernand Fournier, Arles?###answer:SELECT competition FROM table_name_51 WHERE venue = "stade fernand fournier, arles"###context:CREATE TABLE table_name_51 (competition VARCHAR, venue 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"###context:CREATE TABLE table_name_83 (crowd VARCHAR, away_team 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"###context:CREATE TABLE table_name_80 (artist VARCHAR, theme 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"###context:CREATE TABLE table_name_25 (year VARCHAR, artist VARCHAR) |
###question:How many coins by Suzanne Duranceau were minted?###answer:SELECT mintage FROM table_name_93 WHERE artist = "suzanne duranceau"###context:CREATE TABLE table_name_93 (mintage VARCHAR, artist 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"###context:CREATE TABLE table_name_72 (method VARCHAR, round VARCHAR, res 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"###context:CREATE TABLE table_name_95 (opponent VARCHAR, round 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"###context:CREATE TABLE table_name_33 (method VARCHAR, event VARCHAR) |
###question:What is the league on 5 October 1997?###answer:SELECT league FROM table_name_48 WHERE date = "5 october 1997"###context:CREATE TABLE table_name_48 (league VARCHAR, date VARCHAR) |
###question:Which season was on 30 October 1977?###answer:SELECT season FROM table_name_50 WHERE date = "30 october 1977"###context:CREATE TABLE table_name_50 (season 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"###context:CREATE TABLE table_name_1 (season VARCHAR, match VARCHAR, date 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"###context:CREATE TABLE table_name_28 (club_province VARCHAR, caps VARCHAR, position 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###context:CREATE TABLE table_name_14 (driver VARCHAR, laps VARCHAR, grid 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"###context:CREATE TABLE table_name_5 (constructor VARCHAR, laps VARCHAR, time_retired 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###context:CREATE TABLE table_name_52 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, ... |
###question:Who was Footscray's opponent on June 15th of 1968?###answer:SELECT home_team FROM table_name_54 WHERE away_team = "footscray"###context:CREATE TABLE table_name_54 (home_team VARCHAR, away_team 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"###context:CREATE TABLE table_name_43 (joined ... |
###question:What was the pole position for the belgian grand prix?###answer:SELECT pole_position FROM table_name_87 WHERE race = "belgian grand prix"###context:CREATE TABLE table_name_87 (pole_position VARCHAR, race VARCHAR) |
###question:Who won the australian grand prix?###answer:SELECT race AS Winner FROM table_name_53 WHERE race = "australian grand prix"###context:CREATE TABLE table_name_53 (race VARCHAR) |
###question:What was the pole position for jerez?###answer:SELECT pole_position FROM table_name_39 WHERE location = "jerez"###context:CREATE TABLE table_name_39 (pole_position VARCHAR, location 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"###context:CREATE TABLE table_name_66 (enzyme 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"###context:CREATE TABLE table_name_15 (measurements 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"###context:CREATE TABLE table_name_30 (abb VARCHAR, disorder VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.