sql stringlengths 9 2.37k | table stringclasses 9
values | query stringlengths 51 503 |
|---|---|---|
SELECT COUNT 0–100km/h,s FROM table WHERE Fuel = diesel AND Torque = n·m (lb·ft) @1900 rpm AND Engine ID code(s) = agr/alh | CREATE TABLE INST, Here is a database schema( table schema); | How much 0–100km/h, s has a Fuel of diesel, and a Torque of n·m (lb·ft) @1900 rpm, and an Engine ID code(s) of agr/alh?.It is not neccessary to use all the tables. |
SELECT Total attendance FROM table WHERE Average attendance < 4850 AND Sport = rink hockey | CREATE TABLE INST, Here is a database schema( table schema); | What's the total attendance in rink hockey when the average attendance was smaller than 4850?.It is not neccessary to use all the tables. |
SELECT subscribers__2006___thousands_ FROM table_29395291_2 WHERE provider = "Glo Mobile" | CREATE TABLE INST, Here is a database schema( table schema); | How many subscribers in 2006 does Glo Mobile have?It is not neccessary to use all the tables. |
SELECT home FROM table_name_21 WHERE score = "1–2" AND date = "october 17" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Home team on October 17 with a Score of 1 2?It is not neccessary to use all the tables. |
SELECT total_points FROM table_20183474_1 WHERE draw = 3 | CREATE TABLE INST, Here is a database schema( table schema); | How many points did the song with a draw number 3 get?It is not neccessary to use all the tables. |
SELECT districts_of_bihar FROM table_19589113_5 WHERE sex_ratio_‡_1991 = 864 | CREATE TABLE INST, Here is a database schema( table schema); | What districts of Bihar have a sex ratio in 1991 of 864?It is not neccessary to use all the tables. |
SELECT MIN 25 to 29 FROM table | CREATE TABLE INST, Here is a database schema( table schema); | What is the minimum of 25 to 29?.It is not neccessary to use all the tables. |
SELECT rank FROM table_name_7 WHERE team = "tottenham hotspur" | CREATE TABLE INST, Here is a database schema( table schema); | Name the rank for tottenham hotspurIt is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Opponent in the final = ignasi villacampa | CREATE TABLE INST, Here is a database schema( table schema); | Name the date for opponent in the final being ignasi villacampa.It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Away team = north melbourne | CREATE TABLE INST, Here is a database schema( table schema); | What was the date of the game when North Melbourne was the away team?.It is not neccessary to use all the tables. |
SELECT COUNT(crowd) FROM table_name_80 WHERE away_team = "footscray" | CREATE TABLE INST, Here is a database schema( table schema); | What was the attendance when Footscray played as the away team?It is not neccessary to use all the tables. |
SELECT competition FROM table_name_64 WHERE nationality___opponent = "rosario" | CREATE TABLE INST, Here is a database schema( table schema); | Name the Nationality / Opponent of rosario?It is not neccessary to use all the tables. |
SELECT MIN("First elected") FROM table_36244 WHERE "Result" = 're-elected' AND "Incumbent" = 'sylvester c. smith' | CREATE TABLE INST, Here is a database schema( table schema); | What was the lowest re-elected result for Sylvester C. Smith?It is not neccessary to use all the tables. |
SELECT MAX(wins) FROM table_name_59 WHERE draws > 1 AND byes > 0 | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest number of wins when draws are larger than 1 and byes are larger than 0?It is not neccessary to use all the tables. |
SELECT Away team FROM table WHERE Home team = sheffield united | CREATE TABLE INST, Here is a database schema( table schema); | What is sheffield united's away team?.It is not neccessary to use all the tables. |
SELECT League Goals FROM table WHERE League Apps = 2 | CREATE TABLE INST, Here is a database schema( table schema); | How many league goals did Dunne have in the season where he had 2 league apps?.It is not neccessary to use all the tables. |
SELECT High assists FROM table WHERE High rebounds = Erick Dampier (8) | CREATE TABLE INST, Here is a database schema( table schema); | Who had the high assists while Erick Dampier (8) had the high rebounds?.It is not neccessary to use all the tables. |
SELECT Burglary FROM table WHERE Forcible rape = 1233 | CREATE TABLE INST, Here is a database schema( table schema); | How many burglary crimes were committed if the forcible rapes were 1233?.It is not neccessary to use all the tables. |
SELECT country FROM table_name_6 WHERE name = "paul runyan" | CREATE TABLE INST, Here is a database schema( table schema); | What country is Paul Runyan from?It is not neccessary to use all the tables. |
SELECT Wins FROM table WHERE Position = 7th | CREATE TABLE INST, Here is a database schema( table schema); | What are the wins for the 7th position?.It is not neccessary to use all the tables. |
SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = "CAL01 / 0091037137319" | CREATE TABLE INST, Here is a database schema( table schema); | how many times was the catalog number cal01 / 0091037137319?It is not neccessary to use all the tables. |
SELECT Season FROM table WHERE Round = 1. round AND Club = sporting cp | CREATE TABLE INST, Here is a database schema( table schema); | In what season did the Sporting CP Club have a 1. round?.It is not neccessary to use all the tables. |
SELECT SUM("Viewers [Live] (m)") FROM table_36231 WHERE "Share" > '5' | CREATE TABLE INST, Here is a database schema( table schema); | What is the sum of the live viewers for episodes with share over 5?It is not neccessary to use all the tables. |
SELECT DATEADD(month, DATEDIFF(month, 0, CreationDate), 0) AS mo, COUNT(b.Id) * 100.0 / COUNT(u.Id) AS PctInformed FROM Users AS u LEFT JOIN Badges AS b ON b.UserId = u.Id AND b.Name = 'Informed' AND b.Date < u.CreationDate + 30 WHERE DATEADD(month, DATEDIFF(month, 0, CreationDate), 0) > DATEADD(month, DATEDIFF(month, 0, GETDATE() - 1460), 0) AND DATEADD(month, DATEDIFF(month, 0, CreationDate), 0) < DATEADD(month, DATEDIFF(month, 0, GETDATE()), 0) GROUP BY DATEADD(month, DATEDIFF(month, 0, CreationDate), 0) ORDER BY DATEADD(month, DATEDIFF(month, 0, CreationDate), 0) | CREATE TABLE INST, Here is a database schema( table schema); | Percentage of users who earned the Informed badge (read FAQ/Tour) within 30 days of joining the site.It is not neccessary to use all the tables. |
SELECT T1.emp_lname, T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History' | CREATE TABLE INST, Here is a database schema( table schema); | What is the last name and office of the professor from the history department?It is not neccessary to use all the tables. |
SELECT format FROM table_name_51 WHERE catalog = "660-51-015" | CREATE TABLE INST, Here is a database schema( table schema); | What was the format for catalog 660-51-015?It is not neccessary to use all the tables. |
SELECT gdp__billion_us$_ FROM table_1307842_6 WHERE gdp_per_capita__us$_ = 18048 | CREATE TABLE INST, Here is a database schema( table schema); | What was the gdp of the country with a gdp per capita of $18048?It is not neccessary to use all the tables. |
SELECT MAX Points awarded (Platinum) FROM table WHERE Points awarded (Gold) = 6 | CREATE TABLE INST, Here is a database schema( table schema); | How many platinum points were awarded when 6 gold points were awarded?.It is not neccessary to use all the tables. |
SELECT date FROM table_name_36 WHERE away_team = "essendon" | CREATE TABLE INST, Here is a database schema( table schema); | What is the date of the game where Essendon is the away team?It is not neccessary to use all the tables. |
SELECT MIN(attendance) FROM table_name_38 WHERE home = "phoenix" AND record = "1–0–0" | CREATE TABLE INST, Here is a database schema( table schema); | What is the low attendance was based in phoenix with a Record of 1–0–0?It is not neccessary to use all the tables. |
SELECT opponent FROM table_14966537_1 WHERE date = "October 25, 1970" | CREATE TABLE INST, Here is a database schema( table schema); | Who was the team's opponent of October 25 1970?It is not neccessary to use all the tables. |
SELECT MIN Year FROM table WHERE Playoffs = did not qualify | CREATE TABLE INST, Here is a database schema( table schema); | Which year is the lowest one when the playoffs did not qualify?.It is not neccessary to use all the tables. |
SELECT teaching_language FROM table_12591022_2 WHERE focus = "Auditing" | CREATE TABLE INST, Here is a database schema( table schema); | what is teaching language where the focus is auditing?It is not neccessary to use all the tables. |
SELECT MIN Game FROM table WHERE Location/Attendance = alexander memorial coliseum AND Date = october 16 | CREATE TABLE INST, Here is a database schema( table schema); | What is the least game that was played in Alexander Memorial Coliseum on October 16?.It is not neccessary to use all the tables. |
SELECT COUNT Total FROM table WHERE Vuelta = 1 AND Tour > 7 | CREATE TABLE INST, Here is a database schema( table schema); | How many podiums associated with 1 vuelta and over 7 tours?.It is not neccessary to use all the tables. |
SELECT Fluency FROM table WHERE Type of aphasia = Transcortical sensory aphasia | CREATE TABLE INST, Here is a database schema( table schema); | Name the fluency for transcortical sensory aphasia.It is not neccessary to use all the tables. |
SELECT Surface FROM table WHERE Tournament = olbia | CREATE TABLE INST, Here is a database schema( table schema); | Which Surface has a Tournament of olbia?.It is not neccessary to use all the tables. |
SELECT Coach FROM table WHERE Dudley Tuckey Medal = Ben Howlett | CREATE TABLE INST, Here is a database schema( table schema); | who is the coach where dudley tuckey medal is ben howlett.It is not neccessary to use all the tables. |
SELECT Original name FROM table WHERE English name = South Bogor | CREATE TABLE INST, Here is a database schema( table schema); | What is the original name of the district with the current English name of South Bogor?.It is not neccessary to use all the tables. |
SELECT High school FROM table WHERE Utah Mr. Basketball = tyler haws AND Year = 2009 | CREATE TABLE INST, Here is a database schema( table schema); | Where did Tyler Haws, 2009 Utah Mr. Basketball, go to high school?.It is not neccessary to use all the tables. |
SELECT AVG(crowd) FROM table_name_43 WHERE venue = "glenferrie oval" | CREATE TABLE INST, Here is a database schema( table schema); | What was the average crowd size of games held at Glenferrie Oval?It is not neccessary to use all the tables. |
SELECT SUM(a_score) FROM table_name_1 WHERE b_score > 9.15 AND position = "2nd" | CREATE TABLE INST, Here is a database schema( table schema); | What is the A score when the B score is more than 9.15 and the gymnast was in the 2nd position?It is not neccessary to use all the tables. |
SELECT COUNT(high_rebounds) FROM table_23248940_10 WHERE record = "34-32" | CREATE TABLE INST, Here is a database schema( table schema); | How many people had high rebounds during the game with a record of 34-32?It is not neccessary to use all the tables. |
SELECT 1st leg FROM table WHERE Team #1 = asfa rabat | CREATE TABLE INST, Here is a database schema( table schema); | Tell me the 1st leg for asfa rabat.It is not neccessary to use all the tables. |
SELECT genre FROM table_name_9 WHERE year > 2009 AND platform_s_ = "playstation 3" | CREATE TABLE INST, Here is a database schema( table schema); | What is the genre for 2009 on Playstation 3?It is not neccessary to use all the tables. |
SELECT name FROM table_24565004_15 WHERE goals¹ = 4 | CREATE TABLE INST, Here is a database schema( table schema); | List the player that scored 4 times.It is not neccessary to use all the tables. |
SELECT wounded FROM table_name_79 WHERE complement = "83 off 9 men" | CREATE TABLE INST, Here is a database schema( table schema); | How many were Wounded while in a Unit with a Complement of 83 off 9 Men?It is not neccessary to use all the tables. |
SELECT Reason FROM table WHERE Electorate = Peninsula | CREATE TABLE INST, Here is a database schema( table schema); | When peninsula is the electorate what is the reason?.It is not neccessary to use all the tables. |
SELECT Batsmen FROM table WHERE Location = the brit oval | CREATE TABLE INST, Here is a database schema( table schema); | Who was the batsmen at the Brit Oval location?.It is not neccessary to use all the tables. |
SELECT Laps FROM table WHERE Driver = jackie oliver | CREATE TABLE INST, Here is a database schema( table schema); | How many laps did Jackie Oliver do?.It is not neccessary to use all the tables. |
SELECT Model number FROM table WHERE Printer ports = Three Parallel | CREATE TABLE INST, Here is a database schema( table schema); | What is the number of the model with three parallel printer ports?.It is not neccessary to use all the tables. |
SELECT Tournament location FROM table WHERE Winners share ($) = 7000 | CREATE TABLE INST, Here is a database schema( table schema); | What is the location of the tournament that the share of winning is 7000?.It is not neccessary to use all the tables. |
SELECT Viewers (millions) FROM table WHERE Rating = 2.1 | CREATE TABLE INST, Here is a database schema( table schema); | Name the viewers for 2.1 rating.It is not neccessary to use all the tables. |
SELECT 2001 FROM table_name_83 WHERE 2005 = "4r" | CREATE TABLE INST, Here is a database schema( table schema); | What is the 2001 tournament with a 2005 4r?It is not neccessary to use all the tables. |
SELECT series_4 FROM table_name_27 WHERE seat = 1 | CREATE TABLE INST, Here is a database schema( table schema); | What shows for series 4 when the seat shows 1?It is not neccessary to use all the tables. |
SELECT Owner FROM table WHERE Branding = gx94 | CREATE TABLE INST, Here is a database schema( table schema); | Who is the owner of the branding gx94?.It is not neccessary to use all the tables. |
SELECT Score FROM table WHERE Away team = brighton & hove albion | CREATE TABLE INST, Here is a database schema( table schema); | What was the score when the away team was brighton & hove albion?.It is not neccessary to use all the tables. |
SELECT AVG(height__m_) FROM table_name_45 WHERE class = "hewitt" AND prom__m_ < 86 AND peak = "gragareth" | CREATE TABLE INST, Here is a database schema( table schema); | What is the average height for hewitt class with prom less than 86 and a Peak of gragareth?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 lab.label = "Ethanol" | CREATE TABLE INST, Here is a database schema( table schema); | how many patients whose lab test name is ethanol?It is not neccessary to use all the tables. |
SELECT score FROM table_name_17 WHERE record = "73-83" | CREATE TABLE INST, Here is a database schema( table schema); | Name the score which has record of 73-83It is not neccessary to use all the tables. |
SELECT MAX Total FROM table WHERE Last = september 1970 | CREATE TABLE INST, Here is a database schema( table schema); | What is the greatest total when the last was September 1970?.It is not neccessary to use all the tables. |
SELECT party FROM table_1342256_5 WHERE incumbent = "Clyde T. Ellis" | CREATE TABLE INST, Here is a database schema( table schema); | What party does clyde t. ellis represent?It is not neccessary to use all the tables. |
SELECT 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 = 7241)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'admit wt' AND d_items.linksto = 'chartevents') AND STRFTIME('%y-%m', chartevents.charttime) = '2103-05' ORDER BY chartevents.charttime DESC LIMIT 1 | CREATE TABLE INST, Here is a database schema( table schema); | how much was patient 7241's body weight last measured in 05/2103?It is not neccessary to use all the tables. |
SELECT Champion FROM table WHERE Attendance = 70,000 | CREATE TABLE INST, Here is a database schema( table schema); | Who was the champion when the attendance was 70,000?.It is not neccessary to use all the tables. |
SELECT Location Attendance FROM table WHERE Score = w 86–77 (ot) | CREATE TABLE INST, Here is a database schema( table schema); | what is the location attendance when the score is w 86–77 (ot)?.It is not neccessary to use all the tables. |
SELECT Race name FROM table WHERE Year = 1946 AND Winner = bill holland | CREATE TABLE INST, Here is a database schema( table schema); | Which race did Bill Holland win in 1946?.It is not neccessary to use all the tables. |
SELECT date FROM table_17288825_6 WHERE high_assists = "Tracy McGrady (8)" | CREATE TABLE INST, Here is a database schema( table schema); | When tracy mcgrady (8) is leading in assists what is the date?It is not neccessary to use all the tables. |
SELECT "Format" FROM table_47197 WHERE "Region" = 'united kingdom' | CREATE TABLE INST, Here is a database schema( table schema); | Which format has a region of united kingdom?It is not neccessary to use all the tables. |
SELECT COUNT(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = "United Airlines" AND T2.SourceAirport = "AHD" | CREATE TABLE INST, Here is a database schema( table schema); | How many 'United Airlines' flights depart from Airport 'AHD'?It is not neccessary to use all the tables. |
SELECT SUM(attendance) FROM table_name_45 WHERE leading_scorer = "stephen jackson" AND date = "12/17" | CREATE TABLE INST, Here is a database schema( table schema); | How many attended the game on 12/17 with stephen jackson as the leading scorer?It is not neccessary to use all the tables. |
SELECT MIN(crowd) FROM table_name_21 WHERE away_team = "collingwood" | CREATE TABLE INST, Here is a database schema( table schema); | WHAT WAS COLLINGWOOD'S LOWEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM?It is not neccessary to use all the tables. |
SELECT MAX(females_rank) FROM table_name_2 WHERE females___percentage_ > 53 AND hiv_awareness__males_percentage_ < 89 AND state = "odisha" | CREATE TABLE INST, Here is a database schema( table schema); | Which Females Rank is the highest one that has Females (%) larger than 53 and an HIV awareness (males%) smaller than 89 and a State of odisha?It is not neccessary to use all the tables. |
SELECT COUNT(opponent) FROM table_18894744_6 WHERE record = "17-6" | CREATE TABLE INST, Here is a database schema( table schema); | How many opponents was a game with a record 17-6 played against?It is not neccessary to use all the tables. |
SELECT COUNT(round) FROM table_name_14 WHERE college = "nebraska" AND overall > 40 | CREATE TABLE INST, Here is a database schema( table schema); | What is the sum number of round with Nebraska as the college and the overall greater than 40?It is not neccessary to use all the tables. |
SELECT Away Team FROM table WHERE Match No. = 9 | CREATE TABLE INST, Here is a database schema( table schema); | What is the away team of match 9?.It is not neccessary to use all the tables. |
SELECT margin_of_victory FROM table_name_8 WHERE tournament = "gna/glendale federal classic" | CREATE TABLE INST, Here is a database schema( table schema); | What is the margin of victory of the gna/glendale federal classic?It is not neccessary to use all the tables. |
SELECT AVG(events) FROM table_name_11 WHERE rank < 2 AND wins < 5 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average events where the rank is smaller than 2 and wins are smaller than 5?It is not neccessary to use all the tables. |
SELECT COUNT(points) FROM table_name_28 WHERE games < 5 | CREATE TABLE INST, Here is a database schema( table schema); | What is the total points with less than 5 games?It is not neccessary to use all the tables. |
SELECT AVG(played) FROM table_name_37 WHERE points < 8 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average played for less than 8 points?It is not neccessary to use all the tables. |
SELECT tournament FROM table_name_42 WHERE 2011 = "qf" AND 2012 = "sf" | CREATE TABLE INST, Here is a database schema( table schema); | what is the tournament when 2011 is qf and 2012 is sf?It is not neccessary to use all the tables. |
SELECT AVG(time) FROM table_name_8 WHERE nationality = "united states" AND lane < 5 | CREATE TABLE INST, Here is a database schema( table schema); | The swimmer from the United States in a lane less than 5 had what as the average time?It is not neccessary to use all the tables. |
SELECT MIN(average) FROM table_name_15 WHERE swimsuit < 8.966 AND state = "west virginia" AND evening_gown < 8.711 | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest average that has a swimsuit less than 8.966 for west virginia and an evening gown less than 8.711?It is not neccessary to use all the tables. |
SELECT Home team score FROM table WHERE Home team = footscray | CREATE TABLE INST, Here is a database schema( table schema); | How many points does footscray score as the home side?.It is not neccessary to use all the tables. |
SELECT 意義_meaning FROM table_1912713_2 WHERE 性情_personality = "Gentle" | CREATE TABLE INST, Here is a database schema( table schema); | What is the meaning of a gentle personality?It is not neccessary to use all the tables. |
SELECT Home team FROM table WHERE Away team = footscray | CREATE TABLE INST, Here is a database schema( table schema); | Who was the home team when the away team was Footscray?.It is not neccessary to use all the tables. |
SELECT Location FROM table WHERE Team Nickname = Yellow Jackets | CREATE TABLE INST, Here is a database schema( table schema); | Name the location for yellow jackets.It is not neccessary to use all the tables. |
SELECT xenon FROM table_name_25 WHERE neon = "20.1797(6)" | CREATE TABLE INST, Here is a database schema( table schema); | Which Xenon has Neon of 20.1797(6)?It is not neccessary to use all the tables. |
SELECT 1996 FROM table_name_45 WHERE 1987 = "nme" AND tournament = "monte carlo" | CREATE TABLE INST, Here is a database schema( table schema); | What Tournament of monte carlo had 1996 and a 1987 of nme?It is not neccessary to use all the tables. |
SELECT Venue FROM table WHERE Captain = Luke Blackwell | CREATE TABLE INST, Here is a database schema( table schema); | Which venue did Luke Blackwell serve as captain?.It is not neccessary to use all the tables. |
SELECT constellation FROM table_name_71 WHERE date_sent = "september 4, 2001" AND distance___ly__ < 57.4 | CREATE TABLE INST, Here is a database schema( table schema); | What is Constellation, when Date Sent is 'September 4, 2001', and when Distance ( ly ) is less than 57.4?It is not neccessary to use all the tables. |
SELECT SUM(2 AS nd_pl) FROM table_name_14 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 MAX(attendance) FROM table_name_15 WHERE game < 1 | CREATE TABLE INST, Here is a database schema( table schema); | Tell me the most attendance for game less than 1It is not neccessary to use all the tables. |
SELECT MIN No. in season FROM table | CREATE TABLE INST, Here is a database schema( table schema); | What is the earliest numbered episode of the season?.It is not neccessary to use all the tables. |
SELECT segment_d FROM table_15187735_11 WHERE segment_a = "Microphones" | CREATE TABLE INST, Here is a database schema( table schema); | In the episode where segment a is microphones what is segment d?It is not neccessary to use all the tables. |
SELECT Guest(s) FROM table WHERE Ratings = 1.44m | CREATE TABLE INST, Here is a database schema( table schema); | who guest starred on the episode with a 1.44m rating.It is not neccessary to use all the tables. |
SELECT home_team AS score FROM table_name_52 WHERE home_team = "st kilda" | CREATE TABLE INST, Here is a database schema( table schema); | What is the home team score for St Kilda?It is not neccessary to use all the tables. |
SELECT MIN Points FROM table WHERE Entrant = stp march engineering | CREATE TABLE INST, Here is a database schema( table schema); | Which Entrant of stp march engineering scored the lowest points?.It is not neccessary to use all the tables. |
SELECT Description FROM table WHERE Year of Issue = 1983 AND Weight = 3.50grams | CREATE TABLE INST, Here is a database schema( table schema); | Which Description has a Year of Issue of 1983, and a Weight of 3.50grams?.It is not neccessary to use all the tables. |
SELECT COUNT Archive FROM table WHERE Run time = 24:06 | CREATE TABLE INST, Here is a database schema( table schema); | How many episodes in history have a running time of 24:06?.It is not neccessary to use all the tables. |
SELECT SUM Markatal FROM table WHERE Inhabitants per km² < 13 AND Area (in km²) = 27 | CREATE TABLE INST, Here is a database schema( table schema); | What is the sum of Markatal, when Inhabitants Per Km² is less than 13, and when Area (in Km²) is 27?.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.