instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: Name the driver/passenger for 30 | The relevant table was constructed using the following SQL : CREATE TABLE table_17176509_4 (driver___passenger VARCHAR, position VARCHAR) | SELECT COUNT(driver___passenger) FROM table_17176509_4 WHERE position = 30 |
Write a SQL query that answers the following question: Name the max bike number of position for 30 | The relevant table was constructed using the following SQL : CREATE TABLE table_17176509_4 (bike_no INTEGER, position VARCHAR) | SELECT MAX(bike_no) FROM table_17176509_4 WHERE position = 30 |
Write a SQL query that answers the following question: Who had the most points in game 4? | The relevant table was constructed using the following SQL : CREATE TABLE table_17190012_12 (high_points VARCHAR, game VARCHAR) | SELECT high_points FROM table_17190012_12 WHERE game = 4 |
Write a SQL query that answers the following question: Name the number of going to for thurlby, braceborough spa at departure being 16.50 | The relevant table was constructed using the following SQL : CREATE TABLE table_17200372_2 (going_to VARCHAR, calling_at VARCHAR, departure VARCHAR) | SELECT COUNT(going_to) FROM table_17200372_2 WHERE calling_at = "Thurlby, Braceborough Spa" AND departure = "16.50" |
Write a SQL query that answers the following question: Name the departure for spalding | The relevant table was constructed using the following SQL : CREATE TABLE table_17200372_2 (departure VARCHAR, going_to VARCHAR) | SELECT departure FROM table_17200372_2 WHERE going_to = "Spalding" |
Write a SQL query that answers the following question: who scored highest points on the game with record 27–5 | The relevant table was constructed using the following SQL : CREATE TABLE table_17190012_7 (high_points VARCHAR, record VARCHAR) | SELECT high_points FROM table_17190012_7 WHERE record = "27–5" |
Write a SQL query that answers the following question: who did highest rebounds in the game with score w 105–88 (ot) | The relevant table was constructed using the following SQL : CREATE TABLE table_17190012_7 (high_rebounds VARCHAR, score VARCHAR) | SELECT high_rebounds FROM table_17190012_7 WHERE score = "W 105–88 (OT)" |
Write a SQL query that answers the following question: how many records were made on the game that ended with score w 121–119 (ot) | The relevant table was constructed using the following SQL : CREATE TABLE table_17190012_7 (record VARCHAR, score VARCHAR) | SELECT COUNT(record) FROM table_17190012_7 WHERE score = "W 121–119 (OT)" |
Write a SQL query that answers the following question: What was the team's position when the new manager was Lucas Alcaraz? | The relevant table was constructed using the following SQL : CREATE TABLE table_17201869_3 (position_in_table VARCHAR, replaced_by VARCHAR) | SELECT position_in_table FROM table_17201869_3 WHERE replaced_by = "Lucas Alcaraz" |
Write a SQL query that answers the following question: Who replaced outgoing manager José Ángel Ziganda? | The relevant table was constructed using the following SQL : CREATE TABLE table_17201869_3 (replaced_by VARCHAR, outgoing_manager VARCHAR) | SELECT replaced_by FROM table_17201869_3 WHERE outgoing_manager = "José Ángel Ziganda" |
Write a SQL query that answers the following question: What grid did the driver who earned 19 points start at? | The relevant table was constructed using the following SQL : CREATE TABLE table_17244483_1 (grid VARCHAR, points VARCHAR) | SELECT grid FROM table_17244483_1 WHERE points = "19" |
Write a SQL query that answers the following question: Scott Dixon had how many Grid positions? | The relevant table was constructed using the following SQL : CREATE TABLE table_17244483_1 (grid VARCHAR, driver VARCHAR) | SELECT COUNT(grid) FROM table_17244483_1 WHERE driver = "Scott Dixon" |
Write a SQL query that answers the following question: Car number 15 earned what time? | The relevant table was constructed using the following SQL : CREATE TABLE table_17244483_1 (time_retired VARCHAR, car_no VARCHAR) | SELECT time_retired FROM table_17244483_1 WHERE car_no = 15 |
Write a SQL query that answers the following question: How many positions did the car with a final time of +10.8098 finish in? | The relevant table was constructed using the following SQL : CREATE TABLE table_17244483_1 (fin_pos VARCHAR, time_retired VARCHAR) | SELECT COUNT(fin_pos) FROM table_17244483_1 WHERE time_retired = "+10.8098" |
Write a SQL query that answers the following question: Darren Manning finished in what position? | The relevant table was constructed using the following SQL : CREATE TABLE table_17244483_1 (fin_pos INTEGER, driver VARCHAR) | SELECT MIN(fin_pos) FROM table_17244483_1 WHERE driver = "Darren Manning" |
Write a SQL query that answers the following question: What was the position for the Josef Kaufmann Racing team? | The relevant table was constructed using the following SQL : CREATE TABLE table_17246160_1 (position VARCHAR, team VARCHAR) | SELECT position FROM table_17246160_1 WHERE team = "Josef Kaufmann Racing" |
Write a SQL query that answers the following question: How many poles did the player have during the Formula BMW Pacific race? | The relevant table was constructed using the following SQL : CREATE TABLE table_17246160_1 (poles INTEGER, series VARCHAR) | SELECT MAX(poles) FROM table_17246160_1 WHERE series = "Formula BMW Pacific" |
Write a SQL query that answers the following question: Which season did he have 0 points and 31st position? | The relevant table was constructed using the following SQL : CREATE TABLE table_17246160_1 (season INTEGER, points VARCHAR, position VARCHAR) | SELECT MAX(season) FROM table_17246160_1 WHERE points = 0 AND position = "31st" |
Write a SQL query that answers the following question: How many wins did the player have in the Formula BMW World Final? | The relevant table was constructed using the following SQL : CREATE TABLE table_17246160_1 (wins VARCHAR, series VARCHAR) | SELECT wins FROM table_17246160_1 WHERE series = "Formula BMW World Final" |
Write a SQL query that answers the following question: On what date was the episode aired where event 2 was Hang Tough? | The relevant table was constructed using the following SQL : CREATE TABLE table_17257687_1 (air_date VARCHAR, event_2 VARCHAR) | SELECT air_date FROM table_17257687_1 WHERE event_2 = "Hang Tough" |
Write a SQL query that answers the following question: When event 4 was Whiplash, what was event 2? | The relevant table was constructed using the following SQL : CREATE TABLE table_17257687_1 (event_2 VARCHAR, event_4 VARCHAR) | SELECT event_2 FROM table_17257687_1 WHERE event_4 = "Whiplash" |
Write a SQL query that answers the following question: On how many different dates was event 1 Suspension Bridge? | The relevant table was constructed using the following SQL : CREATE TABLE table_17257687_1 (air_date VARCHAR, event_1 VARCHAR) | SELECT COUNT(air_date) FROM table_17257687_1 WHERE event_1 = "Suspension Bridge" |
Write a SQL query that answers the following question: On which episode number is event 4 The Wall and event 1 the Pendulum? | The relevant table was constructed using the following SQL : CREATE TABLE table_17257687_1 (episode_number VARCHAR, event_4 VARCHAR, event_1 VARCHAR) | SELECT COUNT(episode_number) FROM table_17257687_1 WHERE event_4 = "The Wall" AND event_1 = "Pendulum" |
Write a SQL query that answers the following question: What was event 2 when event 1 was Atlasphere? | The relevant table was constructed using the following SQL : CREATE TABLE table_17257687_1 (event_2 VARCHAR, event_1 VARCHAR) | SELECT event_2 FROM table_17257687_1 WHERE event_1 = "Atlasphere" |
Write a SQL query that answers the following question: What is the car number driven by Darren Manning? | The relevant table was constructed using the following SQL : CREATE TABLE table_17256857_1 (car_no VARCHAR, driver VARCHAR) | SELECT car_no FROM table_17256857_1 WHERE driver = "Darren Manning" |
Write a SQL query that answers the following question: Which position earned 50 points? | The relevant table was constructed using the following SQL : CREATE TABLE table_17256857_1 (fin_pos INTEGER, points VARCHAR) | SELECT MAX(fin_pos) FROM table_17256857_1 WHERE points = "50" |
Write a SQL query that answers the following question: How many drivers on the grid are called Vitor Meira? | The relevant table was constructed using the following SQL : CREATE TABLE table_17256857_1 (grid VARCHAR, driver VARCHAR) | SELECT COUNT(grid) FROM table_17256857_1 WHERE driver = "Vitor Meira" |
Write a SQL query that answers the following question: If the equation is 0 × 9² + 3 × 9 + 3, what is the result? | The relevant table was constructed using the following SQL : CREATE TABLE table_17265535_7 (result INTEGER, equation VARCHAR) | SELECT MIN(result) FROM table_17265535_7 WHERE equation = "0 × 9² + 3 × 9 + 3" |
Write a SQL query that answers the following question: If the equation is 6 × 9² + 6 × 9 + 6, what is the 3rd throw? | The relevant table was constructed using the following SQL : CREATE TABLE table_17265535_7 (equation VARCHAR) | SELECT MAX(3 AS rd_throw) FROM table_17265535_7 WHERE equation = "6 × 9² + 6 × 9 + 6" |
Write a SQL query that answers the following question: If the equation is 8 × 9² + 8 × 9 + 8, what is the 2nd throw? | The relevant table was constructed using the following SQL : CREATE TABLE table_17265535_7 (equation VARCHAR) | SELECT MIN(2 AS nd_throw) FROM table_17265535_7 WHERE equation = "8 × 9² + 8 × 9 + 8" |
Write a SQL query that answers the following question: If the equation is 1 × 9² + 4 × 9 + 0, what is the 2nd throw? | The relevant table was constructed using the following SQL : CREATE TABLE table_17265535_7 (equation VARCHAR) | SELECT 2 AS nd_throw FROM table_17265535_7 WHERE equation = "1 × 9² + 4 × 9 + 0" |
Write a SQL query that answers the following question: If the equation is 6 × 9² + 6 × 9 + 6, what is the 2nd throw? | The relevant table was constructed using the following SQL : CREATE TABLE table_17265535_7 (equation VARCHAR) | SELECT MAX(2 AS nd_throw) FROM table_17265535_7 WHERE equation = "6 × 9² + 6 × 9 + 6" |
Write a SQL query that answers the following question: When they played San Lorenzo, what was the score of the second leg? | The relevant table was constructed using the following SQL : CREATE TABLE table_17282875_3 (team__number1 VARCHAR) | SELECT 2 AS nd_leg FROM table_17282875_3 WHERE team__number1 = "San Lorenzo" |
Write a SQL query that answers the following question: When they played Universidad de Chile, what was the score of the first leg? | The relevant table was constructed using the following SQL : CREATE TABLE table_17282875_3 (team__number2 VARCHAR) | SELECT COUNT(1 AS st_leg) FROM table_17282875_3 WHERE team__number2 = "Universidad de Chile" |
Write a SQL query that answers the following question: Who played San Lorenzo? | The relevant table was constructed using the following SQL : CREATE TABLE table_17282875_3 (team__number2 VARCHAR, team__number1 VARCHAR) | SELECT team__number2 FROM table_17282875_3 WHERE team__number1 = "San Lorenzo" |
Write a SQL query that answers the following question: Who played River Plate? | The relevant table was constructed using the following SQL : CREATE TABLE table_17282875_3 (team__number2 VARCHAR, team__number1 VARCHAR) | SELECT team__number2 FROM table_17282875_3 WHERE team__number1 = "River Plate" |
Write a SQL query that answers the following question: What was the score on the 1st leg if the team 2 is botafogo? | The relevant table was constructed using the following SQL : CREATE TABLE table_17282875_2 (team__number2 VARCHAR) | SELECT COUNT(1 AS st_leg) FROM table_17282875_2 WHERE team__number2 = "Botafogo" |
Write a SQL query that answers the following question: Who played against team 1 Vitória? | The relevant table was constructed using the following SQL : CREATE TABLE table_17282875_2 (team__number2 VARCHAR, team__number1 VARCHAR) | SELECT team__number2 FROM table_17282875_2 WHERE team__number1 = "Vitória" |
Write a SQL query that answers the following question: Who played against team 1 Liverpool? | The relevant table was constructed using the following SQL : CREATE TABLE table_17282875_2 (team__number2 VARCHAR, team__number1 VARCHAR) | SELECT team__number2 FROM table_17282875_2 WHERE team__number1 = "Liverpool" |
Write a SQL query that answers the following question: What was the game's points against Team 2 Deportivo Anzoátegui? | The relevant table was constructed using the following SQL : CREATE TABLE table_17282875_2 (points VARCHAR, team__number2 VARCHAR) | SELECT points FROM table_17282875_2 WHERE team__number2 = "Deportivo Anzoátegui" |
Write a SQL query that answers the following question: How many different items appear in the high points column when the location attendance was US Airways Center 18,422? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288825_10 (high_points VARCHAR, location_attendance VARCHAR) | SELECT COUNT(high_points) FROM table_17288825_10 WHERE location_attendance = "US Airways Center 18,422" |
Write a SQL query that answers the following question: What was the high assists on April 7? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288825_10 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_17288825_10 WHERE date = "April 7" |
Write a SQL query that answers the following question: What is the score for the game played on January 25? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288825_7 (score VARCHAR, date VARCHAR) | SELECT score FROM table_17288825_7 WHERE date = "January 25" |
Write a SQL query that answers the following question: What is the record for the team on January 19? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288825_7 (record VARCHAR, date VARCHAR) | SELECT record FROM table_17288825_7 WHERE date = "January 19" |
Write a SQL query that answers the following question: How many times did Ron Artest (24) receive the record for high points? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288825_7 (record VARCHAR, high_points VARCHAR) | SELECT COUNT(record) FROM table_17288825_7 WHERE high_points = "Ron Artest (24)" |
Write a SQL query that answers the following question: At what location and what was the attendance when Rafer Alston (10) achieved high assists? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288825_7 (location_attendance VARCHAR, high_assists VARCHAR) | SELECT location_attendance FROM table_17288825_7 WHERE high_assists = "Rafer Alston (10)" |
Write a SQL query that answers the following question: At what game number was the attendance at Conseco Fieldhouse 14,486? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288825_7 (game INTEGER, location_attendance VARCHAR) | SELECT MAX(game) FROM table_17288825_7 WHERE location_attendance = "Conseco Fieldhouse 14,486" |
Write a SQL query that answers the following question: What is the number of the game that was played on January 19? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288845_7 (game INTEGER, date VARCHAR) | SELECT MAX(game) FROM table_17288845_7 WHERE date = "January 19" |
Write a SQL query that answers the following question: Name the record for verizon center 20,173 | The relevant table was constructed using the following SQL : CREATE TABLE table_17288845_8 (record VARCHAR, location_attendance VARCHAR) | SELECT record FROM table_17288845_8 WHERE location_attendance = "Verizon Center 20,173" |
Write a SQL query that answers the following question: Name the date for score l 89–91 (ot) | The relevant table was constructed using the following SQL : CREATE TABLE table_17288845_8 (date VARCHAR, score VARCHAR) | SELECT date FROM table_17288845_8 WHERE score = "L 89–91 (OT)" |
Write a SQL query that answers the following question: What was the team record when the team was Cleveland? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288861_5 (record VARCHAR, team VARCHAR) | SELECT record FROM table_17288861_5 WHERE team = "Cleveland" |
Write a SQL query that answers the following question: Name the high assists for l 93–103 (ot) | The relevant table was constructed using the following SQL : CREATE TABLE table_17288861_9 (high_assists VARCHAR, score VARCHAR) | SELECT high_assists FROM table_17288861_9 WHERE score = "L 93–103 (OT)" |
Write a SQL query that answers the following question: What was the date of game 21? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288869_6 (date VARCHAR, game VARCHAR) | SELECT date FROM table_17288869_6 WHERE game = 21 |
Write a SQL query that answers the following question: What were the results for round of 32 for Nicole Vaidišová? | The relevant table was constructed using the following SQL : CREATE TABLE table_17289604_38 (round_of_32 VARCHAR, athlete VARCHAR) | SELECT round_of_32 FROM table_17289604_38 WHERE athlete = "Nicole Vaidišová" |
Write a SQL query that answers the following question: How many number of athletes were in round of 64 was llagostera Vives ( esp ) l 6–2, 3–6, 5–7? | The relevant table was constructed using the following SQL : CREATE TABLE table_17289604_38 (athlete VARCHAR, round_of_64 VARCHAR) | SELECT COUNT(athlete) FROM table_17289604_38 WHERE round_of_64 = "Llagostera Vives ( ESP ) L 6–2, 3–6, 5–7" |
Write a SQL query that answers the following question: What was round of 16 when in round 32 it was koryttseva ( ukr ) w 2–6, 6–1, 7–5? | The relevant table was constructed using the following SQL : CREATE TABLE table_17289604_38 (round_of_16 VARCHAR, round_of_32 VARCHAR) | SELECT round_of_16 FROM table_17289604_38 WHERE round_of_32 = "Koryttseva ( UKR ) W 2–6, 6–1, 7–5" |
Write a SQL query that answers the following question: What was round of 64 of the singles event when the result of round 16 was did not advance and the athlete was Iveta Benešová? | The relevant table was constructed using the following SQL : CREATE TABLE table_17289604_38 (round_of_64 VARCHAR, athlete VARCHAR, event VARCHAR, round_of_16 VARCHAR) | SELECT round_of_64 FROM table_17289604_38 WHERE event = "Singles" AND round_of_16 = "Did not advance" AND athlete = "Iveta Benešová" |
Write a SQL query that answers the following question: What were the quarterfinals in the round of 32 was S williams / V williams ( usa ) l 6–4, 5–7, 1–6? | The relevant table was constructed using the following SQL : CREATE TABLE table_17289604_38 (quarterfinals VARCHAR, round_of_32 VARCHAR) | SELECT quarterfinals FROM table_17289604_38 WHERE round_of_32 = "S Williams / V Williams ( USA ) L 6–4, 5–7, 1–6" |
Write a SQL query that answers the following question: On what day did Dirk Nowitzki (14) have a high rebound? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288869_7 (date VARCHAR, high_rebounds VARCHAR) | SELECT date FROM table_17288869_7 WHERE high_rebounds = "Dirk Nowitzki (14)" |
Write a SQL query that answers the following question: High points earned by Josh Howard (19) resulted in how many high rebounds? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288869_7 (high_rebounds VARCHAR, high_points VARCHAR) | SELECT COUNT(high_rebounds) FROM table_17288869_7 WHERE high_points = "Josh Howard (19)" |
Write a SQL query that answers the following question: Who had the high assists while Erick Dampier (8) had the high rebounds? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288869_7 (high_assists VARCHAR, high_rebounds VARCHAR) | SELECT high_assists FROM table_17288869_7 WHERE high_rebounds = "Erick Dampier (8)" |
Write a SQL query that answers the following question: Who had the high points while Dirk Nowitzki (13) had the high rebounds? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288869_7 (high_points VARCHAR, high_rebounds VARCHAR) | SELECT high_points FROM table_17288869_7 WHERE high_rebounds = "Dirk Nowitzki (13)" |
Write a SQL query that answers the following question: What was the final record for the game in which Dirk Nowitzki (19) had the high points? | The relevant table was constructed using the following SQL : CREATE TABLE table_17288869_7 (record VARCHAR, high_points VARCHAR) | SELECT record FROM table_17288869_7 WHERE high_points = "Dirk Nowitzki (19)" |
Write a SQL query that answers the following question: Which championship had the final opponents of nathalie dechy andy ram? | The relevant table was constructed using the following SQL : CREATE TABLE table_1729366_2 (championship VARCHAR, opponents_in_the_final VARCHAR) | SELECT championship FROM table_1729366_2 WHERE opponents_in_the_final = "Nathalie Dechy Andy Ram" |
Write a SQL query that answers the following question: What is the upstream speed of the network that costs 39 tl? | The relevant table was constructed using the following SQL : CREATE TABLE table_17304621_14 (upstream VARCHAR, price_tl VARCHAR) | SELECT upstream FROM table_17304621_14 WHERE price_tl = "39 TL" |
Write a SQL query that answers the following question: How many upstream speeds are there for downstream of 20 mbit/s and bandwidth of 40 gb? | The relevant table was constructed using the following SQL : CREATE TABLE table_17304621_14 (upstream VARCHAR, downstream VARCHAR, bandwidth VARCHAR) | SELECT COUNT(upstream) FROM table_17304621_14 WHERE downstream = "20 Mbit/s" AND bandwidth = "40 GB" |
Write a SQL query that answers the following question: What is the upstream speed that you get for 89 tl? | The relevant table was constructed using the following SQL : CREATE TABLE table_17304621_14 (upstream VARCHAR, price_tl VARCHAR) | SELECT upstream FROM table_17304621_14 WHERE price_tl = "89 TL" |
Write a SQL query that answers the following question: What is the bandwidth for downstream of 20 mbit/s for 69 tl? | The relevant table was constructed using the following SQL : CREATE TABLE table_17304621_14 (bandwidth VARCHAR, downstream VARCHAR, price_tl VARCHAR) | SELECT bandwidth FROM table_17304621_14 WHERE downstream = "20 Mbit/s" AND price_tl = "69 TL" |
Write a SQL query that answers the following question: What was the year when West Manila has a tariff increase of 6.5? | The relevant table was constructed using the following SQL : CREATE TABLE table_17302440_1 (year VARCHAR, west_manila VARCHAR) | SELECT year FROM table_17302440_1 WHERE west_manila = "6.5" |
Write a SQL query that answers the following question: Of the times the Broncos played the Cincinnati Bengals, what was the highest attendance? | The relevant table was constructed using the following SQL : CREATE TABLE table_17294353_1 (attendance INTEGER, opponent VARCHAR) | SELECT MAX(attendance) FROM table_17294353_1 WHERE opponent = "Cincinnati Bengals" |
Write a SQL query that answers the following question: When did the Broncos play the Miami Dolphins? | The relevant table was constructed using the following SQL : CREATE TABLE table_17294353_1 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_17294353_1 WHERE opponent = "Miami Dolphins" |
Write a SQL query that answers the following question: In the game with an attendance of 18304, what was the final score? | The relevant table was constructed using the following SQL : CREATE TABLE table_17294353_1 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_17294353_1 WHERE attendance = 18304 |
Write a SQL query that answers the following question: How many pressure figures are given for the .380 acp cartridge? | The relevant table was constructed using the following SQL : CREATE TABLE table_173103_1 (max_pressure VARCHAR, cartridge VARCHAR) | SELECT COUNT(max_pressure) FROM table_173103_1 WHERE cartridge = ".380 ACP" |
Write a SQL query that answers the following question: What is the max pressure of the cartridge where the muzzle energy is 201ft•lbf (273 j)? | The relevant table was constructed using the following SQL : CREATE TABLE table_173103_1 (max_pressure VARCHAR, muzzle_energy VARCHAR) | SELECT max_pressure FROM table_173103_1 WHERE muzzle_energy = "201ft•lbf (273 J)" |
Write a SQL query that answers the following question: What is the max pressure of the .38 long colt cartridge? | The relevant table was constructed using the following SQL : CREATE TABLE table_173103_1 (max_pressure VARCHAR, cartridge VARCHAR) | SELECT max_pressure FROM table_173103_1 WHERE cartridge = ".38 Long Colt" |
Write a SQL query that answers the following question: What is the bullet weight when the max pressure is 12,000 cup? | The relevant table was constructed using the following SQL : CREATE TABLE table_173103_1 (bullet_weight VARCHAR, max_pressure VARCHAR) | SELECT bullet_weight FROM table_173103_1 WHERE max_pressure = "12,000 CUP" |
Write a SQL query that answers the following question: What are the scores made by Charlotte team | The relevant table was constructed using the following SQL : CREATE TABLE table_17311759_4 (score VARCHAR, team VARCHAR) | SELECT score FROM table_17311759_4 WHERE team = "Charlotte" |
Write a SQL query that answers the following question: Who made highest assists when high rebounds was Al Horford (17) | The relevant table was constructed using the following SQL : CREATE TABLE table_17311759_4 (high_assists VARCHAR, high_rebounds VARCHAR) | SELECT high_assists FROM table_17311759_4 WHERE high_rebounds = "Al Horford (17)" |
Write a SQL query that answers the following question: Give the score when high rebounds was zaza pachulia (8) | The relevant table was constructed using the following SQL : CREATE TABLE table_17311759_4 (score VARCHAR, high_rebounds VARCHAR) | SELECT score FROM table_17311759_4 WHERE high_rebounds = "Zaza Pachulia (8)" |
Write a SQL query that answers the following question: Name the gs for points being 12.1 | The relevant table was constructed using the following SQL : CREATE TABLE table_17309500_1 (gs VARCHAR, points VARCHAR) | SELECT gs FROM table_17309500_1 WHERE points = "12.1" |
Write a SQL query that answers the following question: Name the assists for 157 games | The relevant table was constructed using the following SQL : CREATE TABLE table_17309500_1 (assists VARCHAR, games VARCHAR) | SELECT assists FROM table_17309500_1 WHERE games = 157 |
Write a SQL query that answers the following question: Name the steals for season 2007/2008 | The relevant table was constructed using the following SQL : CREATE TABLE table_17309500_1 (steals VARCHAR, season VARCHAR) | SELECT steals FROM table_17309500_1 WHERE season = "2007/2008" |
Write a SQL query that answers the following question: Name the total number of assists for 77 blocks | The relevant table was constructed using the following SQL : CREATE TABLE table_17309500_1 (assists VARCHAR, blocks VARCHAR) | SELECT COUNT(assists) FROM table_17309500_1 WHERE blocks = "77" |
Write a SQL query that answers the following question: When mike bibby (8) had the highest amount of assists what is the record? | The relevant table was constructed using the following SQL : CREATE TABLE table_17311759_9 (record VARCHAR, high_assists VARCHAR) | SELECT record FROM table_17311759_9 WHERE high_assists = "Mike Bibby (8)" |
Write a SQL query that answers the following question: When mike bibby (9) has the highest amount of assists what is the location and attendance? | The relevant table was constructed using the following SQL : CREATE TABLE table_17311759_9 (location_attendance VARCHAR, high_assists VARCHAR) | SELECT location_attendance FROM table_17311759_9 WHERE high_assists = "Mike Bibby (9)" |
Write a SQL query that answers the following question: Who was the team played on January 23? | The relevant table was constructed using the following SQL : CREATE TABLE table_17311759_6 (team VARCHAR, date VARCHAR) | SELECT team FROM table_17311759_6 WHERE date = "January 23" |
Write a SQL query that answers the following question: Where was the game held and what was the attendance when they played Orlando? | The relevant table was constructed using the following SQL : CREATE TABLE table_17311759_6 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_17311759_6 WHERE team = "Orlando" |
Write a SQL query that answers the following question: In what game did Miami play Charlotte? | The relevant table was constructed using the following SQL : CREATE TABLE table_17311783_8 (game INTEGER, team VARCHAR) | SELECT MAX(game) FROM table_17311783_8 WHERE team = "Charlotte" |
Write a SQL query that answers the following question: Who had the high points on February 6? | The relevant table was constructed using the following SQL : CREATE TABLE table_17311797_8 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_17311797_8 WHERE date = "February 6" |
Write a SQL query that answers the following question: What is the highest number of laps led with 16 points? | The relevant table was constructed using the following SQL : CREATE TABLE table_17319931_1 (laps INTEGER, points VARCHAR) | SELECT MAX(laps) AS Led FROM table_17319931_1 WHERE points = "16" |
Write a SQL query that answers the following question: How many drivers were there for Samax Motorsport? | The relevant table was constructed using the following SQL : CREATE TABLE table_17319931_1 (driver VARCHAR, team VARCHAR) | SELECT COUNT(driver) FROM table_17319931_1 WHERE team = "SAMAX Motorsport" |
Write a SQL query that answers the following question: What is the team whose driver Jeff Simmons? | The relevant table was constructed using the following SQL : CREATE TABLE table_17319931_1 (team VARCHAR, driver VARCHAR) | SELECT team FROM table_17319931_1 WHERE driver = "Jeff Simmons" |
Write a SQL query that answers the following question: How many drivers where there when the time/retired +3 laps and points were 24? | The relevant table was constructed using the following SQL : CREATE TABLE table_17319931_1 (driver VARCHAR, time_retired VARCHAR, points VARCHAR) | SELECT COUNT(driver) FROM table_17319931_1 WHERE time_retired = "+3 laps" AND points = "24" |
Write a SQL query that answers the following question: What is the highest number of laps for Darren Manning? | The relevant table was constructed using the following SQL : CREATE TABLE table_17319931_1 (laps INTEGER, driver VARCHAR) | SELECT MAX(laps) FROM table_17319931_1 WHERE driver = "Darren Manning" |
Write a SQL query that answers the following question: How many car numbers were recorded when the time/retired is +4.0019? | The relevant table was constructed using the following SQL : CREATE TABLE table_17319931_1 (car_no VARCHAR, time_retired VARCHAR) | SELECT COUNT(car_no) FROM table_17319931_1 WHERE time_retired = "+4.0019" |
Write a SQL query that answers the following question: What game number was played on January 28? | The relevant table was constructed using the following SQL : CREATE TABLE table_17311812_7 (game VARCHAR, date VARCHAR) | SELECT game FROM table_17311812_7 WHERE date = "January 28" |
Write a SQL query that answers the following question: What is the high amount of points on February 11? | The relevant table was constructed using the following SQL : CREATE TABLE table_17311812_8 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_17311812_8 WHERE date = "February 11" |
Write a SQL query that answers the following question: Who has the most assists on Denver? | The relevant table was constructed using the following SQL : CREATE TABLE table_17311812_8 (high_assists VARCHAR, team VARCHAR) | SELECT high_assists FROM table_17311812_8 WHERE team = "Denver" |
Write a SQL query that answers the following question: Name the location attendance for april 13 | The relevant table was constructed using the following SQL : CREATE TABLE table_17322817_10 (location_attendance VARCHAR, date VARCHAR) | SELECT location_attendance FROM table_17322817_10 WHERE date = "April 13" |
Write a SQL query that answers the following question: Name the location attendance for april 5 | The relevant table was constructed using the following SQL : CREATE TABLE table_17322817_10 (location_attendance VARCHAR, date VARCHAR) | SELECT location_attendance FROM table_17322817_10 WHERE date = "April 5" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.