question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
How many products are never booked with amount higher than 200? | CREATE TABLE products_booked (product_id VARCHAR, booked_amount INTEGER); CREATE TABLE Products_for_hire (product_id VARCHAR, booked_amount INTEGER) | SELECT COUNT(*) FROM Products_for_hire WHERE NOT product_id IN (SELECT product_id FROM products_booked WHERE booked_amount > 200) |
What was the highest number played when there were 21 goals conceded and a draw greater than 3? | CREATE TABLE table_name_47 (played INTEGER, goals_conceded VARCHAR, draw VARCHAR) | SELECT MAX(played) FROM table_name_47 WHERE goals_conceded = 21 AND draw > 3 |
What is the Set 1 of the 45:40 Total? | CREATE TABLE table_name_73 (set_1 VARCHAR, total VARCHAR) | SELECT set_1 FROM table_name_73 WHERE total = "45:40" |
What is the toatl number of caps where the name is Hans Blume? | CREATE TABLE table_11585313_1 (number_of_caps VARCHAR, name VARCHAR) | SELECT COUNT(number_of_caps) FROM table_11585313_1 WHERE name = "Hans Blume" |
What was the record in game played on July 28? | CREATE TABLE table_23685152_2 (record VARCHAR, date VARCHAR) | SELECT record FROM table_23685152_2 WHERE date = "July 28" |
Which IHSAA class does speedway school belong to? | CREATE TABLE table_name_85 (ihsaa_class VARCHAR, school VARCHAR) | SELECT ihsaa_class FROM table_name_85 WHERE school = "speedway" |
Who drove in grids more than 3 and exited in an accident? | CREATE TABLE table_name_17 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR) | SELECT driver FROM table_name_17 WHERE grid > 3 AND time_retired = "accident" |
What is the highest played with more than 0 draws, less than 3 losses, and less than 27 points? | CREATE TABLE table_name_62 (played INTEGER, points VARCHAR, drawn VARCHAR, lost VARCHAR) | SELECT MAX(played) FROM table_name_62 WHERE drawn > 0 AND lost < 3 AND points < 27 |
How many lost games for jersey number 2 and games started is less than 7.0? | CREATE TABLE table_14389782_2 (losses VARCHAR, jersey_no VARCHAR, games_started VARCHAR) | SELECT losses FROM table_14389782_2 WHERE jersey_no = "2" AND games_started < 7.0 |
Which venue had an extra of Junior Race? | CREATE TABLE table_name_68 (venue VARCHAR, extra VARCHAR) | SELECT venue FROM table_name_68 WHERE extra = "junior race" |
Who is the play-by-play when nbc is the network and darren pang is the ice level reporters? | CREATE TABLE table_22485543_1 (play_by_play VARCHAR, network VARCHAR, ice_level_reporters VARCHAR) | SELECT play_by_play FROM table_22485543_1 WHERE network = "NBC" AND ice_level_reporters = "Darren Pang" |
What is the grid with a Toyota constructor and +1:09.718 as time/retired? | CREATE TABLE table_name_24 (grid VARCHAR, constructor VARCHAR, time_retired VARCHAR) | SELECT grid FROM table_name_24 WHERE constructor = "toyota" AND time_retired = "+1:09.718" |
How many males are in the group that has an amount of 139361 | CREATE TABLE table_28939145_2 (male VARCHAR, female VARCHAR) | SELECT male FROM table_28939145_2 WHERE female = 139361 |
Which Surface has a Semi finalists of conchita martínez arantxa sánchez? | CREATE TABLE table_name_9 (surface VARCHAR, semi_finalists VARCHAR) | SELECT surface FROM table_name_9 WHERE semi_finalists = "conchita martínez arantxa sánchez" |
Which source has a date of June 2008? | CREATE TABLE table_name_28 (source VARCHAR, date VARCHAR) | SELECT source FROM table_name_28 WHERE date = "june 2008" |
Which Spanish voice actor does the same character as French voice actor Véronique Desmadryl? | CREATE TABLE table_name_4 (spanish_voice_actor VARCHAR, french_voice_actor VARCHAR) | SELECT spanish_voice_actor FROM table_name_4 WHERE french_voice_actor = "véronique desmadryl" |
Can you tell me the Player that has the Long larger than 28, and the Yards of 222? | CREATE TABLE table_name_92 (player VARCHAR, long VARCHAR, yards VARCHAR) | SELECT player FROM table_name_92 WHERE long > 28 AND yards = 222 |
What is the 1995 Album? | CREATE TABLE table_name_22 (album VARCHAR, year VARCHAR) | SELECT album FROM table_name_22 WHERE year = 1995 |
WHAT IS THE FORWARD CASTE WITH A SCHEDULED CASTE OF 89.50%? | CREATE TABLE table_name_80 (forward_caste VARCHAR, scheduled_caste VARCHAR) | SELECT forward_caste FROM table_name_80 WHERE scheduled_caste = "89.50%" |
How many times was the GFR 2006 equal to 53.2? | CREATE TABLE table_12251936_1 (whites_as__percentage_of_pop VARCHAR, gfr_2006 VARCHAR) | SELECT COUNT(whites_as__percentage_of_pop) FROM table_12251936_1 WHERE gfr_2006 = "53.2" |
Who is the Electorate, when the year for First elected is 1974, and when the Party is Country? | CREATE TABLE table_name_16 (electorate VARCHAR, first_elected VARCHAR, party VARCHAR) | SELECT electorate FROM table_name_16 WHERE first_elected = "1974" AND party = "country" |
How many incoming managers were there after Roy Hodgson left the position for the Fulham team? | CREATE TABLE table_24172157_3 (incoming_manager VARCHAR, outgoing_manager VARCHAR, team VARCHAR) | SELECT COUNT(incoming_manager) FROM table_24172157_3 WHERE outgoing_manager = "Roy Hodgson" AND team = "Fulham" |
What is the smallest number of goals for the player from 2008-present named tony beltran, ranked lower than 7? | CREATE TABLE table_name_98 (goals INTEGER, rank VARCHAR, years VARCHAR, player VARCHAR) | SELECT MIN(goals) FROM table_name_98 WHERE years = "2008-present" AND player = "tony beltran" AND rank > 7 |
How many drawn are there where the Club is new ross? | CREATE TABLE table_20760802_1 (drawn VARCHAR, club VARCHAR) | SELECT drawn FROM table_20760802_1 WHERE club = "New Ross" |
What is the GDP at constant prices for a current account balance of 12.8? | CREATE TABLE table_30133_1 (gdp_at_constant_prices__thb_trillions_ VARCHAR, current_account_balance__percent_of_gdp_ VARCHAR) | SELECT gdp_at_constant_prices__thb_trillions_ FROM table_30133_1 WHERE current_account_balance__percent_of_gdp_ = "12.8" |
What is the Score on October 7, 2000? | CREATE TABLE table_name_45 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_45 WHERE date = "october 7, 2000" |
Which player competed in 12 events? | CREATE TABLE table_name_49 (player VARCHAR, events VARCHAR) | SELECT player FROM table_name_49 WHERE events = 12 |
What is the year built of the home with a built status and a 42 m. height? | CREATE TABLE table_name_41 (status VARCHAR, height VARCHAR) | SELECT "built" FROM table_name_41 WHERE status = "built" AND height = "42 m." |
What is Surface, when Opponent is "Jiří Vaněk"? | CREATE TABLE table_name_31 (surface VARCHAR, opponent VARCHAR) | SELECT surface FROM table_name_31 WHERE opponent = "jiří vaněk" |
Tell me the format with year more than 2000 and label of myuzyk with catalog number of mzykn08 | CREATE TABLE table_name_48 (format VARCHAR, catalog_number VARCHAR, year VARCHAR, label VARCHAR) | SELECT format FROM table_name_48 WHERE year > 2000 AND label = "myuzyk" AND catalog_number = "mzykn08" |
What is the lowest Title Playoff, when League is greater than 3, and when Super Cup is less than 0? | CREATE TABLE table_name_42 (title_playoff INTEGER, league VARCHAR, super_cup VARCHAR) | SELECT MIN(title_playoff) FROM table_name_42 WHERE league > 3 AND super_cup < 0 |
Select the names of manufacturer whose products have an average price higher than or equal to $150. | CREATE TABLE Manufacturers (name VARCHAR, code VARCHAR); CREATE TABLE products (Price INTEGER, manufacturer VARCHAR, price INTEGER) | SELECT AVG(T1.Price), T2.name FROM products AS T1 JOIN Manufacturers AS T2 ON T1.manufacturer = T2.code GROUP BY T2.name HAVING AVG(T1.price) >= 150 |
Which Points have a Score of 4–1, and a Record of 18–10–8–1, and a January larger than 2? | CREATE TABLE table_name_71 (points INTEGER, january VARCHAR, score VARCHAR, record VARCHAR) | SELECT AVG(points) FROM table_name_71 WHERE score = "4–1" AND record = "18–10–8–1" AND january > 2 |
What's the value for race 4 when race 3 is dns and race 2 is 27? | CREATE TABLE table_name_55 (race_4 VARCHAR, race_3 VARCHAR, race_2 VARCHAR) | SELECT race_4 FROM table_name_55 WHERE race_3 = "dns" AND race_2 = "27" |
What is the lowest number of losses a goalkeeper with more than 2776 minutes had? | CREATE TABLE table_name_54 (loses INTEGER, minutes INTEGER) | SELECT MIN(loses) FROM table_name_54 WHERE minutes > 2776 |
Which Name has a Height (m) of 2980? | CREATE TABLE table_name_63 (name VARCHAR, height__m_ VARCHAR) | SELECT name FROM table_name_63 WHERE height__m_ = 2980 |
What is richmond's scores when they are the home team? | CREATE TABLE table_name_53 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_53 WHERE home_team = "richmond" |
Which Seasons has a Name of joe grugin, and a Lost larger than 8? | CREATE TABLE table_name_98 (seasons VARCHAR, name VARCHAR, lost VARCHAR) | SELECT COUNT(seasons) FROM table_name_98 WHERE name = "joe grugin" AND lost > 8 |
What is Jake Johnson's position? | CREATE TABLE table_name_60 (position VARCHAR, players VARCHAR) | SELECT position FROM table_name_60 WHERE players = "jake johnson" |
Which players made exactly 8 cuts? | CREATE TABLE table_20590020_2 (player VARCHAR, cuts_made VARCHAR) | SELECT player FROM table_20590020_2 WHERE cuts_made = 8 |
What beer has a record of 4.08? | CREATE TABLE table_name_67 (beer VARCHAR, recorded VARCHAR) | SELECT beer FROM table_name_67 WHERE recorded = 4.08 |
When the transmission make/type/speed is eaton fs 5306-a manual synchromesh 6 speed, what is the value of the gcm (kg) technical capacity? | CREATE TABLE table_11497980_1 (gcm__kg__technical_capacity VARCHAR, transmission_make_type_speed VARCHAR) | SELECT gcm__kg__technical_capacity FROM table_11497980_1 WHERE transmission_make_type_speed = "Eaton FS 5306-A Manual Synchromesh 6 Speed" |
List all the themes designed by Isabelle Toussaint. | CREATE TABLE table_11900773_6 (theme VARCHAR, design VARCHAR) | SELECT theme FROM table_11900773_6 WHERE design = "Isabelle Toussaint" |
Which Date has a Record of 58–10? | CREATE TABLE table_name_78 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_78 WHERE record = "58–10" |
Who was the player from georgia? | CREATE TABLE table_24990183_5 (name VARCHAR, country VARCHAR) | SELECT name FROM table_24990183_5 WHERE country = "Georgia" |
what is the highest tankers when pumpers is more than 2? | CREATE TABLE table_name_84 (tankers INTEGER, pumpers INTEGER) | SELECT MAX(tankers) FROM table_name_84 WHERE pumpers > 2 |
What kind of Sanskrit संस्कृतम् has a Tamil தமிழ் of rōkiṇi ரோகிணி? | CREATE TABLE table_name_23 (sanskrit_संस्कृतम् VARCHAR, tamil_தமிழ் VARCHAR) | SELECT sanskrit_संस्कृतम् FROM table_name_23 WHERE tamil_தமிழ் = "rōkiṇi ரோகிணி" |
What is the Original Team of the contestant from Wrightsville, Georgia ? | CREATE TABLE table_name_13 (original_team VARCHAR, hometown VARCHAR) | SELECT original_team FROM table_name_13 WHERE hometown = "wrightsville, georgia" |
How much time is required for less than 35 laps and less than 10 grids? | CREATE TABLE table_name_9 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT time_retired FROM table_name_9 WHERE laps < 35 AND grid < 10 |
What is the maximum basketball game? | CREATE TABLE table_27715173_2 (game INTEGER) | SELECT MAX(game) FROM table_27715173_2 |
What is score of the game played in place t8 with Byron Nelson playing? | CREATE TABLE table_name_20 (score VARCHAR, place VARCHAR, player VARCHAR) | SELECT score FROM table_name_20 WHERE place = "t8" AND player = "byron nelson" |
What were the high assists when the score was l 86–94 (ot)? | CREATE TABLE table_name_62 (high_assists VARCHAR, score VARCHAR) | SELECT high_assists FROM table_name_62 WHERE score = "l 86–94 (ot)" |
Find the name and category of the most expensive product. | CREATE TABLE products (product_name VARCHAR, product_category_code VARCHAR, product_price VARCHAR) | SELECT product_name, product_category_code FROM products ORDER BY product_price DESC LIMIT 1 |
What was the percentage of total votes in 1997? | CREATE TABLE table_28819393_1 (_percentage_of_total_vote VARCHAR, year VARCHAR) | SELECT _percentage_of_total_vote FROM table_28819393_1 WHERE year = "1997" |
Which Colony Name is in west virginia? | CREATE TABLE table_name_82 (colony_name VARCHAR, state VARCHAR) | SELECT colony_name FROM table_name_82 WHERE state = "west virginia" |
When the total is larger than 1,and the bronze is less than 3, and silver larger than 2, and a gold larger than 2, what is the nation? | CREATE TABLE table_name_24 (nation VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR, bronze VARCHAR) | SELECT nation FROM table_name_24 WHERE total > 1 AND bronze < 3 AND silver > 2 AND gold > 2 |
What is the average Long that has a GP-GS less than 14, a AVg/G less than 0.8 and a Gain less than 3 and a Loss greater than 8? | CREATE TABLE table_name_34 (long INTEGER, loss VARCHAR, gain VARCHAR, gp_gs VARCHAR, avg_g VARCHAR) | SELECT AVG(long) FROM table_name_34 WHERE gp_gs < 14 AND avg_g < 0.8 AND gain < 3 AND loss > 8 |
How large a crowd did the Fitzroy Away team draw? | CREATE TABLE table_name_15 (crowd INTEGER, away_team VARCHAR) | SELECT SUM(crowd) FROM table_name_15 WHERE away_team = "fitzroy" |
How many parties were first elected in 1994? | CREATE TABLE table_1805191_39 (party VARCHAR, first_elected VARCHAR) | SELECT COUNT(party) FROM table_1805191_39 WHERE first_elected = 1994 |
What number does aleksandar ćapin wear? | CREATE TABLE table_12962773_14 (no INTEGER, player VARCHAR) | SELECT MAX(no) FROM table_12962773_14 WHERE player = "Aleksandar Ćapin" |
What is the verb meaning when the part 2 is blēot? | CREATE TABLE table_name_5 (verb_meaning VARCHAR, part_2 VARCHAR) | SELECT verb_meaning FROM table_name_5 WHERE part_2 = "blēot" |
Find the ids of all distinct customers who made order after some orders that were Cancelled. | CREATE TABLE Customer_Orders (customer_id VARCHAR, order_date INTEGER, order_status_code VARCHAR) | SELECT DISTINCT customer_id FROM Customer_Orders WHERE order_date > (SELECT MIN(order_date) FROM Customer_Orders WHERE order_status_code = "Cancelled") |
What is the Away captain when the Result was draw, and a Venue of lord's? | CREATE TABLE table_name_72 (away_captain VARCHAR, result VARCHAR, venue VARCHAR) | SELECT away_captain FROM table_name_72 WHERE result = "draw" AND venue = "lord's" |
Which Series is on april 18? | CREATE TABLE table_name_84 (series VARCHAR, date VARCHAR) | SELECT series FROM table_name_84 WHERE date = "april 18" |
Who won Funny Car when Jim Yates won Pro Stock, in years after 1996? | CREATE TABLE table_name_57 (funny_car VARCHAR, pro_stock VARCHAR, year VARCHAR) | SELECT funny_car FROM table_name_57 WHERE pro_stock = "jim yates" AND year > 1996 |
Where was the match on 10/11/2001 against 15? | CREATE TABLE table_name_3 (venue VARCHAR, against VARCHAR, date VARCHAR) | SELECT venue FROM table_name_3 WHERE against = 15 AND date = "10/11/2001" |
What is the kickoff for the game on october 22, 2000? | CREATE TABLE table_name_30 (kickoff VARCHAR, date VARCHAR) | SELECT kickoff FROM table_name_30 WHERE date = "october 22, 2000" |
What is Result, when Film Title Used In Nomination is "Kuei-Mei, A Woman"? | CREATE TABLE table_name_43 (result VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT result FROM table_name_43 WHERE film_title_used_in_nomination = "kuei-mei, a woman" |
Where did they finish in the season when when they won $491,977? | CREATE TABLE table_2649597_1 (season_rank VARCHAR, winnings VARCHAR) | SELECT season_rank FROM table_2649597_1 WHERE winnings = "$491,977" |
Find the busiest destination airport that runs most number of routes in China. | CREATE TABLE routes (dst_apid VARCHAR); CREATE TABLE airports (name VARCHAR, apid VARCHAR, country VARCHAR) | SELECT T1.name FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.dst_apid WHERE T1.country = 'China' GROUP BY T1.name ORDER BY COUNT(*) DESC LIMIT 1 |
Name the sum of played for serik berdalin and drawn more than 4 | CREATE TABLE table_name_25 (played INTEGER, manager VARCHAR, drawn VARCHAR) | SELECT SUM(played) FROM table_name_25 WHERE manager = "serik berdalin" AND drawn > 4 |
What is the total number of ratings among the 18 to 49 group that was aired on January 7, 2009? | CREATE TABLE table_name_47 (air_date VARCHAR) | SELECT COUNT(18 AS _49) FROM table_name_47 WHERE air_date = "january 7, 2009" |
Where did McCain get 20226 votes? | CREATE TABLE table_20350118_1 (county VARCHAR, mccain_number VARCHAR) | SELECT county FROM table_20350118_1 WHERE mccain_number = 20226 |
Where was the Hawthorn game played? | CREATE TABLE table_name_43 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_43 WHERE away_team = "hawthorn" |
What was the lowest total number of horses that has a total cattle smaller than 6274.1, and a oxen smaller than 156.5, and a bulls of 40.0, and fewer than 3377 cows? | CREATE TABLE table_name_65 (total_horses INTEGER, cows VARCHAR, bulls VARCHAR, total_cattle VARCHAR, oxen VARCHAR) | SELECT MIN(total_horses) FROM table_name_65 WHERE total_cattle < 6274.1 AND oxen < 156.5 AND bulls = "40.0" AND cows < 3377 |
Name the runners up for when tournament is wgc-accenture match play championship | CREATE TABLE table_1590652_4 (runner_s__up VARCHAR, tournament VARCHAR) | SELECT runner_s__up FROM table_1590652_4 WHERE tournament = "WGC-Accenture Match Play Championship" |
What is the result of judge 6? | CREATE TABLE table_19744915_16 (result VARCHAR, judges VARCHAR) | SELECT result FROM table_19744915_16 WHERE judges = 6 |
Find the names of bank branches that have provided a loan to any customer whose credit score is below 100. | CREATE TABLE bank (bname VARCHAR, branch_id VARCHAR); CREATE TABLE customer (cust_id VARCHAR, credit_score INTEGER); CREATE TABLE loan (branch_id VARCHAR, cust_id VARCHAR) | SELECT T2.bname FROM loan AS T1 JOIN bank AS T2 ON T1.branch_id = T2.branch_id JOIN customer AS T3 ON T1.cust_id = T3.cust_id WHERE T3.credit_score < 100 |
What is the Stuffit ability that has a gzip of yes, ISO/CD images of no and LHA/LZH of no? | CREATE TABLE table_name_75 (stuffit VARCHAR, lha_lzh VARCHAR, gzip VARCHAR, iso_cd_image VARCHAR) | SELECT stuffit FROM table_name_75 WHERE gzip = "yes" AND iso_cd_image = "no" AND lha_lzh = "no" |
Final that has a Date of january 10, 2004 had what opponent? | CREATE TABLE table_name_23 (opponent_in_the_final VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_23 WHERE date = "january 10, 2004" |
How many lanes have a Nationality of united states, and a Name of aaron peirsol? | CREATE TABLE table_name_28 (lane VARCHAR, nationality VARCHAR, name VARCHAR) | SELECT COUNT(lane) FROM table_name_28 WHERE nationality = "united states" AND name = "aaron peirsol" |
What candidate was re-elected and was first elected in 1942? | CREATE TABLE table_1342218_35 (candidates VARCHAR, result VARCHAR, first_elected VARCHAR) | SELECT candidates FROM table_1342218_35 WHERE result = "Re-elected" AND first_elected = 1942 |
What is the Game with a Record of 19-15? | CREATE TABLE table_name_71 (game VARCHAR, record VARCHAR) | SELECT game FROM table_name_71 WHERE record = "19-15" |
What was the status of tropartic? | CREATE TABLE table_12001616_4 (status VARCHAR, car_name VARCHAR) | SELECT status FROM table_12001616_4 WHERE car_name = "TropArtic" |
How many different classes are there? | CREATE TABLE CLASS (class_code VARCHAR) | SELECT COUNT(DISTINCT class_code) FROM CLASS |
What family has the name of eastern cottontail? | CREATE TABLE table_name_57 (family VARCHAR, name VARCHAR) | SELECT family FROM table_name_57 WHERE name = "eastern cottontail" |
How many total figures are given for Milwaukee county? | CREATE TABLE table_21046399_3 (won_by VARCHAR, county VARCHAR) | SELECT COUNT(won_by) FROM table_21046399_3 WHERE county = "Milwaukee" |
what is the language/dialect when basikal is sepeda and boleh is bulih? | CREATE TABLE table_name_63 (language_dialect VARCHAR, basikal VARCHAR, boleh VARCHAR) | SELECT language_dialect FROM table_name_63 WHERE basikal = "sepeda" AND boleh = "bulih" |
What is Prize, when Season is "2"? | CREATE TABLE table_name_56 (prize VARCHAR, season VARCHAR) | SELECT prize FROM table_name_56 WHERE season = "2" |
WHAT IS THE YEAR WITH A BRONZE OF AIMO TEPSELL? | CREATE TABLE table_name_20 (year INTEGER, bronze VARCHAR) | SELECT MIN(year) FROM table_name_20 WHERE bronze = "aimo tepsell" |
Who had the sport of athletics on a date earlier than 16? | CREATE TABLE table_name_30 (name VARCHAR, sport VARCHAR, date VARCHAR) | SELECT name FROM table_name_30 WHERE sport = "athletics" AND date < 16 |
How many services are there? | CREATE TABLE services (Id VARCHAR) | SELECT COUNT(*) FROM services |
What is the attendance when the opponent is the San Francisco 49ers? | CREATE TABLE table_name_86 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_86 WHERE opponent = "san francisco 49ers" |
What city in Svalbard has a longitude of 15°39′e? | CREATE TABLE table_name_77 (city VARCHAR, state VARCHAR, longitude VARCHAR) | SELECT city FROM table_name_77 WHERE state = "svalbard" AND longitude = "15°39′e" |
How big of a crowd does the home team of essendon have? | CREATE TABLE table_name_66 (crowd VARCHAR, home_team VARCHAR) | SELECT crowd FROM table_name_66 WHERE home_team = "essendon" |
What city of license has an ERP W smaller than 500, Class A, and Frequency MHz larger than 89.7? | CREATE TABLE table_name_76 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR, class VARCHAR) | SELECT city_of_license FROM table_name_76 WHERE erp_w < 500 AND class = "a" AND frequency_mhz > 89.7 |
How many constituents does udaipura have? | CREATE TABLE table_name_37 (constituency_number VARCHAR, name VARCHAR) | SELECT constituency_number FROM table_name_37 WHERE name = "udaipura" |
Which is the highest Gold that has a total smaller than 4 and a silver of 1, and a bronze smaller than 2, and a rank of 13? | CREATE TABLE table_name_94 (gold INTEGER, rank VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR) | SELECT MAX(gold) FROM table_name_94 WHERE total < 4 AND silver = 1 AND bronze < 2 AND rank = "13" |
What is the name of the stone found in Andhra Pradesh, India? | CREATE TABLE table_name_13 (name_of_the_stone__sila_ VARCHAR, name_of_the_state_where_found_in_india VARCHAR) | SELECT name_of_the_stone__sila_ FROM table_name_13 WHERE name_of_the_state_where_found_in_india = "andhra pradesh" |
What's the wold ranking of the index by Transparency International? | CREATE TABLE table_19948664_1 (world_ranking__1_ VARCHAR, author___editor___source VARCHAR) | SELECT world_ranking__1_ FROM table_19948664_1 WHERE author___editor___source = "Transparency International" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.