sql
stringlengths 9
2.37k
| table
stringclasses 9
values | query
stringlengths 51
503
|
---|---|---|
SELECT tournament FROM table_name_54 WHERE score_in_final = "5–7, 7–5, 6–4"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
At what tournament was the Score 5–7 7–5 6–4?It is not neccessary to use all the tables.
|
SELECT Conference FROM table WHERE Awards = vancouver grizzlies
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Where the Vancouver Grizzlies is the awards, what is the conference?.It is not neccessary to use all the tables.
|
SELECT fastest_lap FROM table_1132600_3 WHERE grand_prix = "Belgian grand_prix"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who had the fastest lap in the Belgian Grand Prix?It is not neccessary to use all the tables.
|
SELECT league FROM table_name_99 WHERE open_cup = "1st round" AND year = 2009
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which League that has a Open Cup of 1st round and a Year of 2009?It is not neccessary to use all the tables.
|
SELECT record FROM table_name_4 WHERE date = "21 january 2008"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the record for 21 january 2008It is not neccessary to use all the tables.
|
SELECT course FROM table_name_68 WHERE edition = "117th"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the course called that had an Edition of 117th?It is not neccessary to use all the tables.
|
SELECT microbiologyevents.spec_type_desc FROM microbiologyevents WHERE microbiologyevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 73362) AND DATETIME(microbiologyevents.charttime) >= DATETIME(CURRENT_TIME(), '-124 month') ORDER BY microbiologyevents.charttime LIMIT 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
tell me the name of the specimen test that patient 73362 had first received since 124 months ago?It is not neccessary to use all the tables.
|
SELECT AVG(fall_07) FROM table_name_83 WHERE fall_05 = 271 AND fall_09 < 347
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the average value for Fall 07 when Fall 05 is 271 and Fall 09 is less than 347?It is not neccessary to use all the tables.
|
SELECT college FROM table_name_64 WHERE position = "ol" AND pick__number < 32
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which College has a Position of ol and a Pick # smaller than 32?It is not neccessary to use all the tables.
|
SELECT team FROM table_name_2 WHERE grid = "11"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What team started in grid 11?It is not neccessary to use all the tables.
|
SELECT MIN(goal_s_) FROM table_28286776_12 WHERE club_s_ = "Ipswich Town"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many goals did the player from Ipswich town score?It is not neccessary to use all the tables.
|
SELECT Round FROM table WHERE Overall = 123
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What number round has an overall of 123?.It is not neccessary to use all the tables.
|
SELECT standing FROM table_2110959_1 WHERE pct__percentage = "0.769"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the standing in the season that the pct% was 0.769?It is not neccessary to use all the tables.
|
SELECT surface FROM table_name_30 WHERE outcome = "runner-up" AND score = "6–4, 6–3"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
On what Surface was the match with a Score of 6–4 6–3 and Runner-up Outcome played?It is not neccessary to use all the tables.
|
SELECT SUM(position) FROM table_name_44 WHERE points_1 > 23 AND goals_for = 77
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the sum of Position when Points 1 is greater than 23 and when Goals For is "77"?It is not neccessary to use all the tables.
|
SELECT host_team FROM table_name_33 WHERE visiting_team = "miami dolphins"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who was the host team when the Miami Dolphins were the visiting team?It is not neccessary to use all the tables.
|
SELECT MAX Enrollment FROM table
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What's the highest enrollment among the schools?.It is not neccessary to use all the tables.
|
SELECT first_elected FROM table_1342249_13 WHERE incumbent = "Leo E. Allen"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
In what year was Leo E. Allen first elected?It is not neccessary to use all the tables.
|
SELECT Unit FROM table WHERE Novelty = gen et sp nov
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What unit has gen et sp nov as the novelty?.It is not neccessary to use all the tables.
|
SELECT replaced_by FROM table_name_74 WHERE date_of_appointment = "13 may 2009"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the name of the person that was appointed on 13 May 2009?It is not neccessary to use all the tables.
|
SELECT match_points FROM table_name_8 WHERE points_against = "570"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the value of match points when the points for is 570?It is not neccessary to use all the tables.
|
SELECT COUNT(university_of_dublin) FROM table_name_45 WHERE labour_panel > 11
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the total University of Dublin value with a labour panel greater than 11?It is not neccessary to use all the tables.
|
SELECT COUNT Step 6 FROM table WHERE GS Grade = 11
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the total number of step 6 for 11 gs grade.It is not neccessary to use all the tables.
|
SELECT Name FROM table WHERE Average = 16.4
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Name with an Average that is 16.4?.It is not neccessary to use all the tables.
|
SELECT Control Trailers FROM table WHERE Motors = 52
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Tell me the control trailers for 52 motors.It is not neccessary to use all the tables.
|
SELECT COUNT(lost) FROM table_13015539_1 WHERE club = "Keighley Cougars"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many numbers are given for losses by the Keighley Cougars?It is not neccessary to use all the tables.
|
SELECT Club FROM table WHERE Founded > 1998
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which club was founded after 1998?.It is not neccessary to use all the tables.
|
SELECT Teleplay FROM table WHERE First Broadcast = april 10, 1981
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is Teleplay, when First Broadcast is April 10, 1981?.It is not neccessary to use all the tables.
|
SELECT COUNT(*) FROM trip AS T1 JOIN station AS T2 ON T1.end_station_id = T2.id WHERE T2.city <> "San Francisco"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many trips did not end in San Francisco?It is not neccessary to use all the tables.
|
SELECT COUNT New points FROM table WHERE Points defending = 70
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many new points were made while the points defending was 70?.It is not neccessary to use all the tables.
|
SELECT Filter FROM table WHERE Wavelength = 222mm (K-band)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the filter when the wavelength is 222mm (k-band)?.It is not neccessary to use all the tables.
|
SELECT successor FROM table_2159506_4 WHERE reason_for_change = "Died May 12, 1964"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who are all successors when reason for change is died May 12 1964?It is not neccessary to use all the tables.
|
SELECT MAX Attendance FROM table WHERE Loss = batista (4-5)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Attendance is the highest one that has a Loss of batista (4-5)?.It is not neccessary to use all the tables.
|
SELECT COUNT(us_viewers__millions_) FROM table_26914076_3 WHERE directed_by = "Rob Bailey"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many entries are there for u.s. viewers (millions) for the episode directed by rob bailey?It is not neccessary to use all the tables.
|
SELECT COUNT(scorecard) FROM table_19576091_1 WHERE date = "October 28"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many scorecards are there for the match on October 28?It is not neccessary to use all the tables.
|
SELECT AVG Crowd FROM table WHERE Away team score = 14.7 (91)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the average amount of spectators when the away team scored 14.7 (91)?.It is not neccessary to use all the tables.
|
SELECT COUNT Wins FROM table WHERE Draws < 5 AND Goals against > 49 AND Played > 30
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the total number of Wins, when Draws is less than 5, when Goals is greater than 49, and when Played is greater than 30?.It is not neccessary to use all the tables.
|
SELECT AVG Goals Scored FROM table WHERE Played < 34 AND Draw > 2
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the average goals scored when less than 34 were played and there were more than 2 draws?.It is not neccessary to use all the tables.
|
SELECT status FROM table_name_31 WHERE artist = "neil sedaka"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the status when the artist is Neil Sedaka?It is not neccessary to use all the tables.
|
SELECT "Race caller" FROM table_25082 WHERE "s Host" = 'Jim McKay' AND "Reporters" = 'Howard Cosell'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the race caller for jim mckay and howard cosellIt is not neccessary to use all the tables.
|
SELECT CID, DNO FROM Course ORDER BY Credits
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Return a scatter chart about the correlation between CID and DNO .It is not neccessary to use all the tables.
|
SELECT start FROM table_name_18 WHERE laps = 55
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the start of lap 55?It is not neccessary to use all the tables.
|
SELECT Attendance FROM table WHERE Date = 16 august 2008 AND Away = platense
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When Platense was the away team on 16 August 2008 how many people attended the game?.It is not neccessary to use all the tables.
|
SELECT COUNT Points FROM table WHERE Class = 250cc AND Year < 1978 AND Team = yamaha AND Wins > 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many points numbers had a class of 250cc, a year prior to 1978, Yamaha as a team, and where wins was more than 0?.It is not neccessary to use all the tables.
|
SELECT COUNT(year) FROM table_name_90 WHERE entrant = "red bull sauber petronas" AND points > 6
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What number of years did the red bull sauber petronas have greater than 6 points?It is not neccessary to use all the tables.
|
SELECT COUNT Monarch FROM table WHERE Heir = Yan Maw La Mon
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the number of monarchs that had Yan Maw la Mon as the heir?.It is not neccessary to use all the tables.
|
SELECT MAX(laps) FROM table_name_73 WHERE rank = "14"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the highest laps of the year when the rank was 14?It is not neccessary to use all the tables.
|
SELECT "Source language" FROM table_45720 WHERE "Meaning" = 'mahjong'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What language did the word that means mahjong first come from?It is not neccessary to use all the tables.
|
SELECT written_by FROM table_10718631_2 WHERE no_in_series = 94
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who wrote episode 94?It is not neccessary to use all the tables.
|
SELECT 2011 FROM table_name_64 WHERE 2010 = "olympic games"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the 2011 for 2010 of olympic gamesIt is not neccessary to use all the tables.
|
SELECT "Written by" FROM table_19961 WHERE "Directed by" = 'Will Waring' AND "No. in season" = '11'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who wrote episode 11, of which was directed by Will Waring?It is not neccessary to use all the tables.
|
SELECT "urban area" FROM table_203_74 WHERE "rank" = 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
which urban area is ranked first overall ?It is not neccessary to use all the tables.
|
SELECT First Day Cover Cancellation FROM table WHERE Theme = University of Saskatchewan
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the first day cover cancellation for the University of Saskatchewan themed stamp?.It is not neccessary to use all the tables.
|
SELECT Coinage metal FROM table WHERE KM number = S75
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the coinage metal for a KM number of S75?.It is not neccessary to use all the tables.
|
SELECT Tournament FROM table WHERE Ground = a AND Round = 8
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What tournament took place on Ground A with 8 rounds?.It is not neccessary to use all the tables.
|
SELECT date FROM table_25572118_1 WHERE winning_driver = "Fairuz Fauzy"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When fairuz fauzy is the winning driver what is the date?It is not neccessary to use all the tables.
|
SELECT Date FROM table WHERE Opponent in the final = kenneth carlsen
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Date of the match with Opponent in the final Kenneth Carlsen?.It is not neccessary to use all the tables.
|
SELECT partner FROM table_name_31 WHERE score = "6–3, 2–6, 6–3"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What Partner had a Score of 6 3, 2 6, 6 3?It is not neccessary to use all the tables.
|
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
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Show the names of pilots and fleet series of the aircrafts they have flied with in ascending order of the rank of the pilot.It is not neccessary to use all the tables.
|
SELECT COUNT Weight ( lb. ) FROM table WHERE Hometown = Pittsburgh, PA
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many different items appear in the weight column when Pittsburgh, PA is the hometown?.It is not neccessary to use all the tables.
|
SELECT MAX(year) FROM table_2190919_1 WHERE avg_start = "8.5"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the most recent year where the average start is 8.5?It is not neccessary to use all the tables.
|
SELECT Away team FROM table WHERE Date = 9 february 1988
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who was the away team on 9 February 1988?.It is not neccessary to use all the tables.
|
SELECT HIRE_DATE, SUM(EMPLOYEE_ID) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
For those employees who did not have any job in the past, visualize a bar chart about the distribution of hire_date and the sum of employee_id bin hire_date by time.It is not neccessary to use all the tables.
|
SELECT attendance FROM table_name_78 WHERE date = "september 7, 1953"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the attendance of the Browns' September 7 1953 game?It is not neccessary to use all the tables.
|
SELECT home_team AS score FROM table_name_93 WHERE away_team = "fitzroy"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the home team score when the away team was fitzroy?It is not neccessary to use all the tables.
|
SELECT tuesday FROM table_name_77 WHERE monday = "fox sports primetime"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is shown on Tuesday when Monday is showing Fox Sports Primetime?It is not neccessary to use all the tables.
|
SELECT MIN(viewers__millions_) FROM table_name_11 WHERE weekly_rank = "#3" AND share = 9 AND rating > 5
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which rating larger than 5 have the lowest amount of views in #3 rank with a share of 9?It is not neccessary to use all the tables.
|
SELECT Season FROM table WHERE Podiums = 0 AND Races = 1 AND Points = 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Season has 0 Podiums, 1 Race, and 0 Points?.It is not neccessary to use all the tables.
|
SELECT rank FROM table_name_13 WHERE finish = "14"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the rank with a 14 finish?It is not neccessary to use all the tables.
|
SELECT AVG Bronze FROM table WHERE Total < 4 AND Silver > 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Tell me the average bronze for total less than 4 and silver more than 0.It is not neccessary to use all the tables.
|
SELECT Elevator FROM table WHERE Elector = jacques d'euse
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What's the elevator of Jacques D'euse?.It is not neccessary to use all the tables.
|
SELECT MAX Col (m) FROM table WHERE Prominence (m) = 1,834 AND Elevation (m) > 1,834
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the highest col for the prominence of 1,834 meters and elevation higher than 1,834 meters?.It is not neccessary to use all the tables.
|
SELECT Points for FROM table WHERE Losing bonus = 2 AND Points against = 300
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many points did the club with a losing bonus of 2 and 300 points against have?.It is not neccessary to use all the tables.
|
SELECT Years FROM table WHERE Duration = 15 years AND Character = giulia poggi
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What are the years that have a duration of 15 years and giulia poggi as the character?.It is not neccessary to use all the tables.
|
SELECT Year FROM table WHERE Starts = 15
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the year for 15 starts.It is not neccessary to use all the tables.
|
SELECT date_from FROM table_name_46 WHERE moving_to = "birmingham city"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is Date From, when Moving To is 'Birmingham City'?It is not neccessary to use all the tables.
|
SELECT Label FROM table WHERE Format = digital download AND Edition(s) = bonus tracks version
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Tell me the label for digital download for bonus tracks version.It is not neccessary to use all the tables.
|
SELECT SUM(gold) FROM table_name_14 WHERE total < 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the sum of Gold, when Total is less than 1?It is not neccessary to use all the tables.
|
SELECT % change FROM table WHERE Population rank = 34
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When the population rank is 34, what the is % change?.It is not neccessary to use all the tables.
|
SELECT tie_no FROM table_name_96 WHERE home_team = "chelsea"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What's the tie number of Chelsea when they were home?It is not neccessary to use all the tables.
|
SELECT MAX(pick) FROM table_name_16 WHERE position = "wr" AND college = "michigan" AND overall > 255
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the maximum pick when WR was the position and Michigan the college and the overall greater than 255?It is not neccessary to use all the tables.
|
SELECT "Opponent" FROM table_47635 WHERE "Score" = '5:5'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
WHAT OPPONENT HAD A SCORE OF 5:5?It is not neccessary to use all the tables.
|
SELECT MAX(total_points_earned) FROM table_23662356_3 WHERE average = "29.0"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many total points were earned from the couple that averaged 29.0 points?It is not neccessary to use all the tables.
|
SELECT MAX(ends_won) FROM table_name_4 WHERE ends_lost = 47 AND shot__percentage < 73
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the highest number of ends won of 47 Ends Lost and a Shot % less than 73?It is not neccessary to use all the tables.
|
SELECT open_date FROM church GROUP BY open_date HAVING COUNT(*) >= 2
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Show the opening year in whcih at least two churches opened.It is not neccessary to use all the tables.
|
SELECT Team FROM table WHERE High points = Austin Daye (16)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who was the opponent in the game in which Austin Daye (16) did the most high points?.It is not neccessary to use all the tables.
|
SELECT COUNT Team FROM table WHERE Listed Owner(s) = Jeff Wyler
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many teams does Jeff Wyler own?.It is not neccessary to use all the tables.
|
SELECT Country FROM table WHERE Type = 6-month loan AND Moving from = lens
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the country for 6-month loan and moving from of lens.It is not neccessary to use all the tables.
|
SELECT MIN(grid) FROM table_name_10 WHERE laps = 21 AND manufacturer = "yamaha" AND time = "+18.802"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the lowest Grid, when Laps is 21, when Manufacturer is Yamaha, and when Time is +18.802?It is not neccessary to use all the tables.
|
SELECT district FROM table_1341568_24 WHERE elected = 1980
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What are the locations where the year of election is 1980?It is not neccessary to use all the tables.
|
SELECT Game site FROM table WHERE Date = October 16, 1977
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Where did the teams play on October 16, 1977?.It is not neccessary to use all the tables.
|
SELECT Team Classification FROM table WHERE General Classification = vladimir karpets AND Mountains Classification = no award
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Team classification has a General classification of Vladimir Karpets and a Mountains classification of No Award?.It is not neccessary to use all the tables.
|
SELECT color FROM table_name_19 WHERE thai_name = "วันพฤหัสบดี"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Show the Color which has a Thai name of วันพฤหัสบดี?It is not neccessary to use all the tables.
|
SELECT COUNT International freight FROM table WHERE Change = +0,2% AND International mail > 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How much international freight has a change of +0,2% with more than 0 international mail?.It is not neccessary to use all the tables.
|
SELECT "Fixtures Sec" FROM table_8090 WHERE "Season" = '2009–2010'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the Fixtures Sec which has a Season of 2009 2010It is not neccessary to use all the tables.
|
SELECT payment_method_code, COUNT(*) FROM Customers GROUP BY payment_method_code ORDER BY COUNT(*)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Return a bar chart on how many customers use each payment method?, and could you sort in asc by the Y-axis?It is not neccessary to use all the tables.
|
SELECT Directed by FROM table WHERE U.S. viewers (million) = 4.82
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who directed the episode with 4.82 million U.S. viewers?.It is not neccessary to use all the tables.
|
SELECT 11:00 am FROM table WHERE 12:30 pm = local programs
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the 11am program when Local Programs are on at 12:30am?.It is not neccessary to use all the tables.
|
SELECT U.S. viewers (million) FROM table WHERE Production code = 3T7051
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many U.S. viewers (million) are there for the episode whose Production code is 3T7051?.It is not neccessary to use all the tables.
|
SELECT Nationality FROM table WHERE Player = stromile swift
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the nationality of Stromile Swift?.It is not neccessary to use all the tables.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.