question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
Name the year for jerry sichting | CREATE TABLE table_name_26 (year VARCHAR, color_commentator_s_ VARCHAR) | SELECT year FROM table_name_26 WHERE color_commentator_s_ = "jerry sichting" |
How many goals have 28 as the points, and matches greater than 11? | CREATE TABLE table_name_56 (goals VARCHAR, points VARCHAR, matches VARCHAR) | SELECT COUNT(goals) FROM table_name_56 WHERE points = 28 AND matches > 11 |
What position is played by the player from the Chicago Cubs? | CREATE TABLE table_name_8 (position VARCHAR, team VARCHAR) | SELECT position FROM table_name_8 WHERE team = "chicago cubs" |
What was the record on December 27? | CREATE TABLE table_27712702_8 (record VARCHAR, date VARCHAR) | SELECT record FROM table_27712702_8 WHERE date = "December 27" |
What as the production code for the episode directed by Robert Duncan McNeill? | CREATE TABLE table_24319661_5 (production_code VARCHAR, directed_by VARCHAR) | SELECT production_code FROM table_24319661_5 WHERE directed_by = "Robert Duncan McNeill" |
What is the elevation of the city with a number of 91,385 Housing dwellings in 2007? | CREATE TABLE table_name_71 (elevation_msl VARCHAR, housing__2007_ VARCHAR) | SELECT elevation_msl FROM table_name_71 WHERE housing__2007_ = "91,385" |
What is the entry for Part 1 for class 7d? | CREATE TABLE table_name_81 (part_1 VARCHAR, class VARCHAR) | SELECT part_1 FROM table_name_81 WHERE class = "7d" |
Where was the December 12, 1965 game? | CREATE TABLE table_17781886_1 (game_site VARCHAR, date VARCHAR) | SELECT game_site FROM table_17781886_1 WHERE date = "December 12, 1965" |
Name the number of builders for number 96 | CREATE TABLE table_1748444_1 (builder VARCHAR, number VARCHAR) | SELECT COUNT(builder) FROM table_1748444_1 WHERE number = "96" |
Which Position has a DOB of 13 may 1987? | CREATE TABLE table_name_21 (position VARCHAR, dob VARCHAR) | SELECT position FROM table_name_21 WHERE dob = "13 may 1987" |
Please show the record formats of orchestras in ascending order of count. | CREATE TABLE orchestra (Major_Record_Format VARCHAR) | SELECT Major_Record_Format FROM orchestra GROUP BY Major_Record_Format ORDER BY COUNT(*) |
Which DOB has Bats of s, and a Position of inf? | CREATE TABLE table_name_8 (dob VARCHAR, bats VARCHAR, position VARCHAR) | SELECT dob FROM table_name_8 WHERE bats = "s" AND position = "inf" |
What are the attributes when the type is "DOMNodeRemoved"? | CREATE TABLE table_1507852_1 (attribute VARCHAR, type VARCHAR) | SELECT attribute FROM table_1507852_1 WHERE type = "DOMNodeRemoved" |
What was the Tyre for the German Grand Prix? | CREATE TABLE table_name_27 (tyre VARCHAR, race VARCHAR) | SELECT tyre FROM table_name_27 WHERE race = "german grand prix" |
What is the most silver medals when the total is less than 4 and the rank is 12? | CREATE TABLE table_name_35 (silver INTEGER, total VARCHAR, rank VARCHAR) | SELECT MAX(silver) FROM table_name_35 WHERE total < 4 AND rank = "12" |
What opponent has 76,202 attendance ? | CREATE TABLE table_name_5 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_5 WHERE attendance = "76,202" |
What is the result of the game played when 22,555 were in attendance and the Buckeyes were ranked #1? | CREATE TABLE table_name_57 (result VARCHAR, rank__number VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_57 WHERE rank__number = "1" AND attendance = "22,555" |
What was the score for the June 22 game with attendance 0? | CREATE TABLE table_name_44 (score VARCHAR, date VARCHAR, attendance VARCHAR) | SELECT score FROM table_name_44 WHERE date = "june 22" AND attendance = 0 |
What is the Country, when Place is "T4", and when Player is "Scott Simpson"? | CREATE TABLE table_name_64 (country VARCHAR, place VARCHAR, player VARCHAR) | SELECT country FROM table_name_64 WHERE place = "t4" AND player = "scott simpson" |
What's the value for played when points is 8 and position is 11th? | CREATE TABLE table_name_2 (played VARCHAR, position VARCHAR, points VARCHAR) | SELECT played FROM table_name_2 WHERE position = "11th" AND points = "8" |
What is Opponents, when Partner is Mervana Jugić-Salkić? | CREATE TABLE table_name_8 (opponents VARCHAR, partner VARCHAR) | SELECT opponents FROM table_name_8 WHERE partner = "mervana jugić-salkić" |
What is the population density of Caramoran? | CREATE TABLE table_255829_1 (pop_density__per_km_2__ VARCHAR, municipality VARCHAR) | SELECT pop_density__per_km_2__ FROM table_255829_1 WHERE municipality = "Caramoran" |
Which round has an offensive tackle position? | CREATE TABLE table_name_7 (round VARCHAR, position VARCHAR) | SELECT round FROM table_name_7 WHERE position = "offensive tackle" |
Name the location attendance of 5-15 | CREATE TABLE table_23186738_6 (location_attendance VARCHAR, record VARCHAR) | SELECT location_attendance FROM table_23186738_6 WHERE record = "5-15" |
what is ba - running bear where ab - angry boar is os - ox soldier? | CREATE TABLE table_2603017_2 (ba___running_bear VARCHAR, ab___angry_boar VARCHAR) | SELECT ba___running_bear FROM table_2603017_2 WHERE ab___angry_boar = "OS - Ox Soldier" |
What region goes along with January 1974? | CREATE TABLE table_name_93 (region VARCHAR, date VARCHAR) | SELECT region FROM table_name_93 WHERE date = "january 1974" |
In which state is the Petrie electorate? | CREATE TABLE table_name_39 (state VARCHAR, electorate VARCHAR) | SELECT state FROM table_name_39 WHERE electorate = "petrie" |
When the laps are 31 and the constructor was honda, what's the sum of all grid values? | CREATE TABLE table_name_58 (grid INTEGER, constructor VARCHAR, laps VARCHAR) | SELECT SUM(grid) FROM table_name_58 WHERE constructor = "honda" AND laps = 31 |
Show the names of pilots and fleet series of the aircrafts they have flied with in ascending order of the rank of the pilot. | CREATE TABLE pilot (Pilot_name VARCHAR, Pilot_ID VARCHAR, Rank VARCHAR); CREATE TABLE pilot_record (Aircraft_ID VARCHAR, Pilot_ID VARCHAR); CREATE TABLE aircraft (Fleet_Series VARCHAR, Aircraft_ID VARCHAR) | SELECT T3.Pilot_name, T2.Fleet_Series FROM pilot_record AS T1 JOIN aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN pilot AS T3 ON T1.Pilot_ID = T3.Pilot_ID ORDER BY T3.Rank |
Golfer Steve Pate is in what place? | CREATE TABLE table_name_6 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_6 WHERE player = "steve pate" |
What Opponent has a Result of –? | CREATE TABLE table_name_20 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_20 WHERE result = "–" |
What is the average year for scatman winning? | CREATE TABLE table_name_58 (year INTEGER, winner VARCHAR) | SELECT AVG(year) FROM table_name_58 WHERE winner = "scatman" |
What is Caps, when Province / Club is Example, when Position is Prop, and when Player is Sam Walters? | CREATE TABLE table_name_96 (caps VARCHAR, player VARCHAR, province___club VARCHAR, position VARCHAR) | SELECT caps FROM table_name_96 WHERE province___club = "example" AND position = "prop" AND player = "sam walters" |
What is the earliest year associated with under 0 wins? | CREATE TABLE table_name_55 (year INTEGER, wins INTEGER) | SELECT MIN(year) FROM table_name_55 WHERE wins < 0 |
who is the opponent when the year is after 1996 and the outcome is winner? | CREATE TABLE table_name_50 (opponent VARCHAR, year VARCHAR, outcome VARCHAR) | SELECT opponent FROM table_name_50 WHERE year > 1996 AND outcome = "winner" |
Which location had a round of 3, and an Opponent of matt horwich? | CREATE TABLE table_name_9 (location VARCHAR, round VARCHAR, opponent VARCHAR) | SELECT location FROM table_name_9 WHERE round < 3 AND opponent = "matt horwich" |
What is the Money of the Player with a Score of 71-66-74-67=278? | CREATE TABLE table_name_46 (money___ INTEGER, score VARCHAR) | SELECT AVG(money___) AS $__ FROM table_name_46 WHERE score = 71 - 66 - 74 - 67 = 278 |
Find all the distinct district names ordered by city area in descending. | CREATE TABLE district (District_name VARCHAR, city_area VARCHAR) | SELECT DISTINCT District_name FROM district ORDER BY city_area DESC |
What is the Netflix Episode when the Segment B is s Highlighter? | CREATE TABLE table_15187735_6 (netflix VARCHAR, segment_b VARCHAR) | SELECT netflix FROM table_15187735_6 WHERE segment_b = "s Highlighter" |
What time does the trainer, Todd Pletcher have? | CREATE TABLE table_name_63 (time VARCHAR, trainer VARCHAR) | SELECT time FROM table_name_63 WHERE trainer = "todd pletcher" |
Which candidate won 61.47% of the votes? | CREATE TABLE table_name_82 (candidate VARCHAR, share_of_votes VARCHAR) | SELECT candidate FROM table_name_82 WHERE share_of_votes = "61.47%" |
What is the total number of byes that are associated with 1 draw, 5 wins, and fewer than 12 losses? | CREATE TABLE table_name_70 (byes INTEGER, losses VARCHAR, draws VARCHAR, wins VARCHAR) | SELECT SUM(byes) FROM table_name_70 WHERE draws = 1 AND wins = 5 AND losses < 12 |
What timeslot received 0.673 viewers? | CREATE TABLE table_23392257_4 (timeslot VARCHAR, viewers__millions_ VARCHAR) | SELECT timeslot FROM table_23392257_4 WHERE viewers__millions_ = "0.673" |
How many characters does Maurice Dean Wint play in the movie Cube? | CREATE TABLE table_2933761_1 (status VARCHAR, played_by VARCHAR) | SELECT COUNT(status) FROM table_2933761_1 WHERE played_by = "Maurice Dean Wint" |
What venue was the 11 September 2012 game? | CREATE TABLE table_name_23 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_23 WHERE date = "11 september 2012" |
What the round with the time 1:15? | CREATE TABLE table_name_99 (round INTEGER, time VARCHAR) | SELECT AVG(round) FROM table_name_99 WHERE time = "1:15" |
Which young classification has general classification of Christian Vande Velde for Team Columbia and Mark Cavendish? | CREATE TABLE table_name_26 (young_classification VARCHAR, sprint_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) | SELECT young_classification FROM table_name_26 WHERE general_classification = "christian vande velde" AND team_classification = "team columbia" AND sprint_classification = "mark cavendish" |
WHich Thai name has a Transcription of wan phruehatsabodi? | CREATE TABLE table_name_55 (thai_name VARCHAR, transcription VARCHAR) | SELECT thai_name FROM table_name_55 WHERE transcription = "wan phruehatsabodi" |
When was the winning score −9 (72-68-64-67=271)? | CREATE TABLE table_name_89 (date VARCHAR, winning_score VARCHAR) | SELECT date FROM table_name_89 WHERE winning_score = −9(72 - 68 - 64 - 67 = 271) |
Which Extra points is the highest one that has a Player of herrnstein, and Points smaller than 30? | CREATE TABLE table_name_2 (extra_points INTEGER, player VARCHAR, points VARCHAR) | SELECT MAX(extra_points) FROM table_name_2 WHERE player = "herrnstein" AND points < 30 |
What is the lowest attendance on October 3, 1965? | CREATE TABLE table_name_17 (attendance INTEGER, date VARCHAR) | SELECT MIN(attendance) FROM table_name_17 WHERE date = "october 3, 1965" |
What is the Rank of the Athletes from Ukraine? | CREATE TABLE table_name_65 (rank VARCHAR, country VARCHAR) | SELECT COUNT(rank) FROM table_name_65 WHERE country = "ukraine" |
What is the nationality of the player in round 4? | CREATE TABLE table_name_11 (nationality VARCHAR, round VARCHAR) | SELECT nationality FROM table_name_11 WHERE round = 4 |
What is the country for # 8 | CREATE TABLE table_13282157_1 (country VARCHAR, _number VARCHAR) | SELECT country FROM table_13282157_1 WHERE _number = 8 |
What state is the radio station in that has a frequency of 90.1 FM and a city license in New Castle? | CREATE TABLE table_name_71 (state VARCHAR, frequency VARCHAR, city_of_license VARCHAR) | SELECT state FROM table_name_71 WHERE frequency = "90.1 fm" AND city_of_license = "new castle" |
What is the lowest average finish having top 5s of 0? | CREATE TABLE table_name_7 (avg_finish INTEGER, top_5 INTEGER) | SELECT MIN(avg_finish) FROM table_name_7 WHERE top_5 < 0 |
What is the event year radek štěpánek was the round and there were less than 3 aces? | CREATE TABLE table_name_92 (event VARCHAR, round VARCHAR, aces VARCHAR) | SELECT COUNT(event) FROM table_name_92 WHERE round = "radek štěpánek" AND NOT aces < 3 |
Name the date for result of eng by 23 runs | CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR) | SELECT date FROM table_name_24 WHERE result = "eng by 23 runs" |
Which bi-directional route has a terminus at Ecat/Rosa Park Transit Center? | CREATE TABLE table_name_50 (name VARCHAR, direction VARCHAR, terminus VARCHAR) | SELECT name FROM table_name_50 WHERE direction = "bi-directional" AND terminus = "ecat/rosa park transit center" |
What country has a To par of +1 and the score of 71-76-70=217? | CREATE TABLE table_name_25 (country VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT country FROM table_name_25 WHERE to_par = "+1" AND score = 71 - 76 - 70 = 217 |
What was the attendance on October 27, 1968? | CREATE TABLE table_name_9 (week INTEGER, date VARCHAR) | SELECT MAX(week) FROM table_name_9 WHERE date = "october 27, 1968" |
What player scored 70-72-70=212? | CREATE TABLE table_name_35 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_35 WHERE score = 70 - 72 - 70 = 212 |
What Player has a Score of 71-71=142? | CREATE TABLE table_name_60 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_60 WHERE score = 71 - 71 = 142 |
What is the Speed when Construction begun in 2010, and an Expected start of revenue services of 2015? | CREATE TABLE table_name_3 (speed VARCHAR, construction_begun VARCHAR, expected_start_of_revenue_services VARCHAR) | SELECT speed FROM table_name_3 WHERE construction_begun = "2010" AND expected_start_of_revenue_services = 2015 |
Name the production code # for episode 109 | CREATE TABLE table_2342078_6 (production_code__number VARCHAR, episode__number VARCHAR) | SELECT COUNT(production_code__number) FROM table_2342078_6 WHERE episode__number = 109 |
When was the last win of Celtic? | CREATE TABLE table_name_89 (last_win VARCHAR, club VARCHAR) | SELECT last_win FROM table_name_89 WHERE club = "celtic" |
What is the sum of Year, when Rank is less than 19? | CREATE TABLE table_name_4 (year INTEGER, rank INTEGER) | SELECT SUM(year) FROM table_name_4 WHERE rank < 19 |
What's Australia's time in the heat more than 4? | CREATE TABLE table_name_43 (time VARCHAR, heat VARCHAR, nationality VARCHAR) | SELECT time FROM table_name_43 WHERE heat > 4 AND nationality = "australia" |
What was the result of match 25? | CREATE TABLE table_name_97 (result VARCHAR, match VARCHAR) | SELECT result FROM table_name_97 WHERE match = "25" |
What are the years for Kawerau Putauaki School? | CREATE TABLE table_name_98 (years VARCHAR, name VARCHAR) | SELECT years FROM table_name_98 WHERE name = "kawerau putauaki school" |
For the game where the opponent is listed as At Los Angeles Rams, what was the final score? | CREATE TABLE table_name_65 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_65 WHERE opponent = "at los angeles rams" |
what's the percentage of votes with election date being 1981 | CREATE TABLE table_13746866_2 (percentage_of_votes VARCHAR, election_date VARCHAR) | SELECT percentage_of_votes FROM table_13746866_2 WHERE election_date = 1981 |
What album came out before 2008 called We're not Made in the USA? | CREATE TABLE table_name_93 (album VARCHAR, year VARCHAR, title VARCHAR) | SELECT album FROM table_name_93 WHERE year < 2008 AND title = "we're not made in the usa" |
What was the Venue on November 14, 2007? | CREATE TABLE table_name_17 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_17 WHERE date = "november 14, 2007" |
What date has lost as the result and a competition of friendly with 1-2 as the score? | CREATE TABLE table_name_86 (date VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR) | SELECT date FROM table_name_86 WHERE result = "lost" AND competition = "friendly" AND score = "1-2" |
What is the minimum number of views that watched the show when there was more than 22 episodes and the finale was on May 23, 1995? | CREATE TABLE table_name_54 (viewers__in_households_ INTEGER, finale VARCHAR, episodes VARCHAR) | SELECT MIN(viewers__in_households_) FROM table_name_54 WHERE finale = "may 23, 1995" AND episodes > 22 |
When did they play Dayton? | CREATE TABLE table_25461946_8 (date VARCHAR, team VARCHAR) | SELECT date FROM table_25461946_8 WHERE team = "Dayton" |
Who is the opponent when the record is 3-8? | CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_53 WHERE record = "3-8" |
Who were the candidates in the district where the incumbent was Nathaniel Macon? | CREATE TABLE table_2668367_14 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_2668367_14 WHERE incumbent = "Nathaniel Macon" |
What are the names of the tourist attractions that have parking or shopping as their feature details? | CREATE TABLE Tourist_Attraction_Features (tourist_attraction_id VARCHAR, Feature_ID VARCHAR); CREATE TABLE Features (Feature_ID VARCHAR, feature_Details VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, tourist_attraction_id VARCHAR) | SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN Tourist_Attraction_Features AS T2 ON T1.tourist_attraction_id = T2.tourist_attraction_id JOIN Features AS T3 ON T2.Feature_ID = T3.Feature_ID WHERE T3.feature_Details = 'park' UNION SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN Tourist_Attraction_Features AS T2 ON T1.tourist_attraction_id = T2.tourist_attraction_id JOIN Features AS T3 ON T2.Feature_ID = T3.Feature_ID WHERE T3.feature_Details = 'shopping' |
What is the dominant religion in 2002 for the population of 2337 in 2011? | CREATE TABLE table_2562572_54 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_54 WHERE population__2011_ = 2337 |
what is the old English name of Saturday? | CREATE TABLE table_2624098_1 (old_english_day_name VARCHAR, modern_english_day_name VARCHAR) | SELECT old_english_day_name FROM table_2624098_1 WHERE modern_english_day_name = "Saturday" |
What was the record after the bout lasting 4:15? | CREATE TABLE table_name_57 (record VARCHAR, time VARCHAR) | SELECT record FROM table_name_57 WHERE time = "4:15" |
who was the voice actor when the species is hedgehog? | CREATE TABLE table_26615633_1 (voice_actor VARCHAR, species VARCHAR) | SELECT voice_actor FROM table_26615633_1 WHERE species = "Hedgehog" |
What is the 2nd leg where Team 2 is fc 105 libreville? | CREATE TABLE table_name_9 (team_2 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_9 WHERE team_2 = "fc 105 libreville" |
Which method led to a record of 9-4? | CREATE TABLE table_name_61 (method VARCHAR, record VARCHAR) | SELECT method FROM table_name_61 WHERE record = "9-4" |
When was a report not held? | CREATE TABLE table_name_29 (year VARCHAR, report VARCHAR) | SELECT year FROM table_name_29 WHERE report = "not held" |
Pick # smaller than 46, and a Round of 5, and a Position of defensive tackle involves which college? | CREATE TABLE table_name_72 (college VARCHAR, position VARCHAR, pick__number VARCHAR, round VARCHAR) | SELECT college FROM table_name_72 WHERE pick__number < 46 AND round = 5 AND position = "defensive tackle" |
What is the name and capacity of the stadium with the most concerts after 2013 ? | CREATE TABLE concert (stadium_id VARCHAR, year INTEGER); CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, stadium_id VARCHAR) | SELECT t2.name, t2.capacity FROM concert AS t1 JOIN stadium AS t2 ON t1.stadium_id = t2.stadium_id WHERE t1.year > 2013 GROUP BY t2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1 |
What is the week 14 (final) dec 7 standing with Florida (6-1) on week 8 Oct 26? | CREATE TABLE table_name_97 (week_14__final__dec_7 VARCHAR, week_8_oct_26 VARCHAR) | SELECT week_14__final__dec_7 FROM table_name_97 WHERE week_8_oct_26 = "florida (6-1)" |
What was the Week number on November 20, 1977? | CREATE TABLE table_name_54 (week INTEGER, date VARCHAR) | SELECT SUM(week) FROM table_name_54 WHERE date = "november 20, 1977" |
what is the highest wins when the losses is less than 1, team is rams and the games is more than 8? | CREATE TABLE table_name_23 (wins INTEGER, games VARCHAR, losses VARCHAR, teams VARCHAR) | SELECT MAX(wins) FROM table_name_23 WHERE losses < 1 AND teams = "rams" AND games > 8 |
what is the original air date of the episode directed by Ben Jones and written by Steven Melching? | CREATE TABLE table_20360535_4 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR) | SELECT original_air_date FROM table_20360535_4 WHERE directed_by = "Ben Jones" AND written_by = "Steven Melching" |
What is the highest lane value for a mark of 2:02.27 NR, with heats under 2? | CREATE TABLE table_name_82 (lane INTEGER, mark VARCHAR, heat VARCHAR) | SELECT MAX(lane) FROM table_name_82 WHERE mark = "2:02.27 nr" AND heat < 2 |
For which team did Adidas manufacture kits and TDK sponsor shirts? | CREATE TABLE table_name_75 (team VARCHAR, kit_manufacturer VARCHAR, shirt_sponsor VARCHAR) | SELECT team FROM table_name_75 WHERE kit_manufacturer = "adidas" AND shirt_sponsor = "tdk" |
What year did the winnings equal $281,945? | CREATE TABLE table_2182562_1 (year VARCHAR, winnings VARCHAR) | SELECT year FROM table_2182562_1 WHERE winnings = "$281,945" |
Who won the mens singles when sayaka sato won the womens singles? | CREATE TABLE table_12275551_1 (mens_singles VARCHAR, womens_singles VARCHAR) | SELECT mens_singles FROM table_12275551_1 WHERE womens_singles = "Sayaka Sato" |
What nationality is Larry McMorran? | CREATE TABLE table_name_59 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_59 WHERE player = "larry mcmorran" |
How many songs have mi-chemin as their Japanese name and romanji name? | CREATE TABLE table_10979230_4 (romaji_title VARCHAR, japanese_title VARCHAR) | SELECT COUNT(romaji_title) FROM table_10979230_4 WHERE japanese_title = "Mi-Chemin" |
Show the name and country for all people whose age is smaller than the average. | CREATE TABLE people (name VARCHAR, country VARCHAR, age INTEGER) | SELECT name, country FROM people WHERE age < (SELECT AVG(age) FROM people) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.