sql
stringlengths
9
2.37k
table
stringclasses
9 values
query
stringlengths
51
503
SELECT home FROM table_name_57 WHERE date = "march 24"
CREATE TABLE INST, Here is a database schema( table schema);
Who was the home team on March 24?It is not neccessary to use all the tables.
SELECT Extra points FROM table WHERE Position = Left guard
CREATE TABLE INST, Here is a database schema( table schema);
Name the extra points for left guard.It is not neccessary to use all the tables.
SELECT "Traditional" FROM table_614 WHERE "Area" = '2331'
CREATE TABLE INST, Here is a database schema( table schema);
What is the traditional way to write the name of the district who's area is 2331?It is not neccessary to use all the tables.
SELECT Record FROM table WHERE Score = 1–4
CREATE TABLE INST, Here is a database schema( table schema);
which Record has a Score of 1–4?.It is not neccessary to use all the tables.
SELECT Home team FROM table WHERE Away team score = 13.6 (84)
CREATE TABLE INST, Here is a database schema( table schema);
What home team played against the away team with a score of 13.6 (84)?.It is not neccessary to use all the tables.
SELECT Aircraft FROM table WHERE Retired = — AND Introduced = 2004
CREATE TABLE INST, Here is a database schema( table schema);
What aircraft was introduced in 2004 and has a retired of —?.It is not neccessary to use all the tables.
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.dod_year <= "2131.0" AND lab.label = "Neutrophils"
CREATE TABLE INST, Here is a database schema( table schema);
what is the number of patients whose year of death is less than or equal to 2131 and lab test name is neutrophils?It is not neccessary to use all the tables.
SELECT date FROM table_name_7 WHERE home_team = "north melbourne"
CREATE TABLE INST, Here is a database schema( table schema);
When did the north melbourne team play?It is not neccessary to use all the tables.
SELECT t3.drug FROM (SELECT t2.drug, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'dmi ophth nt st uncntrld') AND DATETIME(diagnoses_icd.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year')) AS t1 JOIN (SELECT admissions.subject_id, prescriptions.drug, prescriptions.startdate FROM prescriptions JOIN admissions ON prescriptions.hadm_id = admissions.hadm_id WHERE admissions.age >= 60 AND DATETIME(prescriptions.startdate, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year')) AS t2 ON t1.subject_id = t2.subject_id WHERE t1.charttime < t2.startdate AND DATETIME(t2.startdate) BETWEEN DATETIME(t1.charttime) AND DATETIME(t1.charttime, '+2 month') GROUP BY t2.drug) AS t3 WHERE t3.c1 <= 4
CREATE TABLE INST, Here is a database schema( table schema);
what are the four most commonly prescribed drugs that patients of the 60 or above were prescribed within 2 months after having been diagnosed with dmi ophth nt st uncntrld in a year before?It is not neccessary to use all the tables.
SELECT incumbent FROM table_2668329_25 WHERE district = "Virginia 6"
CREATE TABLE INST, Here is a database schema( table schema);
Who is the incumbent in the Virginia 6 district?It is not neccessary to use all the tables.
SELECT high_rebounds FROM table_13464416_4 WHERE team = "Golden State"
CREATE TABLE INST, Here is a database schema( table schema);
Who had the high rebound total against golden state?It is not neccessary to use all the tables.
SELECT SUM(prescriptions.dose_val_rx) FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 9338) AND prescriptions.drug = 'bag' AND STRFTIME('%y-%m', prescriptions.startdate) <= '2104-07'
CREATE TABLE INST, Here is a database schema( table schema);
how much bag is prescribed to patient 9338 in total until 07/2104?It is not neccessary to use all the tables.
SELECT Song choice FROM table WHERE Week # = Top 10
CREATE TABLE INST, Here is a database schema( table schema);
WHAT WAS HER SONG CHOICE WHEN THE WEEK WAS TOP 10?.It is not neccessary to use all the tables.
SELECT venue FROM table_name_79 WHERE partnerships = "shoaib malik / misbah-ul-haq"
CREATE TABLE INST, Here is a database schema( table schema);
What venue did the parntership of shoaib malik / misbah-ul-haq occur?It is not neccessary to use all the tables.
SELECT MIN(silver) FROM table_name_68 WHERE gold < 0
CREATE TABLE INST, Here is a database schema( table schema);
What is the least amount of silver medals a team with less than 0 gold medals has?It is not neccessary to use all the tables.
SELECT years FROM table_name_88 WHERE rank < 2
CREATE TABLE INST, Here is a database schema( table schema);
Which years have a rank less than 2?It is not neccessary to use all the tables.
SELECT Launched FROM table WHERE Laid Down = 14 august 1942
CREATE TABLE INST, Here is a database schema( table schema);
when was the launched date when the laid down date is 14 august 1942?.It is not neccessary to use all the tables.
SELECT date FROM table_name_50 WHERE stadium = "central park"
CREATE TABLE INST, Here is a database schema( table schema);
What day did they play in central park stadium?It is not neccessary to use all the tables.
SELECT League FROM table WHERE Year = 2010
CREATE TABLE INST, Here is a database schema( table schema);
What league was involved in 2010?.It is not neccessary to use all the tables.
SELECT result FROM table_name_97 WHERE date = "21st"
CREATE TABLE INST, Here is a database schema( table schema);
What was the Result of the game dated 21st?It is not neccessary to use all the tables.
SELECT Score FROM table WHERE Opponent = ann grossman
CREATE TABLE INST, Here is a database schema( table schema);
what is the score when the opponent is ann grossman?.It is not neccessary to use all the tables.
SELECT COUNT(built) FROM table_142159_1 WHERE name = "River Esk"
CREATE TABLE INST, Here is a database schema( table schema);
How many are named River EskIt is not neccessary to use all the tables.
SELECT visitor FROM table_name_9 WHERE date = "march 27"
CREATE TABLE INST, Here is a database schema( table schema);
Who was the visitor on March 27?It is not neccessary to use all the tables.
SELECT MAX(_percentage_similarity_to_c7orf38) FROM table_26957063_3 WHERE _percentage_identity_to_c7orf38 = 81
CREATE TABLE INST, Here is a database schema( table schema);
What is the % similarity to C7orf38 of the animal whose % identity to C7orf38 is 81?It is not neccessary to use all the tables.
SELECT chartevents.charttime FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 1561)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'temperature c (calc)' AND d_items.linksto = 'chartevents') AND DATETIME(chartevents.charttime, 'start of month') = DATETIME(CURRENT_TIME(), 'start of month', '-0 month') AND STRFTIME('%d', chartevents.charttime) = '30' ORDER BY chartevents.charttime LIMIT 1
CREATE TABLE INST, Here is a database schema( table schema);
when was the first time patient 1561 had their temperature c (calc) measured or taken on this month/30?It is not neccessary to use all the tables.
SELECT code_name FROM table_name_88 WHERE function__figure_ = "space pilot"
CREATE TABLE INST, Here is a database schema( table schema);
What is the Code Name for the Space Pilot Function (figure)?It is not neccessary to use all the tables.
SELECT Name FROM manager ORDER BY LEVEL
CREATE TABLE INST, Here is a database schema( table schema);
What are the names of managers in ascending order of level?It is not neccessary to use all the tables.
SELECT MAX(march) FROM table_name_94 WHERE opponent = "boston bruins" AND game < 66
CREATE TABLE INST, Here is a database schema( table schema);
What is the latest date in March when the opponent was the Boston Bruins and the game number was smaller than 66?It is not neccessary to use all the tables.
SELECT AVG(crowd) FROM table_name_35 WHERE away_team = "geelong"
CREATE TABLE INST, Here is a database schema( table schema);
How is the crowd of the team Geelong?It is not neccessary to use all the tables.
SELECT height__mtr_ FROM table_23495048_2 WHERE contestant = "Ulrike Wolful"
CREATE TABLE INST, Here is a database schema( table schema);
How many meters tall is Ulrike Wolful?It is not neccessary to use all the tables.
SELECT College/Junior/Club Team (League) FROM table WHERE Position = right wing AND Round = 6
CREATE TABLE INST, Here is a database schema( table schema);
In what League in Round 6 is the Position Right Wing?.It is not neccessary to use all the tables.
SELECT Pole position FROM table WHERE Supporting = USAC National Midget Series
CREATE TABLE INST, Here is a database schema( table schema);
Who got the pole position if the supporting is USAC National Midget Series?.It is not neccessary to use all the tables.
SELECT Chinese Population FROM table WHERE Pakistani Population = 26347
CREATE TABLE INST, Here is a database schema( table schema);
What's the Chinese population in the borough with 26347 Pakistanis?.It is not neccessary to use all the tables.
SELECT record FROM table_name_26 WHERE date = "november 18"
CREATE TABLE INST, Here is a database schema( table schema);
What is the record on November 18?It is not neccessary to use all the tables.
SELECT broadcast_date FROM table_2114238_1 WHERE viewers__in_millions_ = "6.8"
CREATE TABLE INST, Here is a database schema( table schema);
Which broadcast date has 6.8 million viewers?It is not neccessary to use all the tables.
SELECT MAX Car # FROM table WHERE Make = toyota AND Driver = mike skinner AND Pos. > 3
CREATE TABLE INST, Here is a database schema( table schema);
Which Car # has a Make of toyota, and a Driver of mike skinner, and a Pos larger than 3?.It is not neccessary to use all the tables.
SELECT MIN(year) FROM table_22587192_1 WHERE mens_singles = "Raju Rai"
CREATE TABLE INST, Here is a database schema( table schema);
What is the least year when men's singles is Raju Rai?It is not neccessary to use all the tables.
SELECT Competition FROM table WHERE Date = september 10, 2005
CREATE TABLE INST, Here is a database schema( table schema);
Which competition was held on September 10, 2005?.It is not neccessary to use all the tables.
SELECT MAX Games FROM table WHERE Drawn > 1
CREATE TABLE INST, Here is a database schema( table schema);
Name the most games with drawn more than 1.It is not neccessary to use all the tables.
SELECT SUM 2nd pl. FROM table WHERE Motorcycle = ducati 916 AND Wins < 7
CREATE TABLE INST, Here is a database schema( table schema);
How many times was the motorcycle ducati 916 2nd place when wins is less than 7?.It is not neccessary to use all the tables.
SELECT result FROM table_name_69 WHERE score = "12-22"
CREATE TABLE INST, Here is a database schema( table schema);
What outcome has a score of 12-22?It is not neccessary to use all the tables.
SELECT position FROM table_name_95 WHERE school_club_team = "arizona state"
CREATE TABLE INST, Here is a database schema( table schema);
Which position has a player at Arizona state?It is not neccessary to use all the tables.
SELECT Italian FROM table WHERE Common English = glarus
CREATE TABLE INST, Here is a database schema( table schema);
What is the italian word for Glarus?.It is not neccessary to use all the tables.
SELECT Location FROM table WHERE Opponent = zaza tkeshelashvili
CREATE TABLE INST, Here is a database schema( table schema);
What is the location of the fight against Zaza Tkeshelashvili?.It is not neccessary to use all the tables.
SELECT set_2 FROM table_name_85 WHERE total = "97–74"
CREATE TABLE INST, Here is a database schema( table schema);
What set 2 has a total of 97–74?It is not neccessary to use all the tables.
SELECT date FROM table_name_89 WHERE record = "14-28"
CREATE TABLE INST, Here is a database schema( table schema);
What date did the Indians have a record of 14-28?It is not neccessary to use all the tables.
SELECT opponent FROM table_name_85 WHERE round = "1"
CREATE TABLE INST, Here is a database schema( table schema);
Which opponent had round 1?It is not neccessary to use all the tables.
SELECT Tournament FROM table WHERE Date = 12 february 2001
CREATE TABLE INST, Here is a database schema( table schema);
Which tournament was played on 12 February 2001?.It is not neccessary to use all the tables.
SELECT AVG(year) FROM table_name_3 WHERE film = "rango"
CREATE TABLE INST, Here is a database schema( table schema);
What year did the movie Rango come out?It is not neccessary to use all the tables.
SELECT COUNT Losses FROM table WHERE Wins < 6 AND Draws < 0
CREATE TABLE INST, Here is a database schema( table schema);
What is the total number of losses with less than 6 wins and less than 0 draws?.It is not neccessary to use all the tables.
SELECT prescriptions.drug FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 92846) AND DATETIME(prescriptions.startdate, 'start of day') = DATETIME(CURRENT_TIME(), 'start of day', '-0 day') EXCEPT SELECT prescriptions.drug FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 92846) AND DATETIME(prescriptions.startdate, 'start of day') = DATETIME(CURRENT_TIME(), 'start of day', '-1 day')
CREATE TABLE INST, Here is a database schema( table schema);
what are patient 92846's new drugs today compared to those yesterday?It is not neccessary to use all the tables.
SELECT high_assists FROM table_27712702_11 WHERE team = "Detroit"
CREATE TABLE INST, Here is a database schema( table schema);
Who had the high assists against detroit?It is not neccessary to use all the tables.
SELECT Home team score FROM table WHERE Ground = York Park
CREATE TABLE INST, Here is a database schema( table schema);
What were the home team scores at york park?.It is not neccessary to use all the tables.
SELECT AVG(matches) FROM table_name_67 WHERE rank < 5 AND years = "1995–2003" AND goals < 104
CREATE TABLE INST, Here is a database schema( table schema);
Which Matches have a Rank smaller than 5 a Years of 1995–2003 and a Goals smaller than 104?It is not neccessary to use all the tables.
SELECT population_in_millions FROM table_name_73 WHERE gdp_2012_millions_of_euro = "600,638"
CREATE TABLE INST, Here is a database schema( table schema);
What is Population in Millions when GDP 2012 Millions of Euro is 600638?It is not neccessary to use all the tables.
SELECT Result FROM table WHERE District = California 2
CREATE TABLE INST, Here is a database schema( table schema);
What was the result of the election in california 2?.It is not neccessary to use all the tables.
SELECT competition FROM table_name_8 WHERE year > 2009 AND notes = "team"
CREATE TABLE INST, Here is a database schema( table schema);
What competition took place in a year later than 2009 with team notes?It is not neccessary to use all the tables.
SELECT Money ( $ ) FROM table WHERE Score = 75-71-72-70=288
CREATE TABLE INST, Here is a database schema( table schema);
What is Money ( $ ), when Score is "75-71-72-70=288"?.It is not neccessary to use all the tables.
SELECT Place FROM table WHERE Country = italy
CREATE TABLE INST, Here is a database schema( table schema);
What place was the player from Italy in ?.It is not neccessary to use all the tables.
SELECT home_team FROM table_name_28 WHERE away_team = "richmond"
CREATE TABLE INST, Here is a database schema( table schema);
What home team has an Away team of richmond?It is not neccessary to use all the tables.
SELECT hometown FROM table_name_99 WHERE college = "ucla"
CREATE TABLE INST, Here is a database schema( table schema);
What is the hometown of the player that attends UCLA?It is not neccessary to use all the tables.
SELECT type FROM table_261954_1 WHERE location = "Roanoke, Virginia"
CREATE TABLE INST, Here is a database schema( table schema);
What is every type for the location of Roanoke Virginia?It is not neccessary to use all the tables.
SELECT COUNT Population FROM table WHERE English Name = jiyang
CREATE TABLE INST, Here is a database schema( table schema);
how many subdivisions have an English Name of jiyang?.It is not neccessary to use all the tables.
SELECT class FROM table_1745843_10 WHERE part_3 = "heldu"
CREATE TABLE INST, Here is a database schema( table schema);
What class is the verb wich its part 3 is helduIt is not neccessary to use all the tables.
SELECT D 41 √ FROM table WHERE D 44 O = r 13
CREATE TABLE INST, Here is a database schema( table schema);
Name the D 41 √ with D 44 O of r 13.It is not neccessary to use all the tables.
SELECT COUNT(november_3) FROM table_25235489_2 WHERE january_15_16 = "January 15, 1991"
CREATE TABLE INST, Here is a database schema( table schema);
How many times does November 3rd occur when January 15 1991 does?It is not neccessary to use all the tables.
SELECT MIN(losses) FROM table_name_32 WHERE goals_against > 59 AND position > 17
CREATE TABLE INST, Here is a database schema( table schema);
How many losses has more than 59 goals against and more than 17 position?It is not neccessary to use all the tables.
SELECT DISTINCT T1.stageposition FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id WHERE Firstname = "Solveig"
CREATE TABLE INST, Here is a database schema( table schema);
Find all the stage positions of the musicians with first name "Solveig"It is not neccessary to use all the tables.
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.gender = "M" AND demographic.admission_location = "EMERGENCY ROOM ADMIT"
CREATE TABLE INST, Here is a database schema( table schema);
how many male patients had emergency room admission?It is not neccessary to use all the tables.
SELECT AVG("Sales (billion $)") FROM table_45130 WHERE "Company" = 'walmart' AND "Profits (billion $)" > '15.7'
CREATE TABLE INST, Here is a database schema( table schema);
What is the average sales in billions of walmart, which has more than 15.7 billion in profits?It is not neccessary to use all the tables.
SELECT MAX District-wide FROM table WHERE Other programs & adjustments = 1639
CREATE TABLE INST, Here is a database schema( table schema);
Name the most district wide for 1639 other programs.It is not neccessary to use all the tables.
SELECT MIN(chartevents.valuenum) FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 14054)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'sao2' AND d_items.linksto = 'chartevents') AND DATETIME(chartevents.charttime, 'start of month') = DATETIME(CURRENT_TIME(), 'start of month', '-1 month') GROUP BY STRFTIME('%y-%m-%d', chartevents.charttime)
CREATE TABLE INST, Here is a database schema( table schema);
indicate the daily minimum sao2 of patient 14054 last month.It is not neccessary to use all the tables.
SELECT Score FROM table WHERE Loss = cerutti (0-1)
CREATE TABLE INST, Here is a database schema( table schema);
What was the score of the game that had a loss of Cerutti (0-1)?.It is not neccessary to use all the tables.
SELECT name FROM Person WHERE gender = 'male' ORDER BY age
CREATE TABLE INST, Here is a database schema( table schema);
Find the name and age of all males in order of their age.It is not neccessary to use all the tables.
SELECT City FROM table WHERE Tickets available since = march 28, 2008 AND Date = september 4, 2009
CREATE TABLE INST, Here is a database schema( table schema);
What city had tickets available since March 28, 2008 and went on sale on September 4, 2009?.It is not neccessary to use all the tables.
SELECT "Robin" FROM table_2426 WHERE "Result" = 'Eliminated'
CREATE TABLE INST, Here is a database schema( table schema);
What was Robin's score when she was eliminated?It is not neccessary to use all the tables.
SELECT DISTINCT T1.Age FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.Secretary_Vote WHERE T2.Election_Cycle = "Fall"
CREATE TABLE INST, Here is a database schema( table schema);
Find the distinct ages of students who have secretary votes in the fall election cycle.It is not neccessary to use all the tables.
SELECT MIN Week FROM table WHERE Date = sunday november 28
CREATE TABLE INST, Here is a database schema( table schema);
Which Week is on sunday november 28?.It is not neccessary to use all the tables.
SELECT MIN Points FROM table WHERE Blocks = 21
CREATE TABLE INST, Here is a database schema( table schema);
what is the lowest points scored by a player who blocked 21 times.It is not neccessary to use all the tables.
SELECT intra_dc_precision FROM table_name_59 WHERE name = "main profile"
CREATE TABLE INST, Here is a database schema( table schema);
Name the Intra DC Precision that has the Name main profile?It is not neccessary to use all the tables.
SELECT Name FROM table WHERE Time = 25.74
CREATE TABLE INST, Here is a database schema( table schema);
Tell me the name for time of 25.74.It is not neccessary to use all the tables.
SELECT Date FROM table WHERE Tonnage (GRT) > 5,754 AND Sunk by = u-305
CREATE TABLE INST, Here is a database schema( table schema);
What is the date where the tonnage is larger than 5,754 and the ship was sunk by U-305?.It is not neccessary to use all the tables.
SELECT COUNT Gold FROM table WHERE Nation = denmark AND Total < 1
CREATE TABLE INST, Here is a database schema( table schema);
How many golds have denmark as the nation, with a total less than 1?.It is not neccessary to use all the tables.
SELECT Station Code FROM table WHERE Departure = destination station
CREATE TABLE INST, Here is a database schema( table schema);
What is the Station Code of the Destination Station Departure?.It is not neccessary to use all the tables.
SELECT Date FROM table WHERE Venue = oval
CREATE TABLE INST, Here is a database schema( table schema);
What is the Date with a Venue that is oval?.It is not neccessary to use all the tables.
SELECT Away captain FROM table WHERE Result = [[|]] by 7 wickets
CREATE TABLE INST, Here is a database schema( table schema);
Who is the away captain when the game resulted in [[|]] by 7 wickets?.It is not neccessary to use all the tables.
SELECT MIN Touchdowns FROM table WHERE Points = 11
CREATE TABLE INST, Here is a database schema( table schema);
Name the least touchdowns for 11 points.It is not neccessary to use all the tables.
SELECT MAX(score) FROM table_name_93 WHERE player = "bernhard langer"
CREATE TABLE INST, Here is a database schema( table schema);
What was Bernhard Langer's highest score?It is not neccessary to use all the tables.
SELECT Written by FROM table WHERE Directed by = Charles Haid AND No. = 54
CREATE TABLE INST, Here is a database schema( table schema);
The episode with the no. 54, directed by Charles Haid, is written by who?.It is not neccessary to use all the tables.
SELECT COUNT(intro_date) FROM table_29778616_1 WHERE price = "686€"
CREATE TABLE INST, Here is a database schema( table schema);
How many intro dates have the price of 686€?It is not neccessary to use all the tables.
SELECT COUNT No. in season FROM table WHERE Title = "Strangled, Not Stirred"
CREATE TABLE INST, Here is a database schema( table schema);
How many seasons did "strangled, not stirred" air?.It is not neccessary to use all the tables.
SELECT Round FROM table WHERE Year > 2011
CREATE TABLE INST, Here is a database schema( table schema);
Which Round has a Year later than 2011?.It is not neccessary to use all the tables.
SELECT sambalpuri_saree FROM table_name_22 WHERE sambalpuri_language = "samaleswari temple"
CREATE TABLE INST, Here is a database schema( table schema);
What is the sambalpuri saree with a samaleswari temple as sambalpuri language?It is not neccessary to use all the tables.
SELECT try_bonus FROM table_name_52 WHERE lost = "5" AND points = "73"
CREATE TABLE INST, Here is a database schema( table schema);
What is Try Bonus when Lost is "5" and when Points is "73"?It is not neccessary to use all the tables.
SELECT Score FROM table WHERE Competition = west asian games 2005 AND Date = 10 dec 2005
CREATE TABLE INST, Here is a database schema( table schema);
What is the Score of West Asian Games 2005 on 10 dec 2005?.It is not neccessary to use all the tables.
SELECT attendance FROM table_name_47 WHERE date = "august 8"
CREATE TABLE INST, Here is a database schema( table schema);
What was the attendance on August 8?It is not neccessary to use all the tables.
SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = "US17"
CREATE TABLE INST, Here is a database schema( table schema);
What episode in the season was episode us17 in the series?It is not neccessary to use all the tables.
SELECT MIN Production code FROM table WHERE Written by = Jay Sommers & Dick Chevillat and Al Schwartz
CREATE TABLE INST, Here is a database schema( table schema);
what's the minimum production code written by jay sommers & dick chevillat and al schwartz.It is not neccessary to use all the tables.
SELECT largest_ethnic_group__2002_ FROM table_2562572_52 WHERE cyrillic_name = "Брестач"
CREATE TABLE INST, Here is a database schema( table schema);
What is the largest ethnic group (2002) when cyrillic name is брестач?It is not neccessary to use all the tables.
SELECT Pronunciation b FROM table WHERE Meaning a = grind
CREATE TABLE INST, Here is a database schema( table schema);
Name the pronunciation b for meaning of grind.It is not neccessary to use all the tables.