question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
Which PBA Titles has a TV Finals larger than 6, and an Events larger than 20? | CREATE TABLE table_name_16 (pba_titles INTEGER, tv_finals VARCHAR, events VARCHAR) | SELECT AVG(pba_titles) FROM table_name_16 WHERE tv_finals > 6 AND events > 20 |
Which title has a translation in it of 1000 lies? | CREATE TABLE table_name_32 (title VARCHAR, translation VARCHAR) | SELECT title FROM table_name_32 WHERE translation = "1000 lies" |
How many figures are provided for Weeks' field goals? | CREATE TABLE table_25711913_8 (field_goals VARCHAR, player VARCHAR) | SELECT COUNT(field_goals) FROM table_25711913_8 WHERE player = "Weeks" |
What is the percentage of Tujunja when Pasadena is 33%? | CREATE TABLE table_name_37 (tujunga VARCHAR, pasadena VARCHAR) | SELECT tujunga FROM table_name_37 WHERE pasadena = "33%" |
When the winning driver was jacques villeneuve what was the fastest lap driven? | CREATE TABLE table_name_31 (fastest_lap VARCHAR, winning_driver VARCHAR) | SELECT fastest_lap FROM table_name_31 WHERE winning_driver = "jacques villeneuve" |
How many weeks in the top 10 was spent by a song performed by Peter Kay? | CREATE TABLE table_27813010_2 (weeks_in_top_10 INTEGER, artist VARCHAR) | SELECT MAX(weeks_in_top_10) FROM table_27813010_2 WHERE artist = "Peter Kay" |
WHAT IS THE PACKAGE VERSION WITH TELUS MOBILITY? | CREATE TABLE table_name_74 (package_version VARCHAR, carrier VARCHAR) | SELECT package_version FROM table_name_74 WHERE carrier = "telus mobility" |
What is the area of the parish with a population larger than 1,172 and a census ranking of 1,871 of 5,008? | CREATE TABLE table_name_16 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR) | SELECT COUNT(area_km_2) FROM table_name_16 WHERE census_ranking = "1,871 of 5,008" AND population > 1 OFFSET 172 |
Please show the industries of companies in descending order of the number of companies. | CREATE TABLE Companies (Industry VARCHAR) | SELECT Industry FROM Companies GROUP BY Industry ORDER BY COUNT(*) DESC |
What's the final score of the competition that features the club of fk Austria wien? | CREATE TABLE table_name_58 (score VARCHAR, club VARCHAR) | SELECT score FROM table_name_58 WHERE club = "fk austria wien" |
What is the sum of points when Bruce Arena has 21 wins? | CREATE TABLE table_name_96 (pts INTEGER, wins VARCHAR, coach VARCHAR) | SELECT SUM(pts) FROM table_name_96 WHERE wins = 21 AND coach = "bruce arena" |
How many Q1 figures are given for Alexander Wurz? | CREATE TABLE table_1706942_1 (q1_order VARCHAR, driver VARCHAR) | SELECT COUNT(q1_order) FROM table_1706942_1 WHERE driver = "Alexander Wurz" |
What is the bandwidth for downstream of 20 mbit/s for 69 tl? | CREATE TABLE table_17304621_14 (bandwidth VARCHAR, downstream VARCHAR, price_tl VARCHAR) | SELECT bandwidth FROM table_17304621_14 WHERE downstream = "20 Mbit/s" AND price_tl = "69 TL" |
How long did the soap opera run in which Nadine Spruß acted in? | CREATE TABLE table_name_13 (character VARCHAR, actor VARCHAR) | SELECT character FROM table_name_13 WHERE actor = "nadine spruß" |
Tell me the total number of rank for places less than 94 and points less than 169.8 for japan | CREATE TABLE table_name_98 (rank VARCHAR, nation VARCHAR, places VARCHAR, points VARCHAR) | SELECT COUNT(rank) FROM table_name_98 WHERE places < 94 AND points < 169.8 AND nation = "japan" |
When was the first cap associated with 39 caps and under 33 goals? | CREATE TABLE table_name_29 (first_cap VARCHAR, goals VARCHAR, caps VARCHAR) | SELECT first_cap FROM table_name_29 WHERE goals < 33 AND caps = 39 |
What position(s) does the player from seton hall play? | CREATE TABLE table_16494599_4 (position VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_16494599_4 WHERE school_club_team = "Seton Hall" |
How many regions had a life expectancy at birth in 2001-2002 of 75.9? | CREATE TABLE table_25042332_33 (hdi VARCHAR, life_expectancy_at_birth__2001_2002_ VARCHAR) | SELECT COUNT(hdi) FROM table_25042332_33 WHERE life_expectancy_at_birth__2001_2002_ = "75.9" |
what's the results of week 12? | CREATE TABLE table_name_57 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_57 WHERE week = 12 |
What is the largest Crowd number for the Home team of North Melbourne? | CREATE TABLE table_name_3 (crowd INTEGER, home_team VARCHAR) | SELECT MAX(crowd) FROM table_name_3 WHERE home_team = "north melbourne" |
What kind of Average has a S.R. of 70.43 and Runs Scored smaller than 293? | CREATE TABLE table_name_74 (average INTEGER, sr VARCHAR, runs_scored VARCHAR) | SELECT MIN(average) FROM table_name_74 WHERE sr = 70.43 AND runs_scored < 293 |
What is the average Year when there was a cosworth straight-4 engine, and the Entrant was ron harris / team lotus? | CREATE TABLE table_name_17 (year INTEGER, engine VARCHAR, entrant VARCHAR) | SELECT AVG(year) FROM table_name_17 WHERE engine = "cosworth straight-4" AND entrant = "ron harris / team lotus" |
Where was the match that lasted less than 3 rounds and was won by submission (triangle choke)? | CREATE TABLE table_name_21 (location VARCHAR, round VARCHAR, method VARCHAR) | SELECT location FROM table_name_21 WHERE round < 3 AND method = "submission (triangle choke)" |
What is the year that Dewi Claire Schreefel is the champion? | CREATE TABLE table_12243817_1 (year VARCHAR, champion VARCHAR) | SELECT year FROM table_12243817_1 WHERE champion = "Dewi Claire Schreefel" |
When the Crowd was larger than 25,000. what was the Home Team score? | CREATE TABLE table_name_44 (home_team VARCHAR, crowd INTEGER) | SELECT home_team AS score FROM table_name_44 WHERE crowd > 25 OFFSET 000 |
What country is Eugene McDowell from? | CREATE TABLE table_name_22 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_22 WHERE player = "eugene mcdowell" |
What is the lowest Loss number when the Gain is less than 61 and the Avg/G is 6? | CREATE TABLE table_name_94 (loss INTEGER, gain VARCHAR, avg_g VARCHAR) | SELECT MIN(loss) FROM table_name_94 WHERE gain < 61 AND avg_g = 6 |
Which Institution has a Total smaller than 13, a Government amount of 1, and an Aided amount of 0? | CREATE TABLE table_name_99 (institution VARCHAR, aided VARCHAR, total VARCHAR, government VARCHAR) | SELECT institution FROM table_name_99 WHERE total < 13 AND government = 1 AND aided = 0 |
Name the least attendance with venue of away on 24 august 2007 | CREATE TABLE table_name_99 (attendance__away_ INTEGER, venue VARCHAR, date VARCHAR) | SELECT MIN(attendance__away_) FROM table_name_99 WHERE venue = "away" AND date = "24 august 2007" |
The callsign DWEC-TV has what branding? | CREATE TABLE table_2610582_2 (branding VARCHAR, callsign VARCHAR) | SELECT branding FROM table_2610582_2 WHERE callsign = "DWEC-TV" |
Which Record has a Result of win, and a Streak of won 1, and a Game of 47? | CREATE TABLE table_name_47 (record VARCHAR, game VARCHAR, result VARCHAR, streak VARCHAR) | SELECT record FROM table_name_47 WHERE result = "win" AND streak = "won 1" AND game = 47 |
what is the round when the position is (c)? | CREATE TABLE table_name_85 (round INTEGER, position VARCHAR) | SELECT MAX(round) FROM table_name_85 WHERE position = "(c)" |
What are the dates for the documents with both 'GV' type and 'SF' type expenses? | CREATE TABLE Documents_with_Expenses (document_id VARCHAR, budget_type_code VARCHAR); CREATE TABLE Documents (document_date VARCHAR, document_id VARCHAR) | SELECT T1.document_date FROM Documents AS T1 JOIN Documents_with_Expenses AS T2 ON T1.document_id = T2.document_id WHERE T2.budget_type_code = 'GV' INTERSECT SELECT T1.document_date FROM Documents AS T1 JOIN Documents_with_Expenses AS T2 ON T1.document_id = T2.document_id WHERE T2.budget_type_code = 'SF' |
What is the location of the fight against Zaza Tkeshelashvili? | CREATE TABLE table_name_26 (location VARCHAR, opponent VARCHAR) | SELECT location FROM table_name_26 WHERE opponent = "zaza tkeshelashvili" |
What was the Score of the match with USL Dunkerque (d2) as Team 2? | CREATE TABLE table_name_87 (score VARCHAR, team_2 VARCHAR) | SELECT score FROM table_name_87 WHERE team_2 = "usl dunkerque (d2)" |
what is the venue when the competition is asian games, the event is 4x400 m relay and the year is 2002? | CREATE TABLE table_name_93 (venue VARCHAR, year VARCHAR, competition VARCHAR, event VARCHAR) | SELECT venue FROM table_name_93 WHERE competition = "asian games" AND event = "4x400 m relay" AND year = 2002 |
What was the team's score against detroit? | CREATE TABLE table_27713030_8 (score VARCHAR, team VARCHAR) | SELECT score FROM table_27713030_8 WHERE team = "Detroit" |
Which towns are represented in district 31? | CREATE TABLE table_name_65 (towns_represented VARCHAR, district VARCHAR) | SELECT towns_represented FROM table_name_65 WHERE district = "31" |
Which Points have a Grid larger than 7, and a Driver of alex tagliani, and a Lapse smaller than 85? | CREATE TABLE table_name_56 (points INTEGER, laps VARCHAR, grid VARCHAR, driver VARCHAR) | SELECT MAX(points) FROM table_name_56 WHERE grid > 7 AND driver = "alex tagliani" AND laps < 85 |
What is the 2010 value of the monte carlo masters, which had A in 2012? | CREATE TABLE table_name_97 (tournament VARCHAR) | SELECT 2010 FROM table_name_97 WHERE 2012 = "a" AND tournament = "monte carlo masters" |
Namw the minimum production code for 16.04 million viewers | CREATE TABLE table_14845640_1 (production_code INTEGER, us_viewers__millions_ VARCHAR) | SELECT MIN(production_code) FROM table_14845640_1 WHERE us_viewers__millions_ = "16.04" |
what is the location when the year is less than 1998 and the international captain is david graham? | CREATE TABLE table_name_21 (location VARCHAR, year VARCHAR, international_captain VARCHAR) | SELECT location FROM table_name_21 WHERE year < 1998 AND international_captain = "david graham" |
What is the total time (s) for the horse Pinot Grigio? | CREATE TABLE table_name_53 (total_time___s__ VARCHAR, horse VARCHAR) | SELECT total_time___s__ FROM table_name_53 WHERE horse = "pinot grigio" |
Who were Petrova's opponents with Vania King? | CREATE TABLE table_27611593_5 (opponents VARCHAR, partner VARCHAR) | SELECT opponents FROM table_27611593_5 WHERE partner = "Vania King" |
What is John Curtice's position? | CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_35 WHERE player = "john curtice" |
What is the highest Bronze with a Silver greater than 0 and a Gold of 7 and a total less than 29 | CREATE TABLE table_name_39 (bronze INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR) | SELECT MAX(bronze) FROM table_name_39 WHERE silver > 0 AND gold = 7 AND total < 29 |
How many scores where achieved on January 19? | CREATE TABLE table_27734769_9 (score VARCHAR, date VARCHAR) | SELECT COUNT(score) FROM table_27734769_9 WHERE date = "January 19" |
What's the pick number of the player from Toronto Argonauts? | CREATE TABLE table_10812938_5 (pick__number INTEGER, cfl_team VARCHAR) | SELECT MIN(pick__number) FROM table_10812938_5 WHERE cfl_team = "Toronto Argonauts" |
What was the score in a place of t5 in the United States? | CREATE TABLE table_name_25 (score VARCHAR, place VARCHAR, nation VARCHAR) | SELECT score FROM table_name_25 WHERE place = "t5" AND nation = "united states" |
What was the crowd size when Essendon was the away team? | CREATE TABLE table_name_79 (crowd VARCHAR, away_team VARCHAR) | SELECT COUNT(crowd) FROM table_name_79 WHERE away_team = "essendon" |
What's the heat in the lane less than 3 with a time of 14:48.39? | CREATE TABLE table_name_99 (heat INTEGER, lane VARCHAR, time VARCHAR) | SELECT AVG(heat) FROM table_name_99 WHERE lane < 3 AND time = "14:48.39" |
What competition had its first match on December 20, 2007? | CREATE TABLE table_name_15 (competition VARCHAR, first_match VARCHAR) | SELECT competition FROM table_name_15 WHERE first_match = "december 20, 2007" |
Who was the first elected incumbent in the 1946 election? | CREATE TABLE table_1342149_6 (incumbent VARCHAR, first_elected VARCHAR) | SELECT incumbent FROM table_1342149_6 WHERE first_elected = "1946" |
What is the average bronze with a total of 15 and less than 2 gold? | CREATE TABLE table_name_69 (bronze INTEGER, total VARCHAR, gold VARCHAR) | SELECT AVG(bronze) FROM table_name_69 WHERE total = 15 AND gold < 2 |
Give me a list of distinct product ids from orders placed between 1975-01-01 and 1976-01-01? | CREATE TABLE order_items (product_id VARCHAR, order_id VARCHAR); CREATE TABLE orders (order_id VARCHAR, date_order_placed VARCHAR) | SELECT DISTINCT T2.product_id FROM orders AS T1 JOIN order_items AS T2 ON T1.order_id = T2.order_id WHERE T1.date_order_placed >= "1975-01-01" AND T1.date_order_placed <= "1976-01-01" |
Show name, address road, and city for all branches sorted by open year. | CREATE TABLE branch (name VARCHAR, address_road VARCHAR, city VARCHAR, open_year VARCHAR) | SELECT name, address_road, city FROM branch ORDER BY open_year |
What is the average snatch score of body builders? | CREATE TABLE body_builder (Snatch INTEGER) | SELECT AVG(Snatch) FROM body_builder |
When вуха (vúkha) is the belarusian how many slovaks are there? | CREATE TABLE table_26757_4 (slovak VARCHAR, belarusian VARCHAR) | SELECT COUNT(slovak) FROM table_26757_4 WHERE belarusian = "вуха (vúkha)" |
Which institution does "Katsuhiro Ueno" belong to? | CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE inst (name VARCHAR, instid VARCHAR) | SELECT DISTINCT t3.name FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t1.fname = "Katsuhiro" AND t1.lname = "Ueno" |
Which Memory (GB) has a Number of CPUs of 1–6? | CREATE TABLE table_name_57 (memory__gb_ VARCHAR, number_of_cpus VARCHAR) | SELECT memory__gb_ FROM table_name_57 WHERE number_of_cpus = "1–6" |
Which Country's Author is based on Sophocles and Euripides? | CREATE TABLE table_name_86 (country VARCHAR, author VARCHAR) | SELECT country FROM table_name_86 WHERE author = "based on sophocles and euripides" |
What are the maximum, minimum, and average booked count for the products booked? | CREATE TABLE products_booked (booked_count INTEGER) | SELECT MAX(booked_count), MIN(booked_count), AVG(booked_count) FROM products_booked |
Show the outcome code of mailshots along with the number of mailshots in each outcome code. | CREATE TABLE mailshot_customers (outcome_code VARCHAR) | SELECT outcome_code, COUNT(*) FROM mailshot_customers GROUP BY outcome_code |
What was the attendance number for the venue of Lakeside Park? | CREATE TABLE table_name_37 (attendance VARCHAR, venue VARCHAR) | SELECT attendance FROM table_name_37 WHERE venue = "lakeside park" |
How many laps did Mattia Pasini ride? | CREATE TABLE table_name_16 (laps INTEGER, rider VARCHAR) | SELECT MIN(laps) FROM table_name_16 WHERE rider = "mattia pasini" |
What was the result of Frank Langella? | CREATE TABLE table_name_64 (result VARCHAR, nominee VARCHAR) | SELECT result FROM table_name_64 WHERE nominee = "frank langella" |
What is the lowest number of fa cup goals by a player? | CREATE TABLE table_27170987_5 (fa_cup_goals INTEGER) | SELECT MIN(fa_cup_goals) FROM table_27170987_5 |
What is the leg for c. atkinson | CREATE TABLE table_13050822_2 (leg VARCHAR, rally_leader VARCHAR) | SELECT leg FROM table_13050822_2 WHERE rally_leader = "C. Atkinson" |
Who was the winner in the stage that Damiano Cunego led the points classification? | CREATE TABLE table_name_48 (winner VARCHAR, points_classification VARCHAR) | SELECT winner FROM table_name_48 WHERE points_classification = "damiano cunego" |
Name the german voice actor for alain dorval | CREATE TABLE table_14960574_6 (german_voice_actor VARCHAR, french_voice_actor VARCHAR) | SELECT german_voice_actor FROM table_14960574_6 WHERE french_voice_actor = "Alain Dorval" |
What was the final score for the January 23 game? | CREATE TABLE table_name_23 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_23 WHERE date = "january 23" |
How many touchdowns were scored in the year with a completion percentage of 56.0? | CREATE TABLE table_1037590_1 (touchdowns INTEGER, completion__percentage VARCHAR) | SELECT MIN(touchdowns) FROM table_1037590_1 WHERE completion__percentage = "56.0" |
Name the incumbent for candidates Joseph Hiester (dr) 83.2% Roswell Wells (f) 16.8%. | CREATE TABLE table_2668401_12 (incumbent VARCHAR, candidates VARCHAR) | SELECT incumbent FROM table_2668401_12 WHERE candidates = "Joseph Hiester (DR) 83.2% Roswell Wells (F) 16.8%" |
What is the average attendance of the team that had a regular season result of 2nd aisa, 24-16? | CREATE TABLE table_name_68 (attendance_average VARCHAR, reg_season VARCHAR) | SELECT attendance_average FROM table_name_68 WHERE reg_season = "2nd aisa, 24-16" |
When the scoring rank was 117, what was the best finish? | CREATE TABLE table_10021158_3 (best_finish VARCHAR, scoring_rank VARCHAR) | SELECT best_finish FROM table_10021158_3 WHERE scoring_rank = "117" |
Who previously attended south kent school / brentwood hs? | CREATE TABLE table_29050051_3 (name VARCHAR, previous_school VARCHAR) | SELECT name FROM table_29050051_3 WHERE previous_school = "South Kent School / Brentwood HS" |
What is the Ground with a Date that is 2008-06-20? | CREATE TABLE table_name_42 (ground VARCHAR, date VARCHAR) | SELECT ground FROM table_name_42 WHERE date = "2008-06-20" |
What's the average pole position for the driver that has a percentage of 44.81%? | CREATE TABLE table_name_33 (pole_positions INTEGER, percentage VARCHAR) | SELECT AVG(pole_positions) FROM table_name_33 WHERE percentage = "44.81%" |
Who had the fastest lap on september 4? | CREATE TABLE table_30134667_2 (fastest_lap VARCHAR, date VARCHAR) | SELECT fastest_lap FROM table_30134667_2 WHERE date = "September 4" |
What is the total number of years Andy Murray was at Wimbledon? | CREATE TABLE table_name_27 (year VARCHAR, wimbledon VARCHAR) | SELECT COUNT(year) FROM table_name_27 WHERE wimbledon = "andy murray" |
What was the average of againsts on 21/5/1997? | CREATE TABLE table_name_45 (against INTEGER, date VARCHAR) | SELECT AVG(against) FROM table_name_45 WHERE date = "21/5/1997" |
What is Country, when Score is "73-68=141"? | CREATE TABLE table_name_60 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_60 WHERE score = 73 - 68 = 141 |
How man cuts were there of players who had 0 wins but had 1 player in the top 25 with more than 4 events? | CREATE TABLE table_name_76 (cuts_made INTEGER, events VARCHAR, wins VARCHAR, top_25 VARCHAR) | SELECT SUM(cuts_made) FROM table_name_76 WHERE wins = 0 AND top_25 = 1 AND events > 4 |
What team scored more than 572 points and had more than 29 games? | CREATE TABLE table_name_44 (team VARCHAR, points VARCHAR, games VARCHAR) | SELECT team FROM table_name_44 WHERE points > 572 AND games > 29 |
Name the poles for 25th position | CREATE TABLE table_1708050_1 (poles VARCHAR, position VARCHAR) | SELECT poles FROM table_1708050_1 WHERE position = "25th" |
What is the meaning of a gentle personality? | CREATE TABLE table_1912713_2 (意義_meaning VARCHAR, 性情_personality VARCHAR) | SELECT 意義_meaning FROM table_1912713_2 WHERE 性情_personality = "Gentle" |
Shawn Respert play for what school/club team? | CREATE TABLE table_name_66 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_66 WHERE player = "shawn respert" |
What is the Torque of the model with the engine code of M54B25? | CREATE TABLE table_name_73 (torque VARCHAR, engine_code VARCHAR) | SELECT torque FROM table_name_73 WHERE engine_code = "m54b25" |
How many games were lost when the order was 2nd and the play was more than 13 | CREATE TABLE table_name_66 (lost VARCHAR, order VARCHAR, played VARCHAR) | SELECT COUNT(lost) FROM table_name_66 WHERE order = "2nd" AND played > 13 |
What are the lowest matches that have wickets greater than 16, 3/15 as the best, and an econ less than 8? | CREATE TABLE table_name_19 (matches INTEGER, econ VARCHAR, wickets VARCHAR, best VARCHAR) | SELECT MIN(matches) FROM table_name_19 WHERE wickets > 16 AND best = "3/15" AND econ < 8 |
In what Round was Pick #12 drafted? | CREATE TABLE table_name_53 (round VARCHAR, pick__number VARCHAR) | SELECT round FROM table_name_53 WHERE pick__number = 12 |
Name the total number of telephone 052 for 362.81 | CREATE TABLE table_14465924_1 (telephone__052_ VARCHAR, area__km_2__ VARCHAR) | SELECT COUNT(telephone__052_) FROM table_14465924_1 WHERE area__km_2__ = "362.81" |
how many time is fri 27 aug 19' 38.87 115.219mph? | CREATE TABLE table_26986076_2 (sat_29_aug VARCHAR, fri_27_aug VARCHAR) | SELECT COUNT(sat_29_aug) FROM table_26986076_2 WHERE fri_27_aug = "19' 38.87 115.219mph" |
How many people on this list are named thomas abernethy? | CREATE TABLE table_1342218_24 (candidates VARCHAR, incumbent VARCHAR) | SELECT COUNT(candidates) FROM table_1342218_24 WHERE incumbent = "Thomas Abernethy" |
What was the category that sheridan smith was nominated for in 2011? | CREATE TABLE table_name_80 (category VARCHAR, year VARCHAR) | SELECT category FROM table_name_80 WHERE year = 2011 |
List the name, origin and owner of each program. | CREATE TABLE program (name VARCHAR, origin VARCHAR, OWNER VARCHAR) | SELECT name, origin, OWNER FROM program |
What is the set 5 with a 19-25 set 1? | CREATE TABLE table_name_44 (set_5 VARCHAR, set_1 VARCHAR) | SELECT set_5 FROM table_name_44 WHERE set_1 = "19-25" |
What are the ids and names of the architects who built at least 3 bridges ? | CREATE TABLE architect (id VARCHAR, name VARCHAR); CREATE TABLE bridge (architect_id VARCHAR) | SELECT T1.id, T1.name FROM architect AS T1 JOIN bridge AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) >= 3 |
What is the amount of Draws for the game that had a score of 45+7 and a position below 3? | CREATE TABLE table_name_29 (draws VARCHAR, points VARCHAR, position VARCHAR) | SELECT COUNT(draws) FROM table_name_29 WHERE points = "45+7" AND position < 3 |
Which Telugu తెలుగు has a Kannada ಕನ್ನಡ of chitra ಚಿತ್ತ? | CREATE TABLE table_name_87 (telugu_తెలుగు VARCHAR, kannada_ಕನ್ನಡ VARCHAR) | SELECT telugu_తెలుగు FROM table_name_87 WHERE kannada_ಕನ್ನಡ = "chitra ಚಿತ್ತ" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.