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