answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT SUM(gold) FROM table_name_94 WHERE total < 7 AND nation = "gabon" AND rank < 17 | CREATE TABLE table_name_94 (gold INTEGER, rank VARCHAR, total VARCHAR, nation VARCHAR) | How many gold did Gabon have when they were ranked no higher than 17, and less than 7 in total? |
SELECT opponent FROM table_name_5 WHERE date = "april 24" | CREATE TABLE table_name_5 (opponent VARCHAR, date VARCHAR) | Name the opponent for april 24 |
SELECT score FROM table_name_63 WHERE attendance = "13,617" | CREATE TABLE table_name_63 (score VARCHAR, attendance VARCHAR) | Name the score for attendance of 13,617 |
SELECT opponent FROM table_name_92 WHERE score = "postponed (rain) not rescheduled" | CREATE TABLE table_name_92 (opponent VARCHAR, score VARCHAR) | Name the opponent for Score of postponed (rain) not rescheduled |
SELECT h_s_asst_principal FROM table_name_47 WHERE glendale_principal = "joyce brace" AND year = "2002-2003" | CREATE TABLE table_name_47 (h_s_asst_principal VARCHAR, glendale_principal VARCHAR, year VARCHAR) | What is the H.S. Asst. principal with a Glendale principal Joyce Brace during 2002-2003? |
SELECT hs_principal FROM table_name_99 WHERE wr_principal = "dave lovering" AND ms_principal = "marty pizur" | CREATE TABLE table_name_99 (hs_principal VARCHAR, wr_principal VARCHAR, ms_principal VARCHAR) | Who is the h.s. principal with Dave Lovering as w.r. principal and Marty Pizur as m.s. principal? |
SELECT glendale_principal FROM table_name_58 WHERE ms_principal = "greg smorel" AND hs_principal = "joleen reinholz" AND year = "2006-2007" | CREATE TABLE table_name_58 (glendale_principal VARCHAR, year VARCHAR, ms_principal VARCHAR, hs_principal VARCHAR) | Who is the Glendale principal with Greg Smorel as m.s. principal and Joleen Reinholz as H.S. principal during 2006-2007? |
SELECT hh_principal FROM table_name_55 WHERE hs_principal = "jim haught" AND maplemere_principal = "charlie taylor" AND wr_principal = "rich auerbach" | CREATE TABLE table_name_55 (hh_principal VARCHAR, wr_principal VARCHAR, hs_principal VARCHAR, maplemere_principal VARCHAR) | Who is the h.h. principal with Jim Haught as h.s. principal, Charlie Taylor as maplemere principal, and Rich Auerbach as w.r. principal? |
SELECT hh_principal FROM table_name_16 WHERE superintendent = "james finch" AND maplemere_principal = "charlie taylor" | CREATE TABLE table_name_16 (hh_principal VARCHAR, superintendent VARCHAR, maplemere_principal VARCHAR) | Who is the h.h. principal with James Finch as the superintendent and Charlie Taylor as the maplemere principal? |
SELECT hs_principal FROM table_name_81 WHERE year = "1973-1974" | CREATE TABLE table_name_81 (hs_principal VARCHAR, year VARCHAR) | Who is the h.s. principal during 1973-1974? |
SELECT engine FROM table_name_7 WHERE year < 1959 AND points > 4 | CREATE TABLE table_name_7 (engine VARCHAR, year VARCHAR, points VARCHAR) | what is the engine for year less than 1959 and points more than 4? |
SELECT MIN(year) FROM table_name_75 WHERE points = 4 | CREATE TABLE table_name_75 (year INTEGER, points VARCHAR) | what is the least year for 4 points? |
SELECT entrant FROM table_name_6 WHERE engine = "ferrari v8" AND points < 4 | CREATE TABLE table_name_6 (entrant VARCHAR, engine VARCHAR, points VARCHAR) | what is the entrant for the ferrari v8 with points less than 4? |
SELECT AVG(year) FROM table_name_85 WHERE points = 0 AND engine = "ferrari v8" | CREATE TABLE table_name_85 (year INTEGER, points VARCHAR, engine VARCHAR) | what is the average year for 0 points and ferrari v8? |
SELECT launched FROM table_name_81 WHERE territory = "singapore" AND channel = 83 | CREATE TABLE table_name_81 (launched VARCHAR, territory VARCHAR, channel VARCHAR) | When did channel 83 in singapore launch? |
SELECT territory FROM table_name_86 WHERE channel = 83 | CREATE TABLE table_name_86 (territory VARCHAR, channel VARCHAR) | Where is channel 83 broadcasted? |
SELECT broadcaster FROM table_name_12 WHERE territory = "malaysia" | CREATE TABLE table_name_12 (broadcaster VARCHAR, territory VARCHAR) | Who broadcasts in malaysia? |
SELECT engine_s_ FROM table_name_19 WHERE year = 1983 | CREATE TABLE table_name_19 (engine_s_ VARCHAR, year VARCHAR) | What are the engines for 1983? |
SELECT appearances FROM table_name_75 WHERE goals < 30 AND name = "gary depalma" | CREATE TABLE table_name_75 (appearances VARCHAR, goals VARCHAR, name VARCHAR) | How many appearances did Gary Depalma make when he scored less than 30 goals? |
SELECT intergiro_classification FROM table_name_10 WHERE trofeo_fast_team = "asics-c.g.a." AND stage = "13" | CREATE TABLE table_name_10 (intergiro_classification VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR) | In stage 13, what is the intergiro classification and is on the team of Asics-c.g.a.? |
SELECT intergiro_classification FROM table_name_53 WHERE trofeo_fast_team = "team polti" AND stage = "14" | CREATE TABLE table_name_53 (intergiro_classification VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR) | Which intergiro classification is there for team Polti at stage 14? |
SELECT winner FROM table_name_97 WHERE general_classification = "pavel tonkov" AND stage = "7" | CREATE TABLE table_name_97 (winner VARCHAR, general_classification VARCHAR, stage VARCHAR) | Who was the winner in stage 7 with a general classification of Pavel Tonkov? |
SELECT winner FROM table_name_52 WHERE trofeo_fast_team = "asics-c.g.a." AND mountains_classification = "mariano piccoli" | CREATE TABLE table_name_52 (winner VARCHAR, trofeo_fast_team VARCHAR, mountains_classification VARCHAR) | Who was the winner from team Asics-c.g.a. and has a mountains classification of Mariano Piccoli? |
SELECT points_classification FROM table_name_54 WHERE stage = "15" | CREATE TABLE table_name_54 (points_classification VARCHAR, stage VARCHAR) | Which points classification was used in stage 15? |
SELECT winner FROM table_name_70 WHERE mountains_classification = "not awarded" AND stage = "1" | CREATE TABLE table_name_70 (winner VARCHAR, mountains_classification VARCHAR, stage VARCHAR) | Which winner of stage 1 was not awarded a mountains classification? |
SELECT muzzle_device FROM table_name_18 WHERE barrel_twist = "1:10" | CREATE TABLE table_name_18 (muzzle_device VARCHAR, barrel_twist VARCHAR) | Name the muzzel device with barrel twist of 1:10 |
SELECT bayonet_lug FROM table_name_92 WHERE name = "ar-15 lightweight" | CREATE TABLE table_name_92 (bayonet_lug VARCHAR, name VARCHAR) | Name the bayonet lug with ar-15 lightweight |
SELECT hand_guards FROM table_name_8 WHERE name = "ar-15a2 government carbine" AND barrel_twist = "1:9" | CREATE TABLE table_name_8 (hand_guards VARCHAR, name VARCHAR, barrel_twist VARCHAR) | Name the hand guards for ar-15a2 government carbine and barrel twist of 1:9 |
SELECT barrel_length FROM table_name_90 WHERE barrel_twist = "1:7" | CREATE TABLE table_name_90 (barrel_length VARCHAR, barrel_twist VARCHAR) | Name the barrel length for barrel twist of 1:7 |
SELECT three_mora_word FROM table_name_18 WHERE NOT accented_mora = "low tone" AND one_mora = "2" | CREATE TABLE table_name_18 (three_mora_word VARCHAR, one_mora VARCHAR, accented_mora VARCHAR) | What is the three-mora word with a low tone accented mora and a one mora of 2? |
SELECT one_mora FROM table_name_73 WHERE three_mora_word = "/kaze/ [kázé]" | CREATE TABLE table_name_73 (one_mora VARCHAR, three_mora_word VARCHAR) | What is the one mora for the three-mora word /kaze/ [kázé]? |
SELECT one_mora FROM table_name_29 WHERE three_mora_word = "/˩haruꜜ/ [hàɽɯ́ ~ hàɽɯ̂]" | CREATE TABLE table_name_29 (one_mora VARCHAR, three_mora_word VARCHAR) | What is the one mora for the three-mora word /˩haruꜜ/ [hàɽɯ́ ~ hàɽɯ̂]? |
SELECT two_mora_word FROM table_name_53 WHERE NOT accented_mora = "low tone" AND gloss = "/˩kusuꜜri/ [kɯ̀sɯ́ɽì]" | CREATE TABLE table_name_53 (two_mora_word VARCHAR, gloss VARCHAR, accented_mora VARCHAR) | What is the two-mora word with a low tone accented mora and a gloss of /˩kusuꜜri/ [kɯ̀sɯ́ɽì]? |
SELECT one_mora FROM table_name_95 WHERE NOT accented_mora = "low tone" AND gloss = "/˩okiru/ [òkìɽɯ́]" | CREATE TABLE table_name_95 (one_mora VARCHAR, gloss VARCHAR, accented_mora VARCHAR) | What is the one mora for a low tone mora with a gloss of /˩okiru/ [òkìɽɯ́]? |
SELECT MAX(total_medals) FROM table_name_27 WHERE gold_medals = 0 AND ensemble = "east 80 indoor percussion" | CREATE TABLE table_name_27 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR) | What is the highest Total Medals that has 0 Gold Medal and a Ensemble of east 80 indoor percussion? |
SELECT MIN(total_medals) FROM table_name_76 WHERE ensemble = "madison independent" AND bronze_medals > 0 | CREATE TABLE table_name_76 (total_medals INTEGER, ensemble VARCHAR, bronze_medals VARCHAR) | What is the lowest Total Medals that has madison independent and Bronze Medals larger than 0 |
SELECT MIN(gold_medals) FROM table_name_18 WHERE ensemble = "salem blue devils" AND silver_medals < 1 | CREATE TABLE table_name_18 (gold_medals INTEGER, ensemble VARCHAR, silver_medals VARCHAR) | what is Gold Medals that has salem blue devils and a Silver Medals less than 1? |
SELECT location FROM table_name_19 WHERE method = "submission (armbar)" AND opponent = "mayra conde" | CREATE TABLE table_name_19 (location VARCHAR, method VARCHAR, opponent VARCHAR) | What is the location of the match where the method was submission (armbar) and Mayra Conde was the opponent? |
SELECT opponent FROM table_name_86 WHERE method = "submission (armbar)" AND record = "9-3-1" | CREATE TABLE table_name_86 (opponent VARCHAR, method VARCHAR, record VARCHAR) | Who is the opponent of the match with a method of submission (armbar) and a 9-3-1 record? |
SELECT time__eest_ FROM table_name_5 WHERE stage = "ss8" | CREATE TABLE table_name_5 (time__eest_ VARCHAR, stage VARCHAR) | What is the Time (EEST), when the Stage is ss8? |
SELECT stage FROM table_name_19 WHERE rally_leader = "c. atkinson" | CREATE TABLE table_name_19 (stage VARCHAR, rally_leader VARCHAR) | What is the Stage, when the Rally leader is C. Atkinson? |
SELECT winner FROM table_name_92 WHERE name = "ouninpohja 1" | CREATE TABLE table_name_92 (winner VARCHAR, name VARCHAR) | Who is the Winner, when the Name is Ouninpohja 1? |
SELECT length FROM table_name_68 WHERE name = "himos" | CREATE TABLE table_name_68 (length VARCHAR, name VARCHAR) | What is the Length, when the Name is Himos? |
SELECT winner FROM table_name_95 WHERE length = "21.27km" | CREATE TABLE table_name_95 (winner VARCHAR, length VARCHAR) | Who is the Winner when the Length is 21.27km? |
SELECT name FROM table_name_92 WHERE time = "8:10.1" | CREATE TABLE table_name_92 (name VARCHAR, time VARCHAR) | What is the Name, when the Time is 8:10.1? |
SELECT entrant FROM table_name_2 WHERE points = 0 AND year > 1961 AND chassis = "ferrari 156" | CREATE TABLE table_name_2 (entrant VARCHAR, chassis VARCHAR, points VARCHAR, year VARCHAR) | In the Formula One World Championships, which entrant had 0 points with a Ferrari 156 Chassis after 1961? |
SELECT engine FROM table_name_80 WHERE year = 1965 | CREATE TABLE table_name_80 (engine VARCHAR, year VARCHAR) | During the Formula One World Championships, which engine was used in 1965? |
SELECT COUNT(points) FROM table_name_78 WHERE chassis = "ferrari 156" | CREATE TABLE table_name_78 (points VARCHAR, chassis VARCHAR) | How many points were earned with a Chassis of a Ferrari 156? |
SELECT finish FROM table_name_76 WHERE laps < 197 AND start = "9" AND qual = "152.672" | CREATE TABLE table_name_76 (finish VARCHAR, qual VARCHAR, laps VARCHAR, start VARCHAR) | Where did the driver who started 9 with a qualifing speed of 152.672 and finished fewer than 197 laps finish? |
SELECT location FROM table_name_1 WHERE game = 7 | CREATE TABLE table_name_1 (location VARCHAR, game VARCHAR) | What is the location of game 7? |
SELECT location FROM table_name_20 WHERE game = 4 | CREATE TABLE table_name_20 (location VARCHAR, game VARCHAR) | what is the location of game 4? |
SELECT scorers FROM table_name_61 WHERE group_position = "2nd" AND opponents = "olympiacos" | CREATE TABLE table_name_61 (scorers VARCHAR, group_position VARCHAR, opponents VARCHAR) | Who were the 2nd group scorers that were opponents of olympiacos? |
SELECT scorers FROM table_name_94 WHERE result_f_a = "1–0" | CREATE TABLE table_name_94 (scorers VARCHAR, result_f_a VARCHAR) | Who were F–A of 1–0 scorers? |
SELECT final_score FROM table_name_33 WHERE date = "november 17" | CREATE TABLE table_name_33 (final_score VARCHAR, date VARCHAR) | What was the final score of the game on November 17? |
SELECT final_score FROM table_name_23 WHERE visiting_team = "indianapolis colts" AND date = "november 24" | CREATE TABLE table_name_23 (final_score VARCHAR, visiting_team VARCHAR, date VARCHAR) | What was the final score of the game on November 24 with the visiting team the Indianapolis Colts? |
SELECT date FROM table_name_37 WHERE final_score = "30-17" AND stadium = "gillette stadium" | CREATE TABLE table_name_37 (date VARCHAR, final_score VARCHAR, stadium VARCHAR) | When was the game at Gillette Stadium that ended in a final score of 30-17? |
SELECT visiting_team FROM table_name_41 WHERE date = "september 15" | CREATE TABLE table_name_41 (visiting_team VARCHAR, date VARCHAR) | Who was the visiting team that played on September 15? |
SELECT year FROM table_name_74 WHERE regular_season = "2nd, central" | CREATE TABLE table_name_74 (year VARCHAR, regular_season VARCHAR) | What year did the Nashville Metros have the Regular Season 2nd, central? |
SELECT division FROM table_name_96 WHERE playoffs = "did not qualify" AND league = "usl pdl" AND regular_season = "7th, southeast" | CREATE TABLE table_name_96 (division VARCHAR, regular_season VARCHAR, playoffs VARCHAR, league VARCHAR) | What division did the Nashville Metros play in during the year that they did not qualify for the Playoffs, where in the USL PDL League, and had the Regular Season 7th, Southeast? |
SELECT AVG(year) FROM table_name_78 WHERE playoffs = "did not qualify" AND open_cup = "did not qualify" AND regular_season = "7th, southeast" | CREATE TABLE table_name_78 (year INTEGER, regular_season VARCHAR, playoffs VARCHAR, open_cup VARCHAR) | What was the average year that the Nashville Metros did not qualify for the Playoffs, did not qualify for the Open Cup, and had the Regular Season 7th, Southeast? |
SELECT chassis FROM table_name_55 WHERE points = 52 | CREATE TABLE table_name_55 (chassis VARCHAR, points VARCHAR) | Which chassis scored 52 points? |
SELECT engine FROM table_name_51 WHERE points = 6 AND chassis = "march 88c" | CREATE TABLE table_name_51 (engine VARCHAR, points VARCHAR, chassis VARCHAR) | Which engine scored 6 points and used the march 88c chassis? |
SELECT d_43 FROM table_name_70 WHERE d_48 = "d 9" | CREATE TABLE table_name_70 (d_43 VARCHAR, d_48 VARCHAR) | Name the D 43 with D 48 of d 9 |
SELECT d_42 FROM table_name_7 WHERE d_43 = "d 14" | CREATE TABLE table_name_7 (d_42 VARCHAR, d_43 VARCHAR) | Name the D 42 with D 43 of d 14 |
SELECT d_47 FROM table_name_11 WHERE d_48 = "d 29" | CREATE TABLE table_name_11 (d_47 VARCHAR, d_48 VARCHAR) | Name the D 47 when it has D 48 of d 29 |
SELECT d_43 FROM table_name_45 WHERE d_48 = "r 28" | CREATE TABLE table_name_45 (d_43 VARCHAR, d_48 VARCHAR) | Name the D 43 and D 48 of r 28 |
SELECT d_47 FROM table_name_10 WHERE d_42 = "d 22" | CREATE TABLE table_name_10 (d_47 VARCHAR, d_42 VARCHAR) | Name the D 47 which has D 42 of d 22 |
SELECT region FROM table_name_2 WHERE label = "central station" | CREATE TABLE table_name_2 (region VARCHAR, label VARCHAR) | Which region had a label of Central Station? |
SELECT nhl_team FROM table_name_46 WHERE position = "centre" AND pick__number = "105" | CREATE TABLE table_name_46 (nhl_team VARCHAR, position VARCHAR, pick__number VARCHAR) | What NHL team has a centre and pick number of 105? |
SELECT pick__number FROM table_name_13 WHERE nhl_team = "st. louis blues" | CREATE TABLE table_name_13 (pick__number VARCHAR, nhl_team VARCHAR) | What Pick # does the St. Louis Blues have? |
SELECT position FROM table_name_18 WHERE pick__number = "108" | CREATE TABLE table_name_18 (position VARCHAR, pick__number VARCHAR) | What is the position of the player with a Pick # of 108? |
SELECT position FROM table_name_43 WHERE nhl_team = "vancouver canucks" AND pick__number = "101" | CREATE TABLE table_name_43 (position VARCHAR, nhl_team VARCHAR, pick__number VARCHAR) | What position in the Vancouver Canucks has a Pick # of 101? |
SELECT record FROM table_name_22 WHERE attendance = "30,452" | CREATE TABLE table_name_22 (record VARCHAR, attendance VARCHAR) | What was the team's record at the game attended by 30,452? |
SELECT attendance FROM table_name_34 WHERE loss = "crabtree (0-1)" | CREATE TABLE table_name_34 (attendance VARCHAR, loss VARCHAR) | What was the attendance at the game that had a loss of Crabtree (0-1)? |
SELECT tournament FROM table_name_22 WHERE runner_s__up = "chi-chi rodriguez" | CREATE TABLE table_name_22 (tournament VARCHAR, runner_s__up VARCHAR) | What races were Chi-Chi Rodriguez the runner-up in? |
SELECT margin_of_victory FROM table_name_12 WHERE runner_s__up = "isao aoki" | CREATE TABLE table_name_12 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | What was the margin of victory for Isao Aoki when he was a runner-up? |
SELECT winning_score FROM table_name_5 WHERE tournament = "mazda senior tournament players championship" | CREATE TABLE table_name_5 (winning_score VARCHAR, tournament VARCHAR) | What was the winning score in the mazda senior tournament players championship? |
SELECT tournament FROM table_name_16 WHERE winning_score = –27(65 - 68 - 64 - 64 = 261) | CREATE TABLE table_name_16 (tournament VARCHAR, winning_score VARCHAR) | Which tournament ended with a winning score of –27 (65-68-64-64=261)? |
SELECT runner_s__up FROM table_name_39 WHERE date = "feb 18, 1996" | CREATE TABLE table_name_39 (runner_s__up VARCHAR, date VARCHAR) | Who was the runner(s)-up for the Feb 18, 1996 tournament? |
SELECT AVG(grid) FROM table_name_10 WHERE laps > 43 AND driver = "oriol servia" | CREATE TABLE table_name_10 (grid INTEGER, laps VARCHAR, driver VARCHAR) | What is Oriol Servia's average Grid on races with more than 43 laps? |
SELECT laps FROM table_name_96 WHERE points = 19 | CREATE TABLE table_name_96 (laps VARCHAR, points VARCHAR) | How many laps were there in the race that netted the winner 19 points? |
SELECT season FROM table_name_96 WHERE opponent = "necaxa" | CREATE TABLE table_name_96 (season VARCHAR, opponent VARCHAR) | In what Season is Necaxa an Opponent? |
SELECT season FROM table_name_97 WHERE opponent = "victoria" | CREATE TABLE table_name_97 (season VARCHAR, opponent VARCHAR) | In what season is Victoria the Opponent? |
SELECT authority FROM table_name_32 WHERE decile = 6 AND name = "pongaroa school" | CREATE TABLE table_name_32 (authority VARCHAR, decile VARCHAR, name VARCHAR) | Name the authority when the decile is 6 for pongaroa school |
SELECT years FROM table_name_48 WHERE name = "dannevirke south school" | CREATE TABLE table_name_48 (years VARCHAR, name VARCHAR) | Name the years for dannevirke south school |
SELECT MIN(decile) FROM table_name_78 WHERE authority = "state" AND area = "eketahuna" AND roll > 44 | CREATE TABLE table_name_78 (decile INTEGER, roll VARCHAR, authority VARCHAR, area VARCHAR) | Name the least decile for state authority and area of eketahuna with roll more than 44 |
SELECT name FROM table_name_16 WHERE area = "eketahuna" | CREATE TABLE table_name_16 (name VARCHAR, area VARCHAR) | Tell me the name with area of eketahuna |
SELECT completed FROM table_name_28 WHERE launched = "12 april 1934" | CREATE TABLE table_name_28 (completed VARCHAR, launched VARCHAR) | Name what was completed on 12 april 1934 |
SELECT launched FROM table_name_91 WHERE completed = "13 september 1934" | CREATE TABLE table_name_91 (launched VARCHAR, completed VARCHAR) | Name the launched for 13 september 1934 completion |
SELECT ship FROM table_name_22 WHERE launched = "29 may 1934" | CREATE TABLE table_name_22 (ship VARCHAR, launched VARCHAR) | Name the ship launched 29 may 1934 |
SELECT laid_down FROM table_name_39 WHERE launched = "16 february 1934" | CREATE TABLE table_name_39 (laid_down VARCHAR, launched VARCHAR) | Name the laid down for launched being 16 february 1934 |
SELECT pennant_number FROM table_name_43 WHERE launched = "29 march 1934" AND completed = "30 october 1934" | CREATE TABLE table_name_43 (pennant_number VARCHAR, launched VARCHAR, completed VARCHAR) | Name the pennant number for completion of 30 october 1934 and launched 29 march 1934 |
SELECT laid_down FROM table_name_67 WHERE completed = "22 october 1934" | CREATE TABLE table_name_67 (laid_down VARCHAR, completed VARCHAR) | Name the laid down for completed of 22 october 1934 |
SELECT MIN(votes) FROM table_name_94 WHERE rank = "5th" AND riding = "victoria" | CREATE TABLE table_name_94 (votes INTEGER, rank VARCHAR, riding VARCHAR) | what is the lowest votes of the candidate ranked 5th and riding in victoria? |
SELECT home_captain FROM table_name_21 WHERE result = "aus by 295 runs" | CREATE TABLE table_name_21 (home_captain VARCHAR, result VARCHAR) | Which home captian has aus by 295 runs as the result? |
SELECT result FROM table_name_11 WHERE venue = "adelaide oval" | CREATE TABLE table_name_11 (result VARCHAR, venue VARCHAR) | Which result has adelaide oval as the venue? |
SELECT height FROM table_name_44 WHERE position = "guard" AND year_born = 1982 | CREATE TABLE table_name_44 (height VARCHAR, position VARCHAR, year_born VARCHAR) | Born in 1982, this guard has what listed as a height? |
SELECT points_classification_navy_blue_jersey FROM table_name_8 WHERE general_classification_yellow_jersey = "graeme brown" | CREATE TABLE table_name_8 (points_classification_navy_blue_jersey VARCHAR, general_classification_yellow_jersey VARCHAR) | Which Points Classification Navy Blue Jersey that has a Jersey of Graeme Brown |
SELECT intermediate_sprints_classification_red_jersey FROM table_name_34 WHERE mountains_classification_green_jersey = "murilo antonio fischer" AND points_classification_navy_blue_jersey = "jose joaquin rojas gil" | CREATE TABLE table_name_34 (intermediate_sprints_classification_red_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, points_classification_navy_blue_jersey VARCHAR) | What is the Intermediate Sprints Classification Red Jersey that has a Green Jersey of Murilo Antonio Fischer, and Jose Joaquin Rojas Gil? |
SELECT general_classification_yellow_jersey FROM table_name_74 WHERE mountains_classification_green_jersey = "murilo antonio fischer" AND team_classification = "lampre-fondital" | CREATE TABLE table_name_74 (general_classification_yellow_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, team_classification VARCHAR) | What is General Classification Yellow Jersey that has a Murilo Antonio Fischer, and Lampre-Fondital? |
Subsets and Splits