text
stringlengths 142
882
|
---|
table: 1-1140083-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: What was the constructor for round 15?
A: SELECT Constructor FROM 1-1140083-2 WHERE Rnd = 15 |
table: 1-1140088-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: Who won the Brands Hatch circuit?
A: SELECT Winning driver FROM 1-1140088-6 WHERE Circuit = 'Brands Hatch' |
table: 1-1140088-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: Who constructed the I Italian Republic Grand Prix?
A: SELECT Constructor FROM 1-1140088-6 WHERE Race Name = 'I Italian Republic Grand Prix' |
table: 1-1140088-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What race was held at Oulton Park?
A: SELECT Race Name FROM 1-1140088-6 WHERE Circuit = 'Oulton Park' |
table: 1-1140088-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: Did the I Brazilian Grand Prix have a report?
A: SELECT Report FROM 1-1140088-6 WHERE Race Name = 'I Brazilian Grand Prix' |
table: 1-1140085-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what is the race where the pole position is niki lauda and the date is 27 april?
A: SELECT Race FROM 1-1140085-2 WHERE Pole Position = 'Niki Lauda' AND Date = '27 April' |
table: 1-1140085-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what is the date where the constructor is ferrari and the location is anderstorp?
A: SELECT Date FROM 1-1140085-2 WHERE Constructor = 'Ferrari' AND Location = 'Anderstorp' |
table: 1-1140085-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: how many times is the pole position niki lauda and the race is monaco grand prix?
A: SELECT COUNT Rnd FROM 1-1140085-2 WHERE Pole Position = 'Niki Lauda' AND Race = 'Monaco Grand Prix' |
table: 1-1140085-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what is the report where the location is kyalami?
A: SELECT Report FROM 1-1140085-2 WHERE Location = 'Kyalami' |
table: 1-1140085-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: who is the pole position for the rnd 3
A: SELECT Pole Position FROM 1-1140085-2 WHERE Rnd = 3 |
table: 1-1140085-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what is the race where the fastest lap is by jean-pierre jarier?
A: SELECT Race FROM 1-1140085-2 WHERE Fastest Lap = 'Jean-Pierre Jarier' |
table: 1-1140090-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What circuit did Clay Regazzoni win?
A: SELECT Circuit FROM 1-1140090-6 WHERE Winning driver = 'Clay Regazzoni' |
table: 1-1140090-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What was the date when Chris Amon won?
A: SELECT Date FROM 1-1140090-6 WHERE Winning driver = 'Chris Amon' |
table: 1-1140090-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What circuit is the Vi Rhein-Pokalrennen race in?
A: SELECT Circuit FROM 1-1140090-6 WHERE Race Name = 'VI Rhein-Pokalrennen' |
table: 1-1140103-6
columns: #, Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What date is listed at place 13
A: SELECT Date FROM 1-1140103-6 WHERE # = 13 |
table: 1-1140103-6
columns: #, Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What date has a solitudering circuit
A: SELECT Date FROM 1-1140103-6 WHERE Circuit = 'Solitudering' |
table: 1-1140103-6
columns: #, Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: How many dates have silverstone circuit
A: SELECT COUNT Date FROM 1-1140103-6 WHERE Circuit = 'Silverstone' |
table: 1-1140103-6
columns: #, Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: How many constructors are listed for the XVI BRDC international trophy race
A: SELECT COUNT Constructor FROM 1-1140103-6 WHERE Race Name = 'XVI BRDC International Trophy' |
table: 1-1140105-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What is the name of the circuit in which the race name is ii danish grand prix?
A: SELECT Circuit FROM 1-1140105-6 WHERE Race Name = 'II Danish Grand Prix' |
table: 1-1140105-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What is te name of the constructors dated 26 march?
A: SELECT Constructor FROM 1-1140105-6 WHERE Date = '26 March' |
table: 1-1140105-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What is the total amount of circuts dated 22 april?
A: SELECT COUNT Circuit FROM 1-1140105-6 WHERE Date = '22 April' |
table: 1-1140105-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: what is the name of the constructor that has the circuit zeltweg airfield?
A: SELECT Constructor FROM 1-1140105-6 WHERE Circuit = 'Zeltweg Airfield' |
table: 1-1140105-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What is the name of the winning driver where the circuit name is posillipo?
A: SELECT Winning driver FROM 1-1140105-6 WHERE Circuit = 'Posillipo' |
table: 1-1140105-6
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What is the name of the circuit where the race xi Syracuse grand prix was held?
A: SELECT Circuit FROM 1-1140105-6 WHERE Race Name = 'XI Syracuse Grand Prix' |
table: 1-1140111-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What kind of report is for the Pau circuit?
A: SELECT Report FROM 1-1140111-5 WHERE Circuit = 'Pau' |
table: 1-1140111-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: How many different kinds of reports are there for races that Juan Manuel Fangio won?
A: SELECT COUNT Report FROM 1-1140111-5 WHERE Winning driver = 'Juan Manuel Fangio' |
table: 1-1140111-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: Who constructed the Syracuse circuit?
A: SELECT Constructor FROM 1-1140111-5 WHERE Circuit = 'Syracuse' |
table: 1-1140116-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What is the name of the race in the Modena circuit?
A: SELECT Race Name FROM 1-1140116-5 WHERE Circuit = 'Modena' |
table: 1-1140116-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What is the race name in the Monza circuit?
A: SELECT Race Name FROM 1-1140116-5 WHERE Circuit = 'Monza' |
table: 1-1140116-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: When does V Madgwick Cup take place?
A: SELECT Date FROM 1-1140116-5 WHERE Race Name = 'V Madgwick Cup' |
table: 1-1140116-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: Which driver won the race xiv eläintarhanajot?
A: SELECT Winning driver FROM 1-1140116-5 WHERE Race Name = 'XIV Eläintarhanajot' |
table: 1-1140116-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: Who won the Modena circuit?
A: SELECT Winning driver FROM 1-1140116-5 WHERE Circuit = 'Modena' |
table: 1-1140113-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: How many constructors won the III Redex Trophy?
A: SELECT COUNT Constructor FROM 1-1140113-5 WHERE Race Name = 'III RedeX Trophy' |
table: 1-1140113-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What was the report of Mike Hawthorn's winning race?
A: SELECT Report FROM 1-1140113-5 WHERE Winning driver = 'Mike Hawthorn' |
table: 1-1140113-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What was the name of the race in Bordeaux?
A: SELECT Race Name FROM 1-1140113-5 WHERE Circuit = 'Bordeaux' |
table: 1-1140117-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What is the report for the race name V Ulster Trophy?
A: SELECT Report FROM 1-1140117-5 WHERE Race Name = 'V Ulster Trophy' |
table: 1-1140117-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What is the constructor for the Silverstone circuit?
A: SELECT Constructor FROM 1-1140117-5 WHERE Circuit = 'Silverstone' |
table: 1-1140117-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What's the report for the Silverstone circuit?
A: SELECT Report FROM 1-1140117-5 WHERE Circuit = 'Silverstone' |
table: 1-1140117-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: What's the report for the race name, XIII Grand Prix de l'Albigeois?
A: SELECT Report FROM 1-1140117-5 WHERE Race Name = 'XIII Grand Prix de l'Albigeois' |
table: 1-1140117-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: Which date did the race name XII Pau Grand Prix take place on?
A: SELECT Date FROM 1-1140117-5 WHERE Race Name = 'XII Pau Grand Prix' |
table: 1-1140117-5
columns: Race Name, Circuit, Date, Winning driver, Constructor, Report
Q: Who was the winning driver for the goodwood circuit?
A: SELECT Winning driver FROM 1-1140117-5 WHERE Circuit = 'Goodwood' |
table: 1-11411026-2
columns: No. in series, No. in season, Title, Directed by, Written by, Original air date, U.S. viewers (millions)
Q: How many millions of U.S. viewers whatched episodes written by Krystal Houghton?
A: SELECT U.S. viewers (millions) FROM 1-11411026-2 WHERE Written by = 'Krystal Houghton' |
table: 1-11411026-2
columns: No. in series, No. in season, Title, Directed by, Written by, Original air date, U.S. viewers (millions)
Q: How many titles were directed in series 79?
A: SELECT COUNT Directed by FROM 1-11411026-2 WHERE No. in series = 79 |
table: 1-11411026-2
columns: No. in series, No. in season, Title, Directed by, Written by, Original air date, U.S. viewers (millions)
Q: Who wrote an episode watched by 19.01 million US viewers?
A: SELECT Written by FROM 1-11411026-2 WHERE U.S. viewers (millions) = '19.01' |
table: 1-11404452-1
columns: Series #, Episode title, Writer(s), Director, U.S. viewers (millions), Original air date
Q: What are the titles of the episodes where Rodman Flender is the director?
A: SELECT Episode title FROM 1-11404452-1 WHERE Director = 'Rodman Flender' |
table: 1-11404452-1
columns: Series #, Episode title, Writer(s), Director, U.S. viewers (millions), Original air date
Q: What is the original air date of the Jamie Babbit directed episode?
A: SELECT Original air date FROM 1-11404452-1 WHERE Director = 'Jamie Babbit' |
table: 1-11404452-1
columns: Series #, Episode title, Writer(s), Director, U.S. viewers (millions), Original air date
Q: What is the original air date when there were 12.81 million u.s viewers?
A: SELECT Original air date FROM 1-11404452-1 WHERE U.S. viewers (millions) = '12.81' |
table: 1-11404452-1
columns: Series #, Episode title, Writer(s), Director, U.S. viewers (millions), Original air date
Q: When did Shelia Lawrence join the series?
A: SELECT MIN Series # FROM 1-11404452-1 WHERE Writer(s) = 'Shelia Lawrence' |
table: 1-11404452-1
columns: Series #, Episode title, Writer(s), Director, U.S. viewers (millions), Original air date
Q: Who was the director when there were 13.66 million u.s viewers?
A: SELECT Director FROM 1-11404452-1 WHERE U.S. viewers (millions) = '13.66' |
table: 1-1143966-1
columns: Season, Games, Won, Lost, Tied, Points, Pct %, Goals for, Goals against, Standing
Q: Name the percentage where the amount won was 25
A: SELECT Pct % FROM 1-1143966-1 WHERE Won = 25 |
table: 1-1143966-1
columns: Season, Games, Won, Lost, Tied, Points, Pct %, Goals for, Goals against, Standing
Q: How many games were won with 2nd oha was standing and there were 62 games?
A: SELECT Won FROM 1-1143966-1 WHERE Standing = '2nd OHA' AND Games = 62 |
table: 1-11447995-2
columns: Ward, Bello, Ben-Tahir, Doucet, Furtenbacher, Gauthier, Haydon, Larter, Lawrance, Libweshya, Liscumb
Q: What is the Liscumb when Gauthier is 34?
A: SELECT Liscumb FROM 1-11447995-2 WHERE Gauthier = '34' |
table: 1-11447995-2
columns: Ward, Bello, Ben-Tahir, Doucet, Furtenbacher, Gauthier, Haydon, Larter, Lawrance, Libweshya, Liscumb
Q: What is the Bello when Ben-Tahir is 296?
A: SELECT Bello FROM 1-11447995-2 WHERE Ben-Tahir = '296' |
table: 1-11447995-2
columns: Ward, Bello, Ben-Tahir, Doucet, Furtenbacher, Gauthier, Haydon, Larter, Lawrance, Libweshya, Liscumb
Q: What is Ben-Tahir when Bello is 51?
A: SELECT Ben-Tahir FROM 1-11447995-2 WHERE Bello = '51' |
table: 1-11447995-2
columns: Ward, Bello, Ben-Tahir, Doucet, Furtenbacher, Gauthier, Haydon, Larter, Lawrance, Libweshya, Liscumb
Q: What is Haydon when Larter is 11 and Libweshya is 4?
A: SELECT Haydon FROM 1-11447995-2 WHERE Larter = '11' AND Libweshya = '4' |
table: 1-11447995-2
columns: Ward, Bello, Ben-Tahir, Doucet, Furtenbacher, Gauthier, Haydon, Larter, Lawrance, Libweshya, Liscumb
Q: What is Liscumb when Haydon is 1632?
A: SELECT Liscumb FROM 1-11447995-2 WHERE Haydon = '1632' |
table: 1-11447995-2
columns: Ward, Bello, Ben-Tahir, Doucet, Furtenbacher, Gauthier, Haydon, Larter, Lawrance, Libweshya, Liscumb
Q: What is Doucet when Lawrance is 36?
A: SELECT Doucet FROM 1-11447995-2 WHERE Lawrance = '36' |
table: 1-11449590-2
columns: Week, Date, Opponent, Result, Kickoff [a ], Game site, TV, Attendance, Record
Q: Which tv had the date december 7, 1986?
A: SELECT TV FROM 1-11449590-2 WHERE Date = 'December 7, 1986' |
table: 1-11449590-2
columns: Week, Date, Opponent, Result, Kickoff [a ], Game site, TV, Attendance, Record
Q: Which kickoff has the opponent at new orleans saints?
A: SELECT Kickoff [a ] FROM 1-11449590-2 WHERE Opponent = 'at New Orleans Saints' |
table: 1-11464746-1
columns: House Name, Composition, Named after, Founded, Colours
Q: How many houses are green?
A: SELECT COUNT House Name FROM 1-11464746-1 WHERE Colours = 'Green' |
table: 1-11464746-1
columns: House Name, Composition, Named after, Founded, Colours
Q: What year was the house named gongola made?
A: SELECT Founded FROM 1-11464746-1 WHERE House Name = 'Gongola' |
table: 1-11464746-1
columns: House Name, Composition, Named after, Founded, Colours
Q: What is the name of the green house?
A: SELECT House Name FROM 1-11464746-1 WHERE Colours = 'Green' |
table: 1-11464746-1
columns: House Name, Composition, Named after, Founded, Colours
Q: What is the green house made of?
A: SELECT Composition FROM 1-11464746-1 WHERE Colours = 'Green' |
table: 1-11464746-1
columns: House Name, Composition, Named after, Founded, Colours
Q: What is the benue house made of?
A: SELECT Composition FROM 1-11464746-1 WHERE House Name = 'Benue' |
table: 1-11465521-2
columns: Week, Date, Opponent, Result, Kickoff [a ], Game site, TV, Attendance, Record
Q: In which week was the game against a team with a record of 3-6 played?
A: SELECT COUNT Week FROM 1-11465521-2 WHERE Record = '3-6' |
table: 1-11465521-2
columns: Week, Date, Opponent, Result, Kickoff [a ], Game site, TV, Attendance, Record
Q: Which channel had the game against the Minnesota Vikings?
A: SELECT TV FROM 1-11465521-2 WHERE Opponent = 'Minnesota Vikings' |
table: 1-11465521-2
columns: Week, Date, Opponent, Result, Kickoff [a ], Game site, TV, Attendance, Record
Q: How many opponents were there at the game with 64,087 people in attendance?
A: SELECT COUNT Opponent FROM 1-11465521-2 WHERE Attendance = '64,087' |
table: 1-11452830-2
columns: Week, Date, Opponent, Result, Kickoff [a ], Game site, TV, Attendance, Record
Q: Where was the game played when the team's record was 1-3?
A: SELECT Game site FROM 1-11452830-2 WHERE Record = '1-3' |
table: 1-11452830-2
columns: Week, Date, Opponent, Result, Kickoff [a ], Game site, TV, Attendance, Record
Q: How many times was there a kickoff in the September 4, 1988 game?
A: SELECT COUNT Kickoff [a ] FROM 1-11452830-2 WHERE Date = 'September 4, 1988' |
table: 1-11452830-2
columns: Week, Date, Opponent, Result, Kickoff [a ], Game site, TV, Attendance, Record
Q: How many crowds watched the game where the record was 1-3?
A: SELECT COUNT Attendance FROM 1-11452830-2 WHERE Record = '1-3' |
table: 1-1149495-1
columns: Series, Year, Winner, Runner-up, Third place, Fourth place, Fifth place, Sixth place, Host
Q: What year finished with Daniel Zueras as the runner-up?
A: SELECT COUNT Year FROM 1-1149495-1 WHERE Runner-up = 'Daniel Zueras' |
table: 1-1149495-1
columns: Series, Year, Winner, Runner-up, Third place, Fourth place, Fifth place, Sixth place, Host
Q: How many people hosted the show in the year when Chenoa ended up in fourth place?
A: SELECT COUNT Host FROM 1-1149495-1 WHERE Fourth place = 'Chenoa' |
table: 1-1149495-1
columns: Series, Year, Winner, Runner-up, Third place, Fourth place, Fifth place, Sixth place, Host
Q: How many fourth places were there in 2003?
A: SELECT COUNT Fourth place FROM 1-1149495-1 WHERE Year = '2003' |
table: 1-1147705-1
columns: model, max. motive power, max. torque at rpm, engine displacement, engine type, engine configuration & notes 0-100km/h
Q: What is the engine type when the max torque at rpm is n·m ( lbf·ft ) @ 4,800 Answers:?
A: SELECT engine type FROM 1-1147705-1 WHERE max. torque at rpm = 'N·m ( lbf·ft ) @ 4,800' |
table: 1-1147705-1
columns: model, max. motive power, max. torque at rpm, engine displacement, engine type, engine configuration & notes 0-100km/h
Q: What is the engine configuration $notes 0-100km/h for the engine type b5244 t2?
A: SELECT engine configuration & notes 0-100km/h FROM 1-1147705-1 WHERE engine type = 'B5244 T2' |
table: 1-1147705-1
columns: model, max. motive power, max. torque at rpm, engine displacement, engine type, engine configuration & notes 0-100km/h
Q: What is the engine displacement for the engine type b5254 t?
A: SELECT engine displacement FROM 1-1147705-1 WHERE engine type = 'B5254 T' |
table: 1-1147705-1
columns: model, max. motive power, max. torque at rpm, engine displacement, engine type, engine configuration & notes 0-100km/h
Q: How many have are model 2.4 awd?
A: SELECT COUNT engine type FROM 1-1147705-1 WHERE model = '2.4 AWD' |
table: 1-1147705-1
columns: model, max. motive power, max. torque at rpm, engine displacement, engine type, engine configuration & notes 0-100km/h
Q: How many engine b5204 t3?
A: SELECT COUNT engine displacement FROM 1-1147705-1 WHERE engine type = 'B5204 T3' |
table: 1-1147705-1
columns: model, max. motive power, max. torque at rpm, engine displacement, engine type, engine configuration & notes 0-100km/h
Q: How many engine b5234 t3?
A: SELECT COUNT model FROM 1-1147705-1 WHERE engine type = 'B5234 T3' |
table: 1-1147701-4
columns: Model name, Power (ps), Torque (Nm@rpm), Displacement (cm³), Engine code, Comment
Q: how many power (ps) with torque (nm@rpm) being 240@2200-5000
A: SELECT COUNT Power (ps) FROM 1-1147701-4 WHERE Torque (Nm@rpm) = '240@2200-5000' |
table: 1-1147701-4
columns: Model name, Power (ps), Torque (Nm@rpm), Displacement (cm³), Engine code, Comment
Q: what's the comment with model name being 2.4 (2001-2007)
A: SELECT Comment FROM 1-1147701-4 WHERE Model name = '2.4 (2001-2007)' |
table: 1-1147701-4
columns: Model name, Power (ps), Torque (Nm@rpm), Displacement (cm³), Engine code, Comment
Q: what's the model name with engine code being b5204 t5
A: SELECT Model name FROM 1-1147701-4 WHERE Engine code = 'B5204 T5' |
table: 1-1147701-4
columns: Model name, Power (ps), Torque (Nm@rpm), Displacement (cm³), Engine code, Comment
Q: what's the dbeingplacement (cm³) with torque (nm@rpm) being 350@1800-6000
A: SELECT Displacement (cm³) FROM 1-1147701-4 WHERE Torque (Nm@rpm) = '350@1800-6000' |
table: 1-1147701-4
columns: Model name, Power (ps), Torque (Nm@rpm), Displacement (cm³), Engine code, Comment
Q: what's the model name with torque (nm@rpm) being 230@4500
A: SELECT Model name FROM 1-1147701-4 WHERE Torque (Nm@rpm) = '230@4500' |
table: 1-1147701-4
columns: Model name, Power (ps), Torque (Nm@rpm), Displacement (cm³), Engine code, Comment
Q: what's the model name with engine code being b5254 t4
A: SELECT Model name FROM 1-1147701-4 WHERE Engine code = 'B5254 T4' |
table: 1-1147701-5
columns: Model name, Power (ps), Torque (Nm@rpm), Displacement (cm³), Engine code, Comment
Q: Name the torque of the engine is d5244 t5
A: SELECT Torque (Nm@rpm) FROM 1-1147701-5 WHERE Engine code = 'D5244 T5' |
table: 1-1147701-5
columns: Model name, Power (ps), Torque (Nm@rpm), Displacement (cm³), Engine code, Comment
Q: What is the model of the engine d5244 t?
A: SELECT Model name FROM 1-1147701-5 WHERE Engine code = 'D5244 T' |
table: 1-1147701-5
columns: Model name, Power (ps), Torque (Nm@rpm), Displacement (cm³), Engine code, Comment
Q: What is the model of the enginge d5252 t?
A: SELECT Model name FROM 1-1147701-5 WHERE Engine code = 'D5252 T' |
table: 1-1147701-5
columns: Model name, Power (ps), Torque (Nm@rpm), Displacement (cm³), Engine code, Comment
Q: What is the model of the engine d5244 t7?
A: SELECT Model name FROM 1-1147701-5 WHERE Engine code = 'D5244 T7' |
table: 1-11545282-11
columns: Player, No., Nationality, Position, Years for Jazz, School/Club Team
Q: What is the position of number 47?
A: SELECT Position FROM 1-11545282-11 WHERE No. = '47' |
table: 1-11545282-11
columns: Player, No., Nationality, Position, Years for Jazz, School/Club Team
Q: Name the position of Turkey
A: SELECT Position FROM 1-11545282-11 WHERE Nationality = 'Turkey' |
table: 1-11545282-11
columns: Player, No., Nationality, Position, Years for Jazz, School/Club Team
Q: Who is player number 51?
A: SELECT Player FROM 1-11545282-11 WHERE No. = '51' |
table: 1-11545282-11
columns: Player, No., Nationality, Position, Years for Jazz, School/Club Team
Q: What is the position for the years 1998-99
A: SELECT Position FROM 1-11545282-11 WHERE Years for Jazz = '1998-99' |
table: 1-11545282-11
columns: Player, No., Nationality, Position, Years for Jazz, School/Club Team
Q: How many positions are for creighton?
A: SELECT COUNT Position FROM 1-11545282-11 WHERE School/Club Team = 'Creighton' |
table: 1-11545282-12
columns: Player, No., Nationality, Position, Years for Jazz, School/Club Team
Q: Which player is from Marshall and played 1974-75?
A: SELECT Player FROM 1-11545282-12 WHERE Years for Jazz = '1974-75' AND School/Club Team = 'Marshall' |
table: 1-11545282-12
columns: Player, No., Nationality, Position, Years for Jazz, School/Club Team
Q: Which country is the player that went to Oregon?
A: SELECT Nationality FROM 1-11545282-12 WHERE School/Club Team = 'Oregon' |
table: 1-11545282-12
columns: Player, No., Nationality, Position, Years for Jazz, School/Club Team
Q: Which country is Jim Les from?
A: SELECT Nationality FROM 1-11545282-12 WHERE Player = 'Jim Les' |
table: 1-11545282-12
columns: Player, No., Nationality, Position, Years for Jazz, School/Club Team
Q: Which number is the player from Minnesota?
A: SELECT MAX No. FROM 1-11545282-12 WHERE School/Club Team = 'Minnesota' |
table: 1-11545282-18
columns: Player, No., Nationality, Position, Years for Jazz, School/Club Team
Q: Which player played for years 2000-02
A: SELECT Player FROM 1-11545282-18 WHERE Years for Jazz = '2000-02' |
table: 1-11545282-18
columns: Player, No., Nationality, Position, Years for Jazz, School/Club Team
Q: Which school is Kirk Snyder from?
A: SELECT School/Club Team FROM 1-11545282-18 WHERE Player = 'Kirk Snyder' |