question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
what is the result when the round is less than 7 and the opponent is melbourne storm? | CREATE TABLE table_name_76 (result VARCHAR, round VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_76 WHERE round < 7 AND opponent = "melbourne storm" |
what is the venue when the result is loss and the opponent is st george-illawarra dragons? | CREATE TABLE table_name_58 (venue VARCHAR, result VARCHAR, opponent VARCHAR) | SELECT venue FROM table_name_58 WHERE result = "loss" AND opponent = "st george-illawarra dragons" |
Who won silver in 1982? | CREATE TABLE table_name_15 (silver VARCHAR, year VARCHAR) | SELECT silver FROM table_name_15 WHERE year = 1982 |
What is the Time of the Rowers in Rank 1? | CREATE TABLE table_name_7 (time VARCHAR, rank VARCHAR) | SELECT time FROM table_name_7 WHERE rank = 1 |
What is the Time of the Rowers from Belgium? | CREATE TABLE table_name_36 (time VARCHAR, country VARCHAR) | SELECT time FROM table_name_36 WHERE country = "belgium" |
What time does lane 7 have? | CREATE TABLE table_name_56 (time VARCHAR, lane VARCHAR) | SELECT time FROM table_name_56 WHERE lane = 7 |
What are the years employed shown for mathematics & prefect master? | CREATE TABLE table_name_74 (employed VARCHAR, position_held VARCHAR) | SELECT employed FROM table_name_74 WHERE position_held = "mathematics & prefect master" |
What citation is shown for the employed years of 1970–1996? | CREATE TABLE table_name_6 (citation VARCHAR, employed VARCHAR) | SELECT citation FROM table_name_6 WHERE employed = "1970–1996" |
What is the name of the person employed 1970–2005? | CREATE TABLE table_name_48 (name VARCHAR, employed VARCHAR) | SELECT name FROM table_name_48 WHERE employed = "1970–2005" |
What is the Time of the Rowers from Finland with a Rank of less than 4? | CREATE TABLE table_name_28 (time VARCHAR, rank VARCHAR, country VARCHAR) | SELECT time FROM table_name_28 WHERE rank < 4 AND country = "finland" |
What is the Rank of the Rowers with a Time of 7:30.92? | CREATE TABLE table_name_56 (rank INTEGER, time VARCHAR) | SELECT SUM(rank) FROM table_name_56 WHERE time = "7:30.92" |
What are the Notes of the Country of finland? | CREATE TABLE table_name_16 (notes VARCHAR, country VARCHAR) | SELECT notes FROM table_name_16 WHERE country = "finland" |
Who were the opponents for week 12? | CREATE TABLE table_name_31 (opponent VARCHAR, week VARCHAR) | SELECT opponent FROM table_name_31 WHERE week = 12 |
Which polling institute showed a lead of 6%? | CREATE TABLE table_name_1 (polling_institute VARCHAR, lead VARCHAR) | SELECT polling_institute FROM table_name_1 WHERE lead = "6%" |
Which date released had a Democratic Alternative value of 1% and Labour of 34%? | CREATE TABLE table_name_76 (date_s__released VARCHAR, democratic_alternative VARCHAR, labour VARCHAR) | SELECT date_s__released FROM table_name_76 WHERE democratic_alternative = "1%" AND labour = "34%" |
What is the Nationalist share of the poll for the response in which Undecided/No Answer received 29.2%? | CREATE TABLE table_name_8 (nationalist VARCHAR, undecided__no_answer VARCHAR) | SELECT nationalist FROM table_name_8 WHERE undecided__no_answer = "29.2%" |
What is the value of the Democratic Alternative for the poll released by Malta Today? | CREATE TABLE table_name_31 (democratic_alternative VARCHAR, polling_institute VARCHAR) | SELECT democratic_alternative FROM table_name_31 WHERE polling_institute = "malta today" |
Which polling institute showed a lead of 12% and a Labour share of the poll at 40.2%? | CREATE TABLE table_name_46 (polling_institute VARCHAR, lead VARCHAR, labour VARCHAR) | SELECT polling_institute FROM table_name_46 WHERE lead = "12%" AND labour = "40.2%" |
What is the lowest week that has Minnesota Vikings as the opponent? | CREATE TABLE table_name_75 (week INTEGER, opponent VARCHAR) | SELECT MIN(week) FROM table_name_75 WHERE opponent = "minnesota vikings" |
What opponent has December 6, 1964 as the date? | CREATE TABLE table_name_40 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_40 WHERE date = "december 6, 1964" |
What was the attendance of the game on September 18, 1965 before week 3? | CREATE TABLE table_name_72 (attendance VARCHAR, week VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_72 WHERE week < 3 AND date = "september 18, 1965" |
What was the result of the game before week 3 with an attendance of 53,658? | CREATE TABLE table_name_32 (result VARCHAR, week VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_32 WHERE week < 3 AND attendance = "53,658" |
What was the earliest week on September 26, 1965? | CREATE TABLE table_name_3 (week INTEGER, date VARCHAR) | SELECT MIN(week) FROM table_name_3 WHERE date = "september 26, 1965" |
What is the total time for one south broad? | CREATE TABLE table_name_79 (year INTEGER, name VARCHAR) | SELECT SUM(year) FROM table_name_79 WHERE name = "one south broad" |
What is the 123 south broad street address name before 1973? | CREATE TABLE table_name_33 (name VARCHAR, year VARCHAR, address VARCHAR) | SELECT name FROM table_name_33 WHERE year < 1973 AND address = "123 south broad street" |
Which competition has goals less than 2? | CREATE TABLE table_name_98 (competition VARCHAR, goal INTEGER) | SELECT competition FROM table_name_98 WHERE goal < 2 |
What's the result of a goal larger than 4? | CREATE TABLE table_name_59 (result VARCHAR, goal INTEGER) | SELECT result FROM table_name_59 WHERE goal > 4 |
tell me the type that has the marostica to bibione course. | CREATE TABLE table_name_44 (type VARCHAR, course VARCHAR) | SELECT type FROM table_name_44 WHERE course = "marostica to bibione" |
who won on 29 may? | CREATE TABLE table_name_32 (winner VARCHAR, date VARCHAR) | SELECT winner FROM table_name_32 WHERE date = "29 may" |
What is the term for hometown Ester Creek? | CREATE TABLE table_name_55 (term VARCHAR, hometown VARCHAR) | SELECT term FROM table_name_55 WHERE hometown = "ester creek" |
What is the number of Gold medals for the Nation with a Total of 5 and Rank larger than 1? | CREATE TABLE table_name_81 (gold INTEGER, total VARCHAR, rank VARCHAR) | SELECT MIN(gold) FROM table_name_81 WHERE total = 5 AND rank > 1 |
What is the total number of Silver for the Nation with more than 1 Bronze and a Rank less than 5? | CREATE TABLE table_name_26 (silver VARCHAR, bronze VARCHAR, rank VARCHAR) | SELECT COUNT(silver) FROM table_name_26 WHERE bronze > 1 AND rank < 5 |
In what round was the loss at ufc 118? | CREATE TABLE table_name_92 (round VARCHAR, res VARCHAR, event VARCHAR) | SELECT round FROM table_name_92 WHERE res = "loss" AND event = "ufc 118" |
What is the smallest decile with an Area of otumoetai? | CREATE TABLE table_name_60 (decile INTEGER, area VARCHAR) | SELECT MIN(decile) FROM table_name_60 WHERE area = "otumoetai" |
Which decile has an Area of welcome bay, and an Authority of state? | CREATE TABLE table_name_62 (decile VARCHAR, area VARCHAR, authority VARCHAR) | SELECT decile FROM table_name_62 WHERE area = "welcome bay" AND authority = "state" |
How many deciles have a Gender of coed, an Authority of state, and a Name of mount maunganui school? | CREATE TABLE table_name_93 (decile INTEGER, name VARCHAR, gender VARCHAR, authority VARCHAR) | SELECT SUM(decile) FROM table_name_93 WHERE gender = "coed" AND authority = "state" AND name = "mount maunganui school" |
Which name has a Decile of 5, and an Area of tauranga? | CREATE TABLE table_name_96 (name VARCHAR, decile VARCHAR, area VARCHAR) | SELECT name FROM table_name_96 WHERE decile = 5 AND area = "tauranga" |
Which Authority has a Gender of coed, a Decile smaller than 6, and an Area of merivale? | CREATE TABLE table_name_21 (authority VARCHAR, area VARCHAR, gender VARCHAR, decile VARCHAR) | SELECT authority FROM table_name_21 WHERE gender = "coed" AND decile < 6 AND area = "merivale" |
What is the smallest decile with a Name of st mary's catholic school? | CREATE TABLE table_name_70 (decile INTEGER, name VARCHAR) | SELECT MIN(decile) FROM table_name_70 WHERE name = "st mary's catholic school" |
What is the average birth rate that has a total fertility rate of na, and a natural growth smaller than 2.5? | CREATE TABLE table_name_14 (births__000s_ INTEGER, total_fertility_rate VARCHAR, natural_growth VARCHAR) | SELECT AVG(births__000s_) FROM table_name_14 WHERE total_fertility_rate = "na" AND natural_growth < 2.5 |
What was the amount of deaths that had a natural growth smaller than 3.4, and a total fertility rate of 1.63? | CREATE TABLE table_name_41 (deaths VARCHAR, natural_growth VARCHAR, total_fertility_rate VARCHAR) | SELECT deaths FROM table_name_41 WHERE natural_growth < 3.4 AND total_fertility_rate = "1.63" |
What is the average births that had a death rate of 0.4 | CREATE TABLE table_name_38 (births__000s_ INTEGER, deaths VARCHAR) | SELECT AVG(births__000s_) FROM table_name_38 WHERE deaths = 0.4 |
What was the amount of Births (000s) that had a death rate larger than 7.6, and a Year of 1990-2009? | CREATE TABLE table_name_59 (births__000s_ INTEGER, deaths VARCHAR, year VARCHAR) | SELECT SUM(births__000s_) FROM table_name_59 WHERE deaths > 7.6 AND year = "1990-2009" |
What was the total fertility rate that had a death rate larger than 7.8? | CREATE TABLE table_name_60 (total_fertility_rate VARCHAR, deaths INTEGER) | SELECT total_fertility_rate FROM table_name_60 WHERE deaths > 7.8 |
How many votes did the security guard get? | CREATE TABLE table_name_78 (votes VARCHAR, occupation VARCHAR) | SELECT votes FROM table_name_78 WHERE occupation = "security guard" |
What is the average value for 2005, when the value for 2008 is greater than 0, when the value for 2007 is greater than 310, when the Average annual is 767, and when the Total is greater than 4,597? | CREATE TABLE table_name_38 (total VARCHAR, average_annual VARCHAR) | SELECT AVG(2005) FROM table_name_38 WHERE 2008 > 0 AND 2007 > 310 AND average_annual = 767 AND total > 4 OFFSET 597 |
What is the average value for 2005, when the value for Average annual is 767? | CREATE TABLE table_name_32 (average_annual VARCHAR) | SELECT AVG(2005) FROM table_name_32 WHERE average_annual = 767 |
In what Year was 1st Division El Salvador with a Finish of Champion and a Team of Fas? | CREATE TABLE table_name_83 (year VARCHAR, team VARCHAR, tournament VARCHAR, finish VARCHAR) | SELECT year FROM table_name_83 WHERE tournament = "1st division el salvador" AND finish = "champion" AND team = "fas" |
In what Year was the Finish Champions? | CREATE TABLE table_name_99 (year VARCHAR, finish VARCHAR) | SELECT year FROM table_name_99 WHERE finish = "champions" |
During the Tournament of 1st Division El Salvador, what was the Finish for the Team of Platense Municipal Zacatecoluca? | CREATE TABLE table_name_25 (finish VARCHAR, team VARCHAR, tournament VARCHAR) | SELECT finish FROM table_name_25 WHERE team = "platense municipal zacatecoluca" AND tournament = "1st division el salvador" |
What is the Role in the 1st Division Honduras Tournament? | CREATE TABLE table_name_82 (role VARCHAR, tournament VARCHAR) | SELECT role FROM table_name_82 WHERE tournament = "1st division honduras" |
What is the Tournament in the Year of 1986? | CREATE TABLE table_name_21 (tournament VARCHAR, year VARCHAR) | SELECT tournament FROM table_name_21 WHERE year = "1986" |
During the Tournament of Torneo Fraternidad/UNCAF Club championship, what is the Role of the Platense Municipal Zacatecoluca Team? | CREATE TABLE table_name_65 (role VARCHAR, team VARCHAR, tournament VARCHAR) | SELECT role FROM table_name_65 WHERE team = "platense municipal zacatecoluca" AND tournament = "torneo fraternidad/uncaf club championship" |
What is the record of teams that play the yankees, and lose at mulholland (5-6) | CREATE TABLE table_name_61 (record VARCHAR, opponent VARCHAR, loss VARCHAR) | SELECT record FROM table_name_61 WHERE opponent = "yankees" AND loss = "mulholland (5-6)" |
Which total is highest with 0 gold and more than 0 silver, in Ukraine? | CREATE TABLE table_name_80 (total INTEGER, nation VARCHAR, gold VARCHAR, silver VARCHAR) | SELECT MAX(total) FROM table_name_80 WHERE gold = 0 AND silver > 0 AND nation = "ukraine" |
What is the total rank with more than 2 silver and total larger than 10? | CREATE TABLE table_name_55 (rank INTEGER, silver VARCHAR, total VARCHAR) | SELECT SUM(rank) FROM table_name_55 WHERE silver = 2 AND total > 10 |
What is the total rank with a total larger than 2, and less than 0 gold | CREATE TABLE table_name_86 (rank INTEGER, total VARCHAR, gold VARCHAR) | SELECT SUM(rank) FROM table_name_86 WHERE total > 2 AND gold < 0 |
Which is the highest bronze with gold less than 0? | CREATE TABLE table_name_17 (bronze INTEGER, gold INTEGER) | SELECT MAX(bronze) FROM table_name_17 WHERE gold < 0 |
What is the total with a rank less than 5, gold larger than 5 and bronze larger than 8? | CREATE TABLE table_name_89 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR) | SELECT SUM(total) FROM table_name_89 WHERE rank < 5 AND gold > 5 AND bronze > 8 |
Result of 1st, and an Extra of 4 x 400 m relay is in what lowest year? | CREATE TABLE table_name_3 (year INTEGER, result VARCHAR, extra VARCHAR) | SELECT MIN(year) FROM table_name_3 WHERE result = "1st" AND extra = "4 x 400 m relay" |
a Year smaller than 2007, and a Result of 1st is in what venue? | CREATE TABLE table_name_41 (venue VARCHAR, year VARCHAR, result VARCHAR) | SELECT venue FROM table_name_41 WHERE year < 2007 AND result = "1st" |
Venue of melbourne , australia, and a Extra of 200 m has what results? | CREATE TABLE table_name_90 (result VARCHAR, venue VARCHAR, extra VARCHAR) | SELECT result FROM table_name_90 WHERE venue = "melbourne , australia" AND extra = "200 m" |
Result of 1st, and a Venue of melbourne , australia, and a Extra of 100 m happened in which year? | CREATE TABLE table_name_10 (year VARCHAR, extra VARCHAR, result VARCHAR, venue VARCHAR) | SELECT year FROM table_name_10 WHERE result = "1st" AND venue = "melbourne , australia" AND extra = "100 m" |
Name the rectifier for Det/Pre-amp of x and # tubes of 4 | CREATE TABLE table_name_69 (rectifier VARCHAR, det_pre_amp VARCHAR, _number_tubes VARCHAR) | SELECT rectifier FROM table_name_69 WHERE det_pre_amp = "x" AND _number_tubes = "4" |
Name the det/pre-amp with # of tubes of 8 | CREATE TABLE table_name_74 (det_pre_amp VARCHAR, _number_tubes VARCHAR) | SELECT det_pre_amp FROM table_name_74 WHERE _number_tubes = "8" |
Name the det/pre-amp with # tubes of 4 and rectifier of x | CREATE TABLE table_name_56 (det_pre_amp VARCHAR, _number_tubes VARCHAR, rectifier VARCHAR) | SELECT det_pre_amp FROM table_name_56 WHERE _number_tubes = "4" AND rectifier = "x" |
Name the # tubes with audio amp of x | CREATE TABLE table_name_30 (_number_tubes VARCHAR, audio_amp VARCHAR) | SELECT _number_tubes FROM table_name_30 WHERE audio_amp = "x" |
What type of Competition has a Goal of 3? | CREATE TABLE table_name_84 (competition VARCHAR, goal VARCHAR) | SELECT competition FROM table_name_84 WHERE goal = 3 |
Which Competition has the Date July 1, 2000? | CREATE TABLE table_name_17 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_17 WHERE date = "july 1, 2000" |
Which years did James Robert Jones serve? | CREATE TABLE table_name_46 (years VARCHAR, representative VARCHAR) | SELECT years FROM table_name_46 WHERE representative = "james robert jones" |
James Hutchins Johnson, from New Hampshire, served during what years? | CREATE TABLE table_name_40 (years VARCHAR, state VARCHAR, representative VARCHAR) | SELECT years FROM table_name_40 WHERE state = "new hampshire" AND representative = "james hutchins johnson" |
Who is the team that has played more than 18 games and has 6 losses? | CREATE TABLE table_name_97 (team_name VARCHAR, losses VARCHAR, games VARCHAR) | SELECT team_name FROM table_name_97 WHERE losses = 6 AND games > 18 |
Which season did the Burnaby Lakers have less than 16 points and less than 18 losses? | CREATE TABLE table_name_19 (season VARCHAR, points VARCHAR, losses VARCHAR) | SELECT season FROM table_name_19 WHERE points < 16 AND losses = 18 |
Which team had more than 15 losses in 1988? | CREATE TABLE table_name_23 (team_name VARCHAR, losses VARCHAR, season VARCHAR) | SELECT team_name FROM table_name_23 WHERE losses > 15 AND season = "1988" |
How many losses did the Burnaby Lakers accumulate when they scored 8 points in 1998 playing less than 25 games? | CREATE TABLE table_name_11 (losses INTEGER, games VARCHAR, season VARCHAR, team_name VARCHAR, points VARCHAR) | SELECT SUM(losses) FROM table_name_11 WHERE team_name = "burnaby lakers" AND points = 8 AND season = "1998" AND games < 25 |
What was the school for the player who was a DL? | CREATE TABLE table_name_53 (school_club_team VARCHAR, position VARCHAR) | SELECT school_club_team FROM table_name_53 WHERE position = "dl" |
Which pick was used on Ian Hazlett? | CREATE TABLE table_name_8 (pick INTEGER, player VARCHAR) | SELECT MIN(pick) FROM table_name_8 WHERE player = "ian hazlett" |
Which Thumb stick has a Basic shape of curved, a Backlit of yes, and a Supplier of genius? | CREATE TABLE table_name_37 (thumb_stick VARCHAR, supplier VARCHAR, basic_shape VARCHAR, backlit VARCHAR) | SELECT thumb_stick FROM table_name_37 WHERE basic_shape = "curved" AND backlit = "yes" AND supplier = "genius" |
Which Thumb stick has a Wrist pad of no, and a Supplier of sharkoon? | CREATE TABLE table_name_76 (thumb_stick VARCHAR, wrist_pad VARCHAR, supplier VARCHAR) | SELECT thumb_stick FROM table_name_76 WHERE wrist_pad = "no" AND supplier = "sharkoon" |
Which keys (x modes) have a Supplier of wolfking? | CREATE TABLE table_name_55 (keys__x_modes_ VARCHAR, supplier VARCHAR) | SELECT keys__x_modes_ FROM table_name_55 WHERE supplier = "wolfking" |
Which Supplier have a Basic shape of flat, a Wrist pad of no, and Keys (x modes) of 25+? | CREATE TABLE table_name_16 (supplier VARCHAR, keys__x_modes_ VARCHAR, basic_shape VARCHAR, wrist_pad VARCHAR) | SELECT supplier FROM table_name_16 WHERE basic_shape = "flat" AND wrist_pad = "no" AND keys__x_modes_ = "25+" |
Who was the opponent with the time 3:59? | CREATE TABLE table_name_52 (opponent VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_52 WHERE time = "3:59" |
Name the Israel Bowl for march 30, 2012 | CREATE TABLE table_name_65 (israel_bowl VARCHAR, date VARCHAR) | SELECT israel_bowl FROM table_name_65 WHERE date = "march 30, 2012" |
Name the venue for march 28, 2008 | CREATE TABLE table_name_47 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_47 WHERE date = "march 28, 2008" |
Name the champion for israel bowl of iv | CREATE TABLE table_name_33 (champion VARCHAR, israel_bowl VARCHAR) | SELECT champion FROM table_name_33 WHERE israel_bowl = "iv" |
Name the season for runner up of judean rebels | CREATE TABLE table_name_56 (season VARCHAR, runner_up VARCHAR) | SELECT season FROM table_name_56 WHERE runner_up = "judean rebels" |
On what date did the event begin that had a steam traction type and used the system named HSM (1883–1910) GT (1915–1922)? | CREATE TABLE table_name_46 (date__from_ VARCHAR, name_of_system VARCHAR, traction_type VARCHAR) | SELECT date__from_ FROM table_name_46 WHERE name_of_system = "hsm (1883–1910) gt (1915–1922)" AND traction_type = "steam" |
On what date did the event at Zaltbommel begin? | CREATE TABLE table_name_66 (date__from_ VARCHAR, location VARCHAR) | SELECT date__from_ FROM table_name_66 WHERE location = "zaltbommel" |
At what location did the event that used electric traction and system name ATM (1880–1911) GETA (1911–1944) occur? | CREATE TABLE table_name_5 (location VARCHAR, name_of_system VARCHAR, traction_type VARCHAR) | SELECT location FROM table_name_5 WHERE name_of_system = "atm (1880–1911) geta (1911–1944)" AND traction_type = "electric" |
What is the to par of the player from England with a t1 place? | CREATE TABLE table_name_93 (to_par VARCHAR, country VARCHAR, place VARCHAR) | SELECT to_par FROM table_name_93 WHERE country = "england" AND place = "t1" |
What is the country sergio garcía, who has a score of 69-70-67=206, is from? | CREATE TABLE table_name_43 (country VARCHAR, player VARCHAR, score VARCHAR) | SELECT country FROM table_name_43 WHERE score = 69 - 70 - 67 = 206 AND player = "sergio garcía" |
What is the to par of the player from the United States with a t5 place? | CREATE TABLE table_name_38 (to_par VARCHAR, country VARCHAR, place VARCHAR) | SELECT to_par FROM table_name_38 WHERE country = "united states" AND place = "t5" |
What is the to par of the player from the United States with a score of 69-68-65=202? | CREATE TABLE table_name_44 (to_par VARCHAR, country VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_44 WHERE country = "united states" AND score = 69 - 68 - 65 = 202 |
How many lanes had a rank smaller than 4 and a time of 2:01.51? | CREATE TABLE table_name_88 (lane VARCHAR, time VARCHAR, rank VARCHAR) | SELECT COUNT(lane) FROM table_name_88 WHERE time = "2:01.51" AND rank < 4 |
What was the time of the person in lane 7? | CREATE TABLE table_name_39 (time VARCHAR, lane VARCHAR) | SELECT time FROM table_name_39 WHERE lane = 7 |
How many employees at nokia, ranked under 3? | CREATE TABLE table_name_50 (employees INTEGER, company VARCHAR, rank VARCHAR) | SELECT MAX(employees) FROM table_name_50 WHERE company = "nokia" AND rank < 3 |
The person with a rank of 8 moving to Shakhtar Donetsk was moving from what Ukrainian Football Club as a transfer? | CREATE TABLE table_name_2 (moving_from VARCHAR, moving_to VARCHAR, rank VARCHAR) | SELECT moving_from FROM table_name_2 WHERE moving_to = "shakhtar donetsk" AND rank = 8 |
Ismaël Bangoura with a rank larger than 5 after the year 2005 was moving to what football club? | CREATE TABLE table_name_39 (moving_to VARCHAR, name VARCHAR, year VARCHAR, rank VARCHAR) | SELECT moving_to FROM table_name_39 WHERE year > 2005 AND rank > 5 AND name = "ismaël bangoura" |
The player with a rank of 9, made a move from what football club? | CREATE TABLE table_name_55 (moving_from VARCHAR, rank VARCHAR) | SELECT moving_from FROM table_name_55 WHERE rank = 9 |
Moving from Nancy after 2005, what is listed as the lowest rank? | CREATE TABLE table_name_37 (rank INTEGER, year VARCHAR, moving_from VARCHAR) | SELECT MIN(rank) FROM table_name_37 WHERE year > 2005 AND moving_from = "nancy" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.