answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT geust FROM table_name_65 WHERE result = "0:1" | What is the geust with a 0:1 result? | CREATE TABLE table_name_65 (geust VARCHAR, result VARCHAR) |
SELECT crowd FROM table_name_35 WHERE venue = "brunswick street oval" | How large was the crowd at Brunswick Street Oval? | CREATE TABLE table_name_35 (crowd VARCHAR, venue VARCHAR) |
SELECT MAX(crowd) FROM table_name_24 WHERE home_team = "fitzroy" | What is the highest crowd when fitzroy is the home team? | CREATE TABLE table_name_24 (crowd INTEGER, home_team VARCHAR) |
SELECT date_successor_seated FROM table_224837_4 WHERE reason_for_change = "Delegate seat established" | Name the date successor seated for delegate seat established | CREATE TABLE table_224837_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR) |
SELECT score FROM table_name_52 WHERE attendance = "4 679" | What is the Score that has an Attendance of 4 679? | CREATE TABLE table_name_52 (score VARCHAR, attendance VARCHAR) |
SELECT tournament FROM table_name_60 WHERE opponent = "guillermo carry" | Which tournament did the opponent Guillermo Carry play? | CREATE TABLE table_name_60 (tournament VARCHAR, opponent VARCHAR) |
SELECT SUM(rank) FROM table_name_71 WHERE player = "delyone borden" AND wickets > 15 | What is the total rank for player Delyone Borden with more than 15 wickets? | CREATE TABLE table_name_71 (rank INTEGER, player VARCHAR, wickets VARCHAR) |
SELECT rowers FROM table_name_6 WHERE country = "united states" | Who are the rowers from the United States? | CREATE TABLE table_name_6 (rowers VARCHAR, country VARCHAR) |
SELECT website FROM table_11365528_2 WHERE head_coach = "Steve Radoslavic" | The head coach, steve radoslavic, is related to which websites? | CREATE TABLE table_11365528_2 (website VARCHAR, head_coach VARCHAR) |
SELECT T2.Country, T1.Year FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID | Please list the countries and years of film market estimations. | CREATE TABLE film_market_estimation (Year VARCHAR, Market_ID VARCHAR); CREATE TABLE market (Country VARCHAR, Market_ID VARCHAR) |
SELECT college FROM table_12165999_1 WHERE player = "Dennis Byrd" | Which college did Dennis Byrd come from? | CREATE TABLE table_12165999_1 (college VARCHAR, player VARCHAR) |
SELECT interview_subject FROM table_1566852_7 WHERE cover_model = "Kara Monaco" | IN THE ISSUE WITH KARA MONACO ON THE COVER, WHO WAS THE INTERVIEW SUBJECT? | CREATE TABLE table_1566852_7 (interview_subject VARCHAR, cover_model VARCHAR) |
SELECT COUNT(year) FROM table_name_30 WHERE competition = "anugerah bintang popular berita harian 23" | What was the year that had Anugerah Bintang Popular Berita Harian 23 as competition? | CREATE TABLE table_name_30 (year VARCHAR, competition VARCHAR) |
SELECT points FROM table_14058433_3 WHERE tries_for = "83" | How many points were made when the tries for was 83? | CREATE TABLE table_14058433_3 (points VARCHAR, tries_for VARCHAR) |
SELECT studio FROM table_27303975_2 WHERE title = "Super Callanetics" | Name the studio for super callanetics | CREATE TABLE table_27303975_2 (studio VARCHAR, title VARCHAR) |
SELECT year FROM table_name_58 WHERE score = "6–2, 2–6, 5–7, 7–6, 8–6" | What year had a score of 6–2, 2–6, 5–7, 7–6, 8–6? | CREATE TABLE table_name_58 (year VARCHAR, score VARCHAR) |
SELECT winning_driver FROM table_19850806_3 WHERE rd = "3" | Who is the winning driver when rd. is 3? | CREATE TABLE table_19850806_3 (winning_driver VARCHAR, rd VARCHAR) |
SELECT drawn FROM table_name_12 WHERE points_difference = "-210" | What is the number of draws for the team with a points difference of -210? | CREATE TABLE table_name_12 (drawn VARCHAR, points_difference VARCHAR) |
SELECT commodity FROM table_21109892_1 WHERE value__int_$1000_ = 409566 | when the value (int $1000) is 409566, what is the commodity? | CREATE TABLE table_21109892_1 (commodity VARCHAR, value__int_$1000_ VARCHAR) |
SELECT branding FROM table_name_80 WHERE owner = "canadian broadcasting corporation" AND frequency = "fm 97.7" | What is the branding of the FM 97.7 station owned by the Canadian Broadcasting Corporation? | CREATE TABLE table_name_80 (branding VARCHAR, owner VARCHAR, frequency VARCHAR) |
SELECT MIN(pick) FROM table_name_23 WHERE round > 12 AND position = "kicker" | What was the lowest pick for the kicker after round 12? | CREATE TABLE table_name_23 (pick INTEGER, round VARCHAR, position VARCHAR) |
SELECT game_site FROM table_14875671_1 WHERE opponent = "Buffalo Bills" | What was the site of the game against Buffalo Bills ? | CREATE TABLE table_14875671_1 (game_site VARCHAR, opponent VARCHAR) |
SELECT tms FROM table_name_59 WHERE season = "2013" | which Tms has a Season of 2013? | CREATE TABLE table_name_59 (tms VARCHAR, season VARCHAR) |
SELECT date FROM table_name_96 WHERE score = "3–3" AND away_team = "barnet" | What date was the score 3–3, and away team was Barnet? | CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR, away_team VARCHAR) |
SELECT place FROM table_14977252_2 WHERE professional_jury = 5 | Name the place of the jury of 5 | CREATE TABLE table_14977252_2 (place VARCHAR, professional_jury VARCHAR) |
SELECT MIN(round) FROM table_name_66 WHERE pick = "9 (via hamilton)" | What is the lowest Round, when Pick is 9 (via Hamilton)? | CREATE TABLE table_name_66 (round INTEGER, pick VARCHAR) |
SELECT AVG(age) FROM Student WHERE StuID IN (SELECT T1.StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "food" INTERSECT SELECT T1.StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "animal") | Find the average age of the students who have allergies with food and animal types. | CREATE TABLE Student (age INTEGER, StuID VARCHAR); CREATE TABLE Allergy_Type (Allergy VARCHAR, allergytype VARCHAR); CREATE TABLE Has_allergy (StuID VARCHAR, Allergy VARCHAR) |
SELECT COUNT(high_points) FROM table_30087032_5 WHERE date = "May 15" | How many different high points results are there for the game on May 15? | CREATE TABLE table_30087032_5 (high_points VARCHAR, date VARCHAR) |
SELECT first_elected FROM table_name_17 WHERE party = "alp" AND state = "qld" | What is the year First Elected, when the Party is Alp, and when the State is qld? | CREATE TABLE table_name_17 (first_elected VARCHAR, party VARCHAR, state VARCHAR) |
SELECT school FROM table_name_18 WHERE year_left = 1966 | what is the school that left in 1966? | CREATE TABLE table_name_18 (school VARCHAR, year_left VARCHAR) |
SELECT erp__analog__digital_ FROM table_name_6 WHERE transmitter_location = "mount goonaneman" | What is the ERP for the Mount Goonaneman transmitter? | CREATE TABLE table_name_6 (erp__analog__digital_ VARCHAR, transmitter_location VARCHAR) |
SELECT opponent FROM table_name_45 WHERE result = "win" AND date = "march 17" | Which Opponent has a Result of win, and a Date of march 17? | CREATE TABLE table_name_45 (opponent VARCHAR, result VARCHAR, date VARCHAR) |
SELECT venue FROM table_name_36 WHERE opponent = "at new york giants" | Opponent of at new york giants had what venue? | CREATE TABLE table_name_36 (venue VARCHAR, opponent VARCHAR) |
SELECT MIN(rank) FROM table_name_46 WHERE attempts = 319 AND year > 2000 | What is the lowest Rank when Attempts was 319, and the Year was larger than 2000? | CREATE TABLE table_name_46 (rank INTEGER, attempts VARCHAR, year VARCHAR) |
SELECT rnd FROM table_24865763_2 WHERE lmp2_winning_team = "Mike Newton Thomas Erdos Ben Collins" | In what round did Mike Newton Thomas Erdos Ben Collins won the LMP2? | CREATE TABLE table_24865763_2 (rnd VARCHAR, lmp2_winning_team VARCHAR) |
SELECT position FROM table_name_52 WHERE time = 20.66 | What Position has a Time of 20.66? | CREATE TABLE table_name_52 (position VARCHAR, time VARCHAR) |
SELECT usage FROM table_name_60 WHERE engine = "f136e" | What is the usage for the f136e engline? | CREATE TABLE table_name_60 (usage VARCHAR, engine VARCHAR) |
SELECT height FROM table_20785990_2 WHERE home_town = "Gulfport, MS" | What is the height of the player from Gulfport, MS? | CREATE TABLE table_20785990_2 (height VARCHAR, home_town VARCHAR) |
SELECT AVG(revenue), MAX(revenue), SUM(revenue) FROM manufacturers | What are the average, maximum and total revenues of all companies? | CREATE TABLE manufacturers (revenue INTEGER) |
SELECT MAX(of_which_currently_forests), _km² FROM table_19242_5 WHERE land_formation = "Middle Prut Valley" | When middle prut valley is the land formation what is the highest of which currently forests, km² ? | CREATE TABLE table_19242_5 (_km² VARCHAR, of_which_currently_forests INTEGER, land_formation VARCHAR) |
SELECT city_of_license FROM table_name_17 WHERE facility_id > 150833 | Which city has a facility ID greater than 150833? | CREATE TABLE table_name_17 (city_of_license VARCHAR, facility_id INTEGER) |
SELECT loser FROM table_name_72 WHERE sport = "hockey" | What losing team plays hockey? | CREATE TABLE table_name_72 (loser VARCHAR, sport VARCHAR) |
SELECT MIN(matches_won) FROM table_29302711_12 WHERE matches_played = 23 | how many matches did the player that played 23 matches win | CREATE TABLE table_29302711_12 (matches_won INTEGER, matches_played VARCHAR) |
SELECT COUNT(purse___) AS $__ FROM table_name_41 WHERE champion = "sherri steinhauer" AND venue = "woburn golf and country club" | What was the purse when Sherri Steinhauer was champion at Woburn Golf and Country Club? | CREATE TABLE table_name_41 (purse___ VARCHAR, champion VARCHAR, venue VARCHAR) |
SELECT AVG(wins) FROM table_name_8 WHERE team = "norton" AND year = 1966 AND points = 8 | What is the mean number of wins for the norton team in 1966, when there are 8 points? | CREATE TABLE table_name_8 (wins INTEGER, points VARCHAR, team VARCHAR, year VARCHAR) |
SELECT hometown FROM table_name_79 WHERE games_started = "4" | Games started of 4 is in what hometown? | CREATE TABLE table_name_79 (hometown VARCHAR, games_started VARCHAR) |
SELECT country FROM table_name_18 WHERE place = "t8" AND score = 71 - 71 - 71 = 213 | What country placed t8 and scored 71-71-71=213? | CREATE TABLE table_name_18 (country VARCHAR, place VARCHAR, score VARCHAR) |
SELECT f_laps FROM table_name_77 WHERE points = "27" | Which F/Laps have 27 Points? | CREATE TABLE table_name_77 (f_laps VARCHAR, points VARCHAR) |
SELECT played FROM table_1676073_12 WHERE points = "48" | How many games played for the team with 48 points? | CREATE TABLE table_1676073_12 (played VARCHAR, points VARCHAR) |
SELECT COUNT(poles) FROM table_20396_1 WHERE points = "78" | How many poles had 78 points? | CREATE TABLE table_20396_1 (poles VARCHAR, points VARCHAR) |
SELECT modern_german__standard_wording_ FROM table_181240_1 WHERE writing_system_2__german_based_ = "wie mir die vergewwe wu uns schuldich sinn." | What is the modern german standard wording for the german based writing system 2 phrase "wie mir die vergewwe wu uns schuldich sinn."? | CREATE TABLE table_181240_1 (modern_german__standard_wording_ VARCHAR, writing_system_2__german_based_ VARCHAR) |
SELECT COUNT(played) FROM table_12886178_5 WHERE tries_for = "50" | How many clubs have tries for count of 50? | CREATE TABLE table_12886178_5 (played VARCHAR, tries_for VARCHAR) |
SELECT callsign FROM table_17487395_1 WHERE branding = "Mom's Radio 101.5 Tacloban" | What is the call sign for the station that uses the branding, mom's radio 101.5 tacloban? | CREATE TABLE table_17487395_1 (callsign VARCHAR, branding VARCHAR) |
SELECT series FROM table_name_46 WHERE season < 2009 | Which series has a season prior to 2009? | CREATE TABLE table_name_46 (series VARCHAR, season INTEGER) |
SELECT swimsuit FROM table_name_19 WHERE interview = "8.626 (5)" | what is the swimsuit score when the interview score is 8.626 (5)? | CREATE TABLE table_name_19 (swimsuit VARCHAR, interview VARCHAR) |
SELECT MAX(crowd) FROM table_name_19 WHERE home_team = "fitzroy" | What was the largest crowd where the home team was Fitzroy? | CREATE TABLE table_name_19 (crowd INTEGER, home_team VARCHAR) |
SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) EXCEPT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 30) | Find the name of the person who has friends with age above 40 but not under age 30? | CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR) |
SELECT hometown FROM table_28180840_15 WHERE name_name_of_act = "Zhou Jinsong" | What is the name of the zhou jinsong's hometown? | CREATE TABLE table_28180840_15 (hometown VARCHAR, name_name_of_act VARCHAR) |
SELECT catalogue FROM table_name_31 WHERE region = "japan" | Which catalogue is from Japan? | CREATE TABLE table_name_31 (catalogue VARCHAR, region VARCHAR) |
SELECT date FROM table_name_69 WHERE tournament = "milan , italy" | Which Date has a Tournament of milan , italy? | CREATE TABLE table_name_69 (date VARCHAR, tournament VARCHAR) |
SELECT high_rebounds FROM table_23274514_7 WHERE record = "17-33" | Name the high rebounds for 17-33 | CREATE TABLE table_23274514_7 (high_rebounds VARCHAR, record VARCHAR) |
SELECT T2.school_name FROM endowment AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id GROUP BY T1.school_id HAVING SUM(T1.amount) <= 10 | List all the names of schools with an endowment amount smaller than or equal to 10. | CREATE TABLE school (school_name VARCHAR, school_id VARCHAR); CREATE TABLE endowment (school_id VARCHAR, amount INTEGER) |
SELECT final__bronze_medal_match FROM table_18602462_21 WHERE event = "Mixed Quad Singles" | When mixed quad singles is the event what is the final/bronze medal match? | CREATE TABLE table_18602462_21 (final__bronze_medal_match VARCHAR, event VARCHAR) |
SELECT home_team AS score FROM table_name_37 WHERE away_team = "richmond" | When richmond was the Away team what was the score of the home team? | CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR) |
SELECT COUNT(french) FROM table_2077192_2 WHERE central_southern_calabrian = "zinnapòtamu" | How many French words does zinnapòtamu in Central-Southern Calabrian translate to? | CREATE TABLE table_2077192_2 (french VARCHAR, central_southern_calabrian VARCHAR) |
SELECT Total_Points FROM gymnast ORDER BY Floor_Exercise_Points DESC | List the total points of gymnasts in descending order of floor exercise points. | CREATE TABLE gymnast (Total_Points VARCHAR, Floor_Exercise_Points VARCHAR) |
SELECT parallel_bars FROM table_18662026_1 WHERE rings = "60.500" | If the rings are 60.500, what is the parallel bars number? | CREATE TABLE table_18662026_1 (parallel_bars VARCHAR, rings VARCHAR) |
SELECT round_of_32 FROM table_10722506_6 WHERE conference = "conference USA" | Name the round of 32 in conference usa | CREATE TABLE table_10722506_6 (round_of_32 VARCHAR, conference VARCHAR) |
SELECT COUNT(cultural_and_educational_panel) FROM table_name_9 WHERE labour_panel > 5 AND industrial_and_commercial_panel > 9 | Which Cultural and Educational Panel has a Labour Panel larger than 5, and an Industrial and Commercial Panel larger than 9? | CREATE TABLE table_name_9 (cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, industrial_and_commercial_panel VARCHAR) |
SELECT player FROM table_name_49 WHERE round = 2 AND school_club_team = "xavier" | What is Player, when Round is "2", and when School/Club Team is "Xavier"? | CREATE TABLE table_name_49 (player VARCHAR, round VARCHAR, school_club_team VARCHAR) |
SELECT COUNT(position) FROM table_14649522_1 WHERE player = "Robert Brooks" | What position does Robert Brooks play? | CREATE TABLE table_14649522_1 (position VARCHAR, player VARCHAR) |
SELECT nickname FROM table_262508_1 WHERE institution = "Briar Cliff University" | What is Briar Cliff University's nickname? | CREATE TABLE table_262508_1 (nickname VARCHAR, institution VARCHAR) |
SELECT annual_change__percentage_of_gdp__2012_ FROM table_1598533_8 WHERE gdp__percentage_of_eu__2012_ = "20.5%" | What is the annual change of GDP with a 20.5% GDP of EU in 2012? | CREATE TABLE table_1598533_8 (annual_change__percentage_of_gdp__2012_ VARCHAR, gdp__percentage_of_eu__2012_ VARCHAR) |
SELECT round FROM table_name_39 WHERE opponent = "joe lauzon" | In what round did opponent Joe Lauzon play? | CREATE TABLE table_name_39 (round VARCHAR, opponent VARCHAR) |
SELECT counties_represented FROM table_14009909_1 WHERE district = "12.1 12A" | What are the counties represented in District 12.1 12a? | CREATE TABLE table_14009909_1 (counties_represented VARCHAR, district VARCHAR) |
SELECT COUNT(high_points) FROM table_23186738_6 WHERE record = "5-17" | Name the number of high points for record 5-17 | CREATE TABLE table_23186738_6 (high_points VARCHAR, record VARCHAR) |
SELECT AVG(draw) FROM table_name_15 WHERE points = 42 AND played < 36 | What's the draw that's played less than 36 and has 42 points? | CREATE TABLE table_name_15 (draw INTEGER, points VARCHAR, played VARCHAR) |
SELECT city FROM table_16046689_29 WHERE stadium = "Citrus Bowl" AND television = "ABC" | What city in the Citrus Bowl aired on ABC? | CREATE TABLE table_16046689_29 (city VARCHAR, stadium VARCHAR, television VARCHAR) |
SELECT COUNT(position) FROM table_14038363_1 WHERE player = "Teodor Salparov" | How many position does Teodor Salparov play on? | CREATE TABLE table_14038363_1 (position VARCHAR, player VARCHAR) |
SELECT phonemic FROM table_name_42 WHERE phonetic = "[pʰaː˥˥]" | What is the phonemic when the phonetic is [pʰaː˥˥]? | CREATE TABLE table_name_42 (phonemic VARCHAR, phonetic VARCHAR) |
SELECT MAX(first_elected) FROM table_1342451_38 WHERE incumbent = "Frederick H. Dominick" | What is the last year incumbent frederick h. dominick was first elected? | CREATE TABLE table_1342451_38 (first_elected INTEGER, incumbent VARCHAR) |
SELECT hometown FROM table_name_99 WHERE college = "ucla" | What is the hometown of the player that attends UCLA? | CREATE TABLE table_name_99 (hometown VARCHAR, college VARCHAR) |
SELECT ntfs FROM table_name_50 WHERE refs = "no" AND hpfs = "yes" | Which NTFS has a no for ReFS and a yes for HPFS? | CREATE TABLE table_name_50 (ntfs VARCHAR, refs VARCHAR, hpfs VARCHAR) |
SELECT COUNT(points) FROM table_name_28 WHERE games < 5 | What is the total points with less than 5 games? | CREATE TABLE table_name_28 (points VARCHAR, games INTEGER) |
SELECT round FROM table_name_2 WHERE pick = 112 | Which Round is pick 112 in? | CREATE TABLE table_name_2 (round VARCHAR, pick VARCHAR) |
SELECT prince_devitt FROM table_name_49 WHERE block_a = "yamato" | What is the Prince Devitt when Block A is Yamato? | CREATE TABLE table_name_49 (prince_devitt VARCHAR, block_a VARCHAR) |
SELECT opponent FROM table_name_99 WHERE date = "august 26" | Name the opponent for august 26 | CREATE TABLE table_name_99 (opponent VARCHAR, date VARCHAR) |
SELECT MAX(points_for_ordinary) FROM table_name_97 WHERE points_for_foundation = 10 | With 10 as the points for foundation, what is the maximum points for ordinary? | CREATE TABLE table_name_97 (points_for_ordinary INTEGER, points_for_foundation VARCHAR) |
SELECT candidates FROM table_1341690_5 WHERE district = "California 10" | Who was running for office in the California 10 district? | CREATE TABLE table_1341690_5 (candidates VARCHAR, district VARCHAR) |
SELECT position FROM table_name_70 WHERE round = 5 AND player = "a. j. feeley" | What position did a. j. feeley play who was picked in round 5? | CREATE TABLE table_name_70 (position VARCHAR, round VARCHAR, player VARCHAR) |
SELECT MIN(rank) FROM table_name_5 WHERE silver < 1 AND total > 1 AND bronze < 1 | Name the least rank when silver is less than 1 and bronze is less than 1 with total more than 1 | CREATE TABLE table_name_5 (rank INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR) |
SELECT date FROM table_name_12 WHERE race = "italian grand prix" | What date was the Italian Grand Prix? | CREATE TABLE table_name_12 (date VARCHAR, race VARCHAR) |
SELECT COUNT(*), dept_code FROM professor WHERE prof_high_degree = 'Ph.D.' GROUP BY dept_code | Find the number of professors with a Ph.D. degree in each department. | CREATE TABLE professor (dept_code VARCHAR, prof_high_degree VARCHAR) |
SELECT SUM(revenue__) AS $m_ FROM table_name_35 WHERE debt_as__percentageof_value > 27 AND operating_income_$m_ = 77 | What was the sum of Revenue ($M), when the Debt as % of value was higher than 27, and the Operating income($m) was 77? | CREATE TABLE table_name_35 (revenue__ INTEGER, debt_as__percentageof_value VARCHAR, operating_income_$m_ VARCHAR) |
SELECT away_team AS score FROM table_name_66 WHERE away_team = "footscray" | What was the score for Footscray when they were the away team? | CREATE TABLE table_name_66 (away_team VARCHAR) |
SELECT ranking FROM table_name_21 WHERE ep__number < 24 AND rating = "25.7" | What was the ranking for the episode number before 24 that had a rating of 25.7? | CREATE TABLE table_name_21 (ranking VARCHAR, ep__number VARCHAR, rating VARCHAR) |
SELECT result FROM table_name_80 WHERE score = "21 (7, 7, 7)" AND couple = "steve & anna" | What was the result for Steve & Anna when the score was 21 (7, 7, 7)? | CREATE TABLE table_name_80 (result VARCHAR, score VARCHAR, couple VARCHAR) |
SELECT date_made FROM table_name_46 WHERE notes = "45/48 renumbered 15/16; two sold to sl&ncr" | When has a Note of 45/48 renumbered 15/16; two sold to sl&ncr? | CREATE TABLE table_name_46 (date_made VARCHAR, notes VARCHAR) |
SELECT MIN(total) FROM table_name_72 WHERE data_processing_and_exploitation = "00 0,228" AND management_and_support > 1 OFFSET 7 | What is the lowest total data processing and exploitation of 00 0,228, and a management and support larger than 1,7? | CREATE TABLE table_name_72 (total INTEGER, data_processing_and_exploitation VARCHAR, management_and_support VARCHAR) |
SELECT team FROM table_27733258_11 WHERE date = "April 1" | What company plays on april 1? | CREATE TABLE table_27733258_11 (team VARCHAR, date VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.