training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_99 (heat INTEGER, lane VARCHAR, time VARCHAR)
###human: What's the heat in the lane less than 3 with a time of 14:48.39?
###assistant: SELECT AVG(heat) FROM table_name_99 WHERE lane < 3 AND time = "14:48.39" |
###context:CREATE TABLE table_name_61 (heat INTEGER, lane VARCHAR, nationality VARCHAR, name VARCHAR)
###human: What's China's heat for Zhang Lin in a lane after 6?
###assistant: SELECT SUM(heat) FROM table_name_61 WHERE nationality = "china" AND name = "zhang lin" AND lane > 6 |
###context:CREATE TABLE table_name_72 (bronze VARCHAR, year VARCHAR)
###human: Who won bronze in 1994?
###assistant: SELECT bronze FROM table_name_72 WHERE year = 1994 |
###context:CREATE TABLE table_name_46 (position VARCHAR, pick VARCHAR, college VARCHAR)
###human: Which position was picked before 63, for Oklahoma College?
###assistant: SELECT position FROM table_name_46 WHERE pick < 63 AND college = "oklahoma" |
###context:CREATE TABLE table_name_68 (college VARCHAR, position VARCHAR)
###human: Which College has a Position of Offensive Tackle?
###assistant: SELECT college FROM table_name_68 WHERE position = "offensive tackle" |
###context:CREATE TABLE table_name_21 (player VARCHAR, balls VARCHAR)
###human: Which player had 50 balls?
###assistant: SELECT player FROM table_name_21 WHERE balls = 50 |
###context:CREATE TABLE table_name_37 (release_date VARCHAR, title VARCHAR, series VARCHAR, director VARCHAR, production_number VARCHAR)
###human: What date was Apes of Wrath written by Friz Freleng, production number higher than 1496 from series mm released?
###assistant: SELECT release_date FROM table_name_37 WHERE director = "friz freleng" AND production_number > 1496 AND series = "mm" AND title = "apes of wrath" |
###context:CREATE TABLE table_name_18 (production_number INTEGER, title VARCHAR, director VARCHAR, series VARCHAR)
###human: What is the production number directed by Robert McKimson in series mm titled People Are Bunny?
###assistant: SELECT SUM(production_number) FROM table_name_18 WHERE director = "robert mckimson" AND series = "mm" AND title = "people are bunny" |
###context:CREATE TABLE table_name_63 (series VARCHAR, director VARCHAR, release_date VARCHAR)
###human: What was the series of the episode directed by Abe Levitow released on 1959-06-27?
###assistant: SELECT series FROM table_name_63 WHERE director = "abe levitow" AND release_date = "1959-06-27" |
###context:CREATE TABLE table_name_93 (release_date VARCHAR, title VARCHAR, production_number VARCHAR, director VARCHAR)
###human: What is the release date of the episode named Mouse-Placed Kitten with an episode number less than 1495 directed by Robert McKimson?
###assistant: SELECT release_date FROM table_name_93 WHERE production_number < 1495 AND director = "robert mckimson" AND title = "mouse-placed kitten" |
###context:CREATE TABLE table_name_50 (player VARCHAR, round INTEGER)
###human: Which Player has a Round larger than 8?
###assistant: SELECT player FROM table_name_50 WHERE round > 8 |
###context:CREATE TABLE table_name_25 (nationality VARCHAR, player VARCHAR)
###human: What is tom cassidy's nationality?
###assistant: SELECT nationality FROM table_name_25 WHERE player = "tom cassidy" |
###context:CREATE TABLE table_name_7 (college_junior_club_team VARCHAR, pick VARCHAR, round VARCHAR)
###human: Which College/Junior/Club Team has a Pick larger than 70, and a Round smaller than 7?
###assistant: SELECT college_junior_club_team FROM table_name_7 WHERE pick > 70 AND round < 7 |
###context:CREATE TABLE table_name_87 (player VARCHAR, round INTEGER)
###human: Which Player has a Round larger than 8?
###assistant: SELECT player FROM table_name_87 WHERE round > 8 |
###context:CREATE TABLE table_name_74 (county VARCHAR, location VARCHAR)
###human: Which County has a Location of edinburgh?
###assistant: SELECT county FROM table_name_74 WHERE location = "edinburgh" |
###context:CREATE TABLE table_name_32 (enrollment INTEGER, location VARCHAR)
###human: COunt the average Enrollment in hope?
###assistant: SELECT AVG(enrollment) FROM table_name_32 WHERE location = "hope" |
###context:CREATE TABLE table_name_10 (mascot VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR)
###human: Which Mascot has IHSAA Class of aa, and a Enrollment larger than 369?
###assistant: SELECT mascot FROM table_name_10 WHERE ihsaa_class = "aa" AND enrollment > 369 |
###context:CREATE TABLE table_name_1 (league_goals INTEGER, league_apps VARCHAR, fa_cup_goals VARCHAR)
###human: what is the lowest league goals when the league apps is 1 and the fa cup goals is more than 0?
###assistant: SELECT MIN(league_goals) FROM table_name_1 WHERE league_apps = "1" AND fa_cup_goals > 0 |
###context:CREATE TABLE table_name_75 (fa_cup_goals INTEGER, total_goals VARCHAR, total_apps VARCHAR)
###human: what is the highest fa cup goals when the total goals is more than 3 and total apps is 31 (1)?
###assistant: SELECT MAX(fa_cup_goals) FROM table_name_75 WHERE total_goals > 3 AND total_apps = "31 (1)" |
###context:CREATE TABLE table_name_50 (league_goals VARCHAR, league_apps VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)
###human: what is the league goals when the fa cup goals is higher than 0, the fa cup apps is 2 and the league apps is 45?
###assistant: SELECT league_goals FROM table_name_50 WHERE fa_cup_goals > 0 AND fa_cup_apps = "2" AND league_apps = "45" |
###context:CREATE TABLE table_name_40 (total_goals VARCHAR, fa_cup_goals VARCHAR, total_apps VARCHAR, name VARCHAR)
###human: how many times is the total apps 1 and the fa cup goals less than 0 for bob mountain?
###assistant: SELECT COUNT(total_goals) FROM table_name_40 WHERE total_apps = "1" AND name = "bob mountain" AND fa_cup_goals < 0 |
###context:CREATE TABLE table_name_42 (attendance INTEGER, venue VARCHAR, opponent VARCHAR)
###human: What is the highest attendance for the match against west ham united at the venue of a?
###assistant: SELECT MAX(attendance) FROM table_name_42 WHERE venue = "a" AND opponent = "west ham united" |
###context:CREATE TABLE table_name_84 (country VARCHAR, score VARCHAR)
###human: Which Country has a Score of 67?
###assistant: SELECT country FROM table_name_84 WHERE score = 67 |
###context:CREATE TABLE table_name_64 (to_par VARCHAR, player VARCHAR)
###human: Which To par has a Player of momoko ueda?
###assistant: SELECT to_par FROM table_name_64 WHERE player = "momoko ueda" |
###context:CREATE TABLE table_name_87 (to_par VARCHAR, player VARCHAR)
###human: Which To par has a Player of johanna head?
###assistant: SELECT to_par FROM table_name_87 WHERE player = "johanna head" |
###context:CREATE TABLE table_name_48 (notes VARCHAR, country VARCHAR)
###human: What is the notes for the team from Denmark?
###assistant: SELECT notes FROM table_name_48 WHERE country = "denmark" |
###context:CREATE TABLE table_name_94 (athlete VARCHAR, notes VARCHAR, rank VARCHAR)
###human: Which athlete had a rank of 6 and notes of sc/d?
###assistant: SELECT athlete FROM table_name_94 WHERE notes = "sc/d" AND rank = 6 |
###context:CREATE TABLE table_name_56 (country VARCHAR, notes VARCHAR, athlete VARCHAR)
###human: Which country is the athlete latt shwe zin with notes of sc/d from?
###assistant: SELECT country FROM table_name_56 WHERE notes = "sc/d" AND athlete = "latt shwe zin" |
###context:CREATE TABLE table_name_36 (hr_no VARCHAR, lms_no VARCHAR)
###human: What's the HR number when the LMS number is 14758?
###assistant: SELECT hr_no FROM table_name_36 WHERE lms_no = 14758 |
###context:CREATE TABLE table_name_23 (cr_no INTEGER, works VARCHAR, lms_no VARCHAR)
###human: What's the CR number that has an LMS number less than 14761 and works of Hawthorn Leslie 3100?
###assistant: SELECT AVG(cr_no) FROM table_name_23 WHERE works = "hawthorn leslie 3100" AND lms_no < 14761 |
###context:CREATE TABLE table_name_75 (hr_no VARCHAR, built VARCHAR, lms_no VARCHAR)
###human: What's the HR Number when the LMS number is 14757 and has a built of 9/1915?
###assistant: SELECT hr_no FROM table_name_75 WHERE built = "9/1915" AND lms_no = 14757 |
###context:CREATE TABLE table_name_57 (built VARCHAR, cr_no VARCHAR, lms_no VARCHAR)
###human: What's the built date when the CR number is more than 940 and the LMS number is 14760?
###assistant: SELECT built FROM table_name_57 WHERE cr_no > 940 AND lms_no = 14760 |
###context:CREATE TABLE table_name_44 (home VARCHAR, visitor VARCHAR, date VARCHAR)
###human: What is the Home team of the event on Thursday, December 11 with Visitor Modo Hockey?
###assistant: SELECT home FROM table_name_44 WHERE visitor = "modo hockey" AND date = "thursday, december 11" |
###context:CREATE TABLE table_name_36 (chinese__traditional_ VARCHAR, english_title VARCHAR)
###human: What is the traditional Chinese name for the record titled Sunrise?
###assistant: SELECT chinese__traditional_ FROM table_name_36 WHERE english_title = "sunrise" |
###context:CREATE TABLE table_name_66 (chinese__traditional_ VARCHAR, chinese__simplified_ VARCHAR)
###human: What would be the traditional Chinese name tat is simplified as 崇拜?
###assistant: SELECT chinese__traditional_ FROM table_name_66 WHERE chinese__simplified_ = "崇拜" |
###context:CREATE TABLE table_name_54 (chinese__traditional_ VARCHAR, label VARCHAR, english_title VARCHAR)
###human: What traditional Chinese name would the Rock Records release Grown up Overnight be given?
###assistant: SELECT chinese__traditional_ FROM table_name_54 WHERE label = "rock records" AND english_title = "grown up overnight" |
###context:CREATE TABLE table_name_84 (chinese__traditional_ VARCHAR, english_title VARCHAR)
###human: What is the traditional Chinese name for the record Beautiful?
###assistant: SELECT chinese__traditional_ FROM table_name_84 WHERE english_title = "beautiful" |
###context:CREATE TABLE table_name_66 (album_number VARCHAR, chinese__simplified_ VARCHAR)
###human: What is the album number for the record 情歌没有告诉你, simplified from the traditional Chinese name?
###assistant: SELECT album_number FROM table_name_66 WHERE chinese__simplified_ = "情歌没有告诉你" |
###context:CREATE TABLE table_name_21 (chinese__simplified_ VARCHAR, album_number VARCHAR)
###human: What is the simplified Chinese name for the 9th album?
###assistant: SELECT chinese__simplified_ FROM table_name_21 WHERE album_number = "9th" |
###context:CREATE TABLE table_name_18 (eliminated VARCHAR, tag_team VARCHAR)
###human: Which Eliminated has a Tag Team of jindrak and cade?
###assistant: SELECT eliminated AS by FROM table_name_18 WHERE tag_team = "jindrak and cade" |
###context:CREATE TABLE table_name_42 (eliminated VARCHAR, entered INTEGER)
###human: Which Eliminated has an Entered smaller than 2?
###assistant: SELECT eliminated AS by FROM table_name_42 WHERE entered < 2 |
###context:CREATE TABLE table_name_94 (tag_team VARCHAR, entered VARCHAR)
###human: Name the Tag Team with Entered of 6?
###assistant: SELECT tag_team FROM table_name_94 WHERE entered = 6 |
###context:CREATE TABLE table_name_42 (tag_team VARCHAR, eliminated VARCHAR)
###human: Name Tag Team with a Eliminated of 5?
###assistant: SELECT tag_team FROM table_name_42 WHERE eliminated = "5" |
###context:CREATE TABLE table_name_10 (tag_team VARCHAR, time VARCHAR)
###human: Name the Tag Team with a Time of 03:34?
###assistant: SELECT tag_team FROM table_name_10 WHERE time = "03:34" |
###context:CREATE TABLE table_name_17 (episodes INTEGER, tv_station VARCHAR, japanese_title VARCHAR)
###human: Which Episodes have a TV Station of ntv, and a Japanese Title of あいのうた?
###assistant: SELECT AVG(episodes) FROM table_name_17 WHERE tv_station = "ntv" AND japanese_title = "あいのうた" |
###context:CREATE TABLE table_name_54 (tv_station VARCHAR, average_ratings VARCHAR)
###human: Which TV Station has Average Ratings of 16.89%?
###assistant: SELECT tv_station FROM table_name_54 WHERE average_ratings = "16.89%" |
###context:CREATE TABLE table_name_79 (episodes INTEGER, tv_station VARCHAR, japanese_title VARCHAR)
###human: Which Episodes have a TV Station of tbs, and a Japanese Title of 今夜ひとりのベッドで?
###assistant: SELECT MAX(episodes) FROM table_name_79 WHERE tv_station = "tbs" AND japanese_title = "今夜ひとりのベッドで" |
###context:CREATE TABLE table_name_58 (japanese_title VARCHAR, tv_station VARCHAR, romaji_title VARCHAR)
###human: Which Japanese Title has a TV Station of tbs, and a Romaji Title of hana yori dango?
###assistant: SELECT japanese_title FROM table_name_58 WHERE tv_station = "tbs" AND romaji_title = "hana yori dango" |
###context:CREATE TABLE table_name_68 (away_team VARCHAR, tie_no VARCHAR)
###human: Who was the away team with a tie number of 4?
###assistant: SELECT away_team FROM table_name_68 WHERE tie_no = "4" |
###context:CREATE TABLE table_name_46 (date VARCHAR, tie_no VARCHAR)
###human: What date was the tie number of 32?
###assistant: SELECT date FROM table_name_46 WHERE tie_no = "32" |
###context:CREATE TABLE table_name_59 (score VARCHAR, tie_no VARCHAR, home_team VARCHAR)
###human: What was the score when the tie number was a replay and the home team was mansfield town?
###assistant: SELECT score FROM table_name_59 WHERE tie_no = "replay" AND home_team = "mansfield town" |
###context:CREATE TABLE table_name_42 (to_par VARCHAR, score VARCHAR)
###human: what is the to par when the score is 67-68-76=211?
###assistant: SELECT to_par FROM table_name_42 WHERE score = 67 - 68 - 76 = 211 |
###context:CREATE TABLE table_name_51 (score VARCHAR, player VARCHAR)
###human: what is the score for tom watson?
###assistant: SELECT score FROM table_name_51 WHERE player = "tom watson" |
###context:CREATE TABLE table_name_37 (player VARCHAR, place VARCHAR, score VARCHAR)
###human: who is the player when the place is t10 and the score is 67-72-72=211?
###assistant: SELECT player FROM table_name_37 WHERE place = "t10" AND score = 67 - 72 - 72 = 211 |
###context:CREATE TABLE table_name_31 (place VARCHAR, player VARCHAR)
###human: what is the place for bryce molder?
###assistant: SELECT place FROM table_name_31 WHERE player = "bryce molder" |
###context:CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR)
###human: what is the to par for mathew goggin?
###assistant: SELECT to_par FROM table_name_72 WHERE player = "mathew goggin" |
###context:CREATE TABLE table_name_86 (quantity INTEGER, axle_arrangement VARCHAR)
###human: Which Quantity has an Axle arrangement of 2′c h2?
###assistant: SELECT AVG(quantity) FROM table_name_86 WHERE axle_arrangement = "2′c h2" |
###context:CREATE TABLE table_name_92 (year_s__of_manufacture VARCHAR, axle_arrangement VARCHAR)
###human: Which Year(s) of manufacture has an Axle arrangement of 2′b n2?
###assistant: SELECT year_s__of_manufacture FROM table_name_92 WHERE axle_arrangement = "2′b n2" |
###context:CREATE TABLE table_name_81 (rank VARCHAR, time VARCHAR)
###human: Which Rank has a Time of 5:56.73?
###assistant: SELECT rank FROM table_name_81 WHERE time = "5:56.73" |
###context:CREATE TABLE table_name_70 (rank VARCHAR, notes VARCHAR, time VARCHAR)
###human: Which Rank has Notes of fb, and a Time of 5:57.31?
###assistant: SELECT rank FROM table_name_70 WHERE notes = "fb" AND time = "5:57.31" |
###context:CREATE TABLE table_name_96 (country_or_territory VARCHAR)
###human: Which 2007 has a Country or territory of china, and a 2002 smaller than 670,099?
###assistant: SELECT MIN(2007) FROM table_name_96 WHERE country_or_territory = "china" AND 2002 < 670 OFFSET 099 |
###context:CREATE TABLE table_name_29 (giro_wins INTEGER, young_rider VARCHAR, jerseys VARCHAR, country VARCHAR)
###human: what is the giro wins when jerseys is 2, country is portugal and young rider is more than 0?
###assistant: SELECT SUM(giro_wins) FROM table_name_29 WHERE jerseys = 2 AND country = "portugal" AND young_rider > 0 |
###context:CREATE TABLE table_name_72 (jerseys INTEGER, young_rider VARCHAR, giro_wins VARCHAR, points VARCHAR, different_holders VARCHAR)
###human: what is the highest jersey when points is 0, different holders is less than 3, giro wins is less than 1 and young rider is more than 1?
###assistant: SELECT MAX(jerseys) FROM table_name_72 WHERE points = 0 AND different_holders < 3 AND giro_wins < 1 AND young_rider > 1 |
###context:CREATE TABLE table_name_78 (jerseys VARCHAR, points VARCHAR, young_rider VARCHAR, country VARCHAR)
###human: how many times is young rider more than 0, country is france and points less than 1?
###assistant: SELECT COUNT(jerseys) FROM table_name_78 WHERE young_rider > 0 AND country = "france" AND points < 1 |
###context:CREATE TABLE table_name_93 (different_holders INTEGER, country VARCHAR, giro_wins VARCHAR)
###human: what is the least different holders when the country is ireland and giro wins is less than 1?
###assistant: SELECT MIN(different_holders) FROM table_name_93 WHERE country = "ireland" AND giro_wins < 1 |
###context:CREATE TABLE table_name_1 (speed VARCHAR, rider VARCHAR)
###human: What is Brian Mateer's Speed?
###assistant: SELECT speed FROM table_name_1 WHERE rider = "brian mateer" |
###context:CREATE TABLE table_name_36 (rank INTEGER, team VARCHAR, speed VARCHAR)
###human: What is the Rank of the Rider with a Speed of 111.072mph in Team 250CC Honda?
###assistant: SELECT AVG(rank) FROM table_name_36 WHERE team = "250cc honda" AND speed = "111.072mph" |
###context:CREATE TABLE table_name_6 (nationality VARCHAR, time VARCHAR)
###human: What is the Nationality of the swimmer with a Time of 1:08.80?
###assistant: SELECT nationality FROM table_name_6 WHERE time = "1:08.80" |
###context:CREATE TABLE table_name_20 (nationality VARCHAR, name VARCHAR)
###human: What is Anna Khlistunova's Nationality?
###assistant: SELECT nationality FROM table_name_20 WHERE name = "anna khlistunova" |
###context:CREATE TABLE table_name_42 (penalty VARCHAR, team VARCHAR, player VARCHAR)
###human: What is the penalty for the DET team player Andreas Lilja?
###assistant: SELECT penalty FROM table_name_42 WHERE team = "det" AND player = "andreas lilja" |
###context:CREATE TABLE table_name_19 (penalty VARCHAR, player VARCHAR)
###human: What is the penalty for Jonathan Toews?
###assistant: SELECT penalty FROM table_name_19 WHERE player = "jonathan toews" |
###context:CREATE TABLE table_name_49 (period VARCHAR, player VARCHAR)
###human: What is the period for Ben Eager?
###assistant: SELECT period FROM table_name_49 WHERE player = "ben eager" |
###context:CREATE TABLE table_name_52 (period VARCHAR, team VARCHAR, time VARCHAR)
###human: What is the period for the DET Team with a time of 11:27?
###assistant: SELECT period FROM table_name_52 WHERE team = "det" AND time = "11:27" |
###context:CREATE TABLE table_name_35 (player VARCHAR, penalty VARCHAR, team VARCHAR)
###human: What player has a penalty of holding on the DET team?
###assistant: SELECT player FROM table_name_35 WHERE penalty = "holding" AND team = "det" |
###context:CREATE TABLE table_name_36 (time VARCHAR, period VARCHAR, player VARCHAR)
###human: What time does Dustin Byfuglien have in 1st period?
###assistant: SELECT time FROM table_name_36 WHERE period = "1st" AND player = "dustin byfuglien" |
###context:CREATE TABLE table_name_85 (competition VARCHAR, assist_pass VARCHAR, result VARCHAR, location VARCHAR)
###human: Which competition has a result of 2-0 in Ferreiras with an assist/pass by Casey Nogueira?
###assistant: SELECT competition FROM table_name_85 WHERE result = "2-0" AND location = "ferreiras" AND assist_pass = "casey nogueira" |
###context:CREATE TABLE table_name_5 (score VARCHAR, lineup VARCHAR)
###human: What is the score with the Lineup match reports?
###assistant: SELECT score FROM table_name_5 WHERE lineup = "match reports" |
###context:CREATE TABLE table_name_92 (date VARCHAR, assist_pass VARCHAR)
###human: On what date is there an assist/pass by Shannon Boxx?
###assistant: SELECT date FROM table_name_92 WHERE assist_pass = "shannon boxx" |
###context:CREATE TABLE table_name_80 (assist_pass VARCHAR, location VARCHAR)
###human: Which assist/pass is in Ferreiras?
###assistant: SELECT assist_pass FROM table_name_80 WHERE location = "ferreiras" |
###context:CREATE TABLE table_name_34 (transfer_fee VARCHAR, type VARCHAR, name VARCHAR)
###human: Willy Sagnol with a type as career end had what has the transfer fee?
###assistant: SELECT transfer_fee FROM table_name_34 WHERE type = "career end" AND name = "willy sagnol" |
###context:CREATE TABLE table_name_15 (nat VARCHAR, name VARCHAR, transfer_window VARCHAR, type VARCHAR)
###human: Marcell Jansen with a transfer window of summer, and of transfer as type is from what nation?
###assistant: SELECT nat FROM table_name_15 WHERE transfer_window = "summer" AND type = "transfer" AND name = "marcell jansen" |
###context:CREATE TABLE table_name_2 (type VARCHAR, nat VARCHAR, name VARCHAR)
###human: Marcell Jansen of the nation GER has what for the type?
###assistant: SELECT type FROM table_name_2 WHERE nat = "ger" AND name = "marcell jansen" |
###context:CREATE TABLE table_name_72 (name VARCHAR, transfer_window VARCHAR, transfer_fee VARCHAR)
###human: What player had a transfer window of winter, and free as the transfer fee?
###assistant: SELECT name FROM table_name_72 WHERE transfer_window = "winter" AND transfer_fee = "free" |
###context:CREATE TABLE table_name_85 (name VARCHAR, transfer_fee VARCHAR, transfer_window VARCHAR, nat VARCHAR)
###human: Which player from GER has a transfer window of summer, and a transfer fee of n/a?
###assistant: SELECT name FROM table_name_85 WHERE transfer_window = "summer" AND nat = "ger" AND transfer_fee = "n/a" |
###context:CREATE TABLE table_name_3 (year_left INTEGER, conference_joined VARCHAR, year_joined VARCHAR)
###human: What's the highest Year Left that's got a Conference Joined of Sagamore with a Year Joined larger than 1942?
###assistant: SELECT MAX(year_left) FROM table_name_3 WHERE conference_joined = "sagamore" AND year_joined > 1942 |
###context:CREATE TABLE table_name_81 (year_left INTEGER, school VARCHAR)
###human: What's the highest Year Left for the School of Danville?
###assistant: SELECT MAX(year_left) FROM table_name_81 WHERE school = "danville" |
###context:CREATE TABLE table_name_70 (time VARCHAR, lane VARCHAR)
###human: What was lane 4's time?
###assistant: SELECT time FROM table_name_70 WHERE lane = 4 |
###context:CREATE TABLE table_name_56 (part_number_s_ VARCHAR, l2_cache VARCHAR, frequency VARCHAR)
###human: What's the part number of the processor that has an 1.8 ghz frequency and 2 × 256 kb L@ Cache?
###assistant: SELECT part_number_s_ FROM table_name_56 WHERE l2_cache = "2 × 256 kb" AND frequency = "1.8 ghz" |
###context:CREATE TABLE table_name_57 (sspec_number VARCHAR, i_o_bus VARCHAR)
###human: What's the sSpec number of the processor having an ultra-low power I/O?
###assistant: SELECT sspec_number FROM table_name_57 WHERE i_o_bus = "ultra-low power" |
###context:CREATE TABLE table_name_81 (cores VARCHAR, socket VARCHAR, release_date VARCHAR)
###human: What the cores with a release date of February 2011 and a BGA-1023 socket?
###assistant: SELECT cores FROM table_name_81 WHERE socket = "bga-1023" AND release_date = "february 2011" |
###context:CREATE TABLE table_name_63 (l3_cache VARCHAR, i_o_bus VARCHAR)
###human: What's the L3 Cache that has a standard power I/O?
###assistant: SELECT l3_cache FROM table_name_63 WHERE i_o_bus = "standard power" |
###context:CREATE TABLE table_name_77 (release_date VARCHAR, frequency VARCHAR)
###human: What's the release date of the processor with 2.8 ghz of frequency?
###assistant: SELECT release_date FROM table_name_77 WHERE frequency = "2.8 ghz" |
###context:CREATE TABLE table_name_24 (round VARCHAR, venue VARCHAR, away VARCHAR)
###human: What round was the match at Westpac Stadium that had the Newcastle Jets as the away team?
###assistant: SELECT round FROM table_name_24 WHERE venue = "westpac stadium" AND away = "newcastle jets" |
###context:CREATE TABLE table_name_86 (weekday VARCHAR, away VARCHAR)
###human: On what weekday was the match that had Perth Glory as the away team?
###assistant: SELECT weekday FROM table_name_86 WHERE away = "perth glory" |
###context:CREATE TABLE table_name_70 (british_record VARCHAR, guernsey_record VARCHAR)
###human: What is the British record for the fish with a Guernsey record of 32-8-0?
###assistant: SELECT british_record FROM table_name_70 WHERE guernsey_record = "32-8-0" |
###context:CREATE TABLE table_name_75 (year VARCHAR, guernsey_record VARCHAR)
###human: What year was the Guernsey record of 2-3-12 set?
###assistant: SELECT year FROM table_name_75 WHERE guernsey_record = "2-3-12" |
###context:CREATE TABLE table_name_80 (guernsey_record VARCHAR, location VARCHAR)
###human: What was the guernsey record set with a fish caught at Bordeaux Harbour?
###assistant: SELECT guernsey_record FROM table_name_80 WHERE location = "bordeaux harbour" |
###context:CREATE TABLE table_name_21 (release_date VARCHAR, production_num VARCHAR, characters VARCHAR)
###human: When was the film released that a less than 5038 production number and was of the character Bosko?
###assistant: SELECT release_date FROM table_name_21 WHERE production_num < 5038 AND characters = "bosko" |
###context:CREATE TABLE table_name_4 (title VARCHAR, production_num VARCHAR)
###human: With 4645 as the production number what was the title?
###assistant: SELECT title FROM table_name_4 WHERE production_num = 4645 |
###context:CREATE TABLE table_name_56 (production_num INTEGER, title VARCHAR)
###human: The film titled Bosko's fox hunt had what as the smallest production number?
###assistant: SELECT MIN(production_num) FROM table_name_56 WHERE title = "bosko's fox hunt" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.