question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is listed as the Place of Birth for the Elector of Pandolfo? | CREATE TABLE table_name_40 (place_of_birth VARCHAR, elector VARCHAR) | SELECT place_of_birth FROM table_name_40 WHERE elector = "pandolfo" |
what is the city of license for the station with the frequency mhz less than 102.3 abd erp w of 25? | CREATE TABLE table_name_64 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) | SELECT city_of_license FROM table_name_64 WHERE frequency_mhz < 102.3 AND erp_w = 25 |
What was the score of the player who earned $5,000? | CREATE TABLE table_name_9 (score VARCHAR, money__$_ VARCHAR) | SELECT score FROM table_name_9 WHERE money__$_ = "5,000" |
What is the Score for the game with a record of 38-18? | CREATE TABLE table_name_84 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_84 WHERE record = "38-18" |
What bowling style does First Class Team, Griqualand West have? | CREATE TABLE table_name_52 (bowling_style VARCHAR, first_class_team VARCHAR) | SELECT bowling_style FROM table_name_52 WHERE first_class_team = "griqualand west" |
How many places associated with latitude 48.247662? | CREATE TABLE table_18600760_13 (ansi_code VARCHAR, latitude VARCHAR) | SELECT COUNT(ansi_code) FROM table_18600760_13 WHERE latitude = "48.247662" |
Tell me the opponent for winner of bc 2 | CREATE TABLE table_name_67 (opponent VARCHAR, winner VARCHAR) | SELECT opponent FROM table_name_67 WHERE winner = "bc 2" |
what is the socket that has a brand name of core 2 extreme? | CREATE TABLE table_24101118_1 (socket VARCHAR, brand_name VARCHAR) | SELECT socket FROM table_24101118_1 WHERE brand_name = "Core 2 Extreme" |
How many tournaments ended with a score of 204 (-12)? | CREATE TABLE table_11622562_1 (tournament VARCHAR, score VARCHAR) | SELECT COUNT(tournament) FROM table_11622562_1 WHERE score = "204 (-12)" |
How many players were from high point, nc? | CREATE TABLE table_11677100_15 (mlb_draft VARCHAR, hometown VARCHAR) | SELECT COUNT(mlb_draft) FROM table_11677100_15 WHERE hometown = "High Point, NC" |
What was the compression ration when the engine was Wasp Jr. T1B2? | CREATE TABLE table_1123802_1 (compression_ratio VARCHAR, engine VARCHAR) | SELECT compression_ratio FROM table_1123802_1 WHERE engine = "Wasp Jr. T1B2" |
What is the pick # of the player with a PI GP less than 0? | CREATE TABLE table_name_16 (pick__number INTEGER, pl_gp INTEGER) | SELECT SUM(pick__number) FROM table_name_16 WHERE pl_gp < 0 |
What are the civil parishes of the Loughmarsh townland? | CREATE TABLE table_30121082_1 (civil_parish VARCHAR, townland VARCHAR) | SELECT civil_parish FROM table_30121082_1 WHERE townland = "Loughmarsh" |
Which Time has an Opponent of josh branham? | CREATE TABLE table_name_3 (time VARCHAR, opponent VARCHAR) | SELECT time FROM table_name_3 WHERE opponent = "josh branham" |
what is the highest place when lost is more than 4, points is less than 18 and team is Team of atlético veragüense? | CREATE TABLE table_name_18 (place INTEGER, team VARCHAR, lost VARCHAR, points VARCHAR) | SELECT MAX(place) FROM table_name_18 WHERE lost > 4 AND points < 18 AND team = "atlético veragüense" |
Show the name, time, and service for all trains. | CREATE TABLE train (name VARCHAR, TIME VARCHAR, service VARCHAR) | SELECT name, TIME, service FROM train |
What Co-contestant (Yaar vs. Pyaar) has a Total score/week of 48/60, and a Date performed of august 14? | CREATE TABLE table_name_40 (co_contestant__yaar_vs_pyaar_ VARCHAR, total_score_week VARCHAR, date_performed VARCHAR) | SELECT co_contestant__yaar_vs_pyaar_ FROM table_name_40 WHERE total_score_week = "48/60" AND date_performed = "august 14" |
what is the continent in which the country russia is listed? | CREATE TABLE table_27435931_1 (continent VARCHAR, country VARCHAR) | SELECT continent FROM table_27435931_1 WHERE country = "Russia" |
when was it commissioned when the destroyer was built by scotts, greenock? | CREATE TABLE table_name_88 (commissioned VARCHAR, builder VARCHAR) | SELECT commissioned FROM table_name_88 WHERE builder = "scotts, greenock" |
When salt of this sea is the english title who is the director? | CREATE TABLE table_26555737_1 (director VARCHAR, english_title VARCHAR) | SELECT director FROM table_26555737_1 WHERE english_title = "Salt of this Sea" |
What was the team features at Oran Park Raceway? | CREATE TABLE table_name_41 (team VARCHAR, circuit VARCHAR) | SELECT team FROM table_name_41 WHERE circuit = "oran park raceway" |
what's the the mole with airdate being 5 january 2012 | CREATE TABLE table_13036251_1 (the_mole VARCHAR, airdate VARCHAR) | SELECT COUNT(the_mole) FROM table_13036251_1 WHERE airdate = "5 January 2012" |
What is the word form for the ALA-LC transliteration of muay bân? | CREATE TABLE table_name_79 (word_form VARCHAR, ala_lc VARCHAR) | SELECT word_form FROM table_name_79 WHERE ala_lc = "muay bân" |
What is the result for Gold Coast when Melbourne and Adelaide are yes, but Perth is no? | CREATE TABLE table_name_73 (gold_coast VARCHAR, adelaide VARCHAR, melbourne VARCHAR, perth VARCHAR) | SELECT gold_coast FROM table_name_73 WHERE melbourne = "yes" AND perth = "no" AND adelaide = "yes" |
What is the end (UTC) if the duration is 6 hours, 55 minutes? | CREATE TABLE table_22385461_8 (end__utc_ VARCHAR, duration VARCHAR) | SELECT end__utc_ FROM table_22385461_8 WHERE duration = "6 hours, 55 minutes" |
Which act's album has a name of All That You Can't Leave Behind? | CREATE TABLE table_name_58 (pop_act VARCHAR, album VARCHAR) | SELECT pop_act FROM table_name_58 WHERE album = "all that you can't leave behind" |
Which opponent had round 1? | CREATE TABLE table_name_85 (opponent VARCHAR, round VARCHAR) | SELECT opponent FROM table_name_85 WHERE round = "1" |
Tell me what the notes are for South Australia | CREATE TABLE table_1000181_1 (notes VARCHAR, current_slogan VARCHAR) | SELECT notes FROM table_1000181_1 WHERE current_slogan = "SOUTH AUSTRALIA" |
WHAT OPPONENT HAD A DATE OF SEPTEMBER 28? | CREATE TABLE table_name_17 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_17 WHERE date = "september 28" |
Who did the high assists in the game against Portland? | CREATE TABLE table_23248869_6 (high_assists VARCHAR, team VARCHAR) | SELECT high_assists FROM table_23248869_6 WHERE team = "Portland" |
What party is class 1 in wisconsin? | CREATE TABLE table_name_99 (party VARCHAR, class VARCHAR, state VARCHAR) | SELECT party FROM table_name_99 WHERE class = 1 AND state = "wisconsin" |
Which Pick has an Overall larger than 308, and a Position of rb? | CREATE TABLE table_name_21 (pick INTEGER, overall VARCHAR, position VARCHAR) | SELECT MAX(pick) FROM table_name_21 WHERE overall > 308 AND position = "rb" |
What chassis did John Watson drive? | CREATE TABLE table_name_4 (chassis VARCHAR, driver VARCHAR) | SELECT chassis FROM table_name_4 WHERE driver = "john watson" |
Which Name has a Number of electorates (2009) greater than 188,799? | CREATE TABLE table_name_56 (name VARCHAR, number_of_electorates__2009_ INTEGER) | SELECT name FROM table_name_56 WHERE number_of_electorates__2009_ > 188 OFFSET 799 |
Who was the latest to take office in Massachusetts 3rd district? | CREATE TABLE table_224840_4 (successor VARCHAR, district VARCHAR) | SELECT successor FROM table_224840_4 WHERE district = "Massachusetts 3rd" |
Which league did not qualify for the Playoffs, and had a Year larger than 2008? | CREATE TABLE table_name_59 (league VARCHAR, playoffs VARCHAR, the_year VARCHAR) | SELECT league FROM table_name_59 WHERE playoffs = "did not qualify" AND the_year > 2008 |
What is melbourne's home team score? | CREATE TABLE table_name_97 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_97 WHERE home_team = "melbourne" |
What club does John Westin play for? | CREATE TABLE table_name_99 (college_junior_club_team__league_ VARCHAR, player VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_99 WHERE player = "john westin" |
WHO DID THE RAPTORS PLAY ON JANUARY 9? | CREATE TABLE table_15869204_6 (team VARCHAR, date VARCHAR) | SELECT team FROM table_15869204_6 WHERE date = "January 9" |
What yacht type is involved where Bob Oatley is the skipper? | CREATE TABLE table_25594888_1 (yacht VARCHAR, skipper VARCHAR) | SELECT yacht AS type FROM table_25594888_1 WHERE skipper = "Bob Oatley" |
What county is the unemployment rate 4.8%? | CREATE TABLE table_22815568_6 (county VARCHAR, unemployment_rate VARCHAR) | SELECT county FROM table_22815568_6 WHERE unemployment_rate = "4.8%" |
Show director with the largest number of show times in total. | CREATE TABLE schedule (film_id VARCHAR, show_times_per_day INTEGER); CREATE TABLE film (directed_by VARCHAR, film_id VARCHAR) | SELECT T2.directed_by FROM schedule AS T1 JOIN film AS T2 ON T1.film_id = T2.film_id GROUP BY T2.directed_by ORDER BY SUM(T1.show_times_per_day) DESC LIMIT 1 |
In which season did Jimmy Eriksson win the championship for Team Lotus? | CREATE TABLE table_name_40 (season VARCHAR, team VARCHAR, champion VARCHAR) | SELECT season FROM table_name_40 WHERE team = "lotus" AND champion = "jimmy eriksson" |
What year had an Allison B400R transmission and a model of BRT? | CREATE TABLE table_19643196_1 (year VARCHAR, transmission VARCHAR, model VARCHAR) | SELECT year FROM table_19643196_1 WHERE transmission = "Allison B400R" AND model = "BRT" |
What is listed as the highest Year that's also got a Bronze of Wataru Haraguchi? | CREATE TABLE table_name_1 (year INTEGER, bronze VARCHAR) | SELECT MAX(year) FROM table_name_1 WHERE bronze = "wataru haraguchi" |
Which Size has a County of 62 perry? | CREATE TABLE table_name_69 (size INTEGER, county VARCHAR) | SELECT MAX(size) FROM table_name_69 WHERE county = "62 perry" |
Who was the supporting actress in "For Whom the Bell Tolls"? | CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, film VARCHAR) | SELECT supporting_actress FROM table_24225238_1 WHERE film = "For Whom the Bell Tolls" |
Show the fleet series of the aircrafts flied by pilots younger than 34 | CREATE TABLE pilot_record (Aircraft_ID VARCHAR, Pilot_ID VARCHAR); CREATE TABLE pilot (Pilot_ID VARCHAR, Age INTEGER); CREATE TABLE aircraft (Fleet_Series VARCHAR, Aircraft_ID VARCHAR) | SELECT T2.Fleet_Series FROM pilot_record AS T1 JOIN aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN pilot AS T3 ON T1.Pilot_ID = T3.Pilot_ID WHERE T3.Age < 34 |
Which game modes have Pinyin of chāojí mǎlìōu shìjiè? | CREATE TABLE table_name_13 (game_modes VARCHAR, pinyin VARCHAR) | SELECT game_modes FROM table_name_13 WHERE pinyin = "chāojí mǎlìōu shìjiè" |
what is the total attempted with a total made 16 | CREATE TABLE table_name_21 (total_attempted VARCHAR, total_made VARCHAR) | SELECT COUNT(total_attempted) FROM table_name_21 WHERE total_made = 16 |
Whicih Extra points are the average ones that have Points smaller than 6? | CREATE TABLE table_name_35 (extra_points INTEGER, points INTEGER) | SELECT AVG(extra_points) FROM table_name_35 WHERE points < 6 |
Name the location attendance for 22-8 | CREATE TABLE table_22654073_7 (location_attendance VARCHAR, record VARCHAR) | SELECT location_attendance FROM table_22654073_7 WHERE record = "22-8" |
What is the method when the time was 5:00, and the round higher than 4? | CREATE TABLE table_name_86 (method VARCHAR, time VARCHAR, round VARCHAR) | SELECT method FROM table_name_86 WHERE time = "5:00" AND round > 4 |
What day does the team play at punt road oval? | CREATE TABLE table_name_26 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_26 WHERE venue = "punt road oval" |
When was the queensland reds lock player born? | CREATE TABLE table_name_7 (date_of_birth__age_ VARCHAR, position VARCHAR, club_province VARCHAR) | SELECT date_of_birth__age_ FROM table_name_7 WHERE position = "lock" AND club_province = "queensland reds" |
Which currency has a central rate of 0.702804? | CREATE TABLE table_name_12 (currency VARCHAR, central_rate VARCHAR) | SELECT currency FROM table_name_12 WHERE central_rate = "0.702804" |
What is the inscription with John Vanbrugh listed as the identification? | CREATE TABLE table_name_26 (inscription VARCHAR, identification VARCHAR) | SELECT inscription FROM table_name_26 WHERE identification = "john vanbrugh" |
What is the average amount of appearances for the Bronze Meals less than 0? | CREATE TABLE table_name_58 (appearances INTEGER, bronze_medals INTEGER) | SELECT AVG(appearances) FROM table_name_58 WHERE bronze_medals < 0 |
What is the Venue with a Date with 14 april 2002? | CREATE TABLE table_name_57 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_57 WHERE date = "14 april 2002" |
How many people were in attendance at St Kilda's away match? | CREATE TABLE table_name_18 (crowd VARCHAR, away_team VARCHAR) | SELECT crowd FROM table_name_18 WHERE away_team = "st kilda" |
Who won in 1979 with +8 to par? | CREATE TABLE table_name_46 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR) | SELECT player FROM table_name_46 WHERE to_par = "+8" AND year_s__won = "1979" |
Name the del pueblo for red/black | CREATE TABLE table_15977768_1 (del_pueblo VARCHAR, centennial VARCHAR) | SELECT del_pueblo FROM table_15977768_1 WHERE centennial = "Red/black" |
What is the Eliminated when there are less than 4 entered and the wrestler was shawn michaels? | CREATE TABLE table_name_28 (eliminated VARCHAR, entered VARCHAR, wrestler VARCHAR) | SELECT eliminated FROM table_name_28 WHERE entered < 4 AND wrestler = "shawn michaels" |
What School or Club team has an overall score of 21? | CREATE TABLE table_name_15 (school_club_team VARCHAR, overall VARCHAR) | SELECT school_club_team FROM table_name_15 WHERE overall = 21 |
What is Points, when Tries For is "correct as of 00:00 11 June 2008"? | CREATE TABLE table_name_90 (points VARCHAR, tries_for VARCHAR) | SELECT points FROM table_name_90 WHERE tries_for = "correct as of 00:00 11 june 2008" |
What is the lowest number of members on the Cultural and Educational Panel, when the University of Dublin had 3 members, when the Industrial and Commercial Panel had more than 0 members, and when the Agricultural Panel had more than 4 members? | CREATE TABLE table_name_28 (cultural_and_educational_panel INTEGER, agricultural_panel VARCHAR, university_of_dublin VARCHAR, industrial_and_commercial_panel VARCHAR) | SELECT MIN(cultural_and_educational_panel) FROM table_name_28 WHERE university_of_dublin < 3 AND industrial_and_commercial_panel > 0 AND agricultural_panel > 4 |
How much did the away team Melbourne score? | CREATE TABLE table_name_64 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_64 WHERE away_team = "melbourne" |
What was the highest number of points scored when there was a draw of 2 and when the amount played was 18? | CREATE TABLE table_name_83 (points INTEGER, draw VARCHAR, played VARCHAR) | SELECT MAX(points) FROM table_name_83 WHERE draw = 2 AND played < 18 |
What is the player that played 2004-05? | CREATE TABLE table_11545282_17 (player VARCHAR, years_for_jazz VARCHAR) | SELECT player FROM table_11545282_17 WHERE years_for_jazz = "2004-05" |
What was the method of fight completion for the Mars: Attack 1 event? | CREATE TABLE table_name_4 (method VARCHAR, event VARCHAR) | SELECT method FROM table_name_4 WHERE event = "mars: attack 1" |
What is the lowest number of points that Tevita Vaikona scored when making more than 23 tries? | CREATE TABLE table_name_97 (points INTEGER, tries VARCHAR, player VARCHAR) | SELECT MIN(points) FROM table_name_97 WHERE tries > 23 AND player = "tevita vaikona" |
Show the first names and last names of all the guests that have apartment bookings with status code "Confirmed". | CREATE TABLE Apartment_Bookings (guest_id VARCHAR, booking_status_code VARCHAR); CREATE TABLE Guests (guest_first_name VARCHAR, guest_last_name VARCHAR, guest_id VARCHAR) | SELECT T2.guest_first_name, T2.guest_last_name FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id WHERE T1.booking_status_code = "Confirmed" |
What position did the player play who weighed less thna 91 kg and was born on March 5, 1977? | CREATE TABLE table_name_6 (position VARCHAR, weight__kg_ VARCHAR, birthdate VARCHAR) | SELECT position FROM table_name_6 WHERE weight__kg_ < 91 AND birthdate = "march 5, 1977" |
What is the highest number of ties? | CREATE TABLE table_11233358_2 (ties INTEGER) | SELECT MAX(ties) FROM table_11233358_2 |
What player played guard for toronto in 1996-97? | CREATE TABLE table_10015132_11 (player VARCHAR, position VARCHAR, years_in_toronto VARCHAR) | SELECT player FROM table_10015132_11 WHERE position = "Guard" AND years_in_toronto = "1996-97" |
How many losing bonus where there when points against is 439? | CREATE TABLE table_12828723_4 (losing_bonus VARCHAR, points_against VARCHAR) | SELECT COUNT(losing_bonus) FROM table_12828723_4 WHERE points_against = "439" |
What is number of the train that originated in Secunderabad Junction? | CREATE TABLE table_name_87 (train_no VARCHAR, origin VARCHAR) | SELECT train_no FROM table_name_87 WHERE origin = "secunderabad junction" |
What is the earliest day in November with a record of 15-7-1? | CREATE TABLE table_name_67 (november INTEGER, record VARCHAR) | SELECT MIN(november) FROM table_name_67 WHERE record = "15-7-1" |
Name the League which has a Regular Season of 3rd, atlantic? | CREATE TABLE table_name_86 (league VARCHAR, regular_season VARCHAR) | SELECT league FROM table_name_86 WHERE regular_season = "3rd, atlantic" |
What player has +7 as the to par, and 69-69-75-74=287 as the score? | CREATE TABLE table_name_55 (player VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT player FROM table_name_55 WHERE to_par = "+7" AND score = 69 - 69 - 75 - 74 = 287 |
What is the title rank of the actor who played the character of arthur hastings during series 1-8, 13? | CREATE TABLE table_name_24 (title_rank VARCHAR, series VARCHAR, character VARCHAR) | SELECT title_rank FROM table_name_24 WHERE series = "1-8, 13" AND character = "arthur hastings" |
What race has a distance of 1200 m? | CREATE TABLE table_2062148_3 (race VARCHAR, distance VARCHAR) | SELECT race FROM table_2062148_3 WHERE distance = "1200 m" |
what is the most laps with a grid of 20? | CREATE TABLE table_name_71 (laps INTEGER, grid VARCHAR) | SELECT MAX(laps) FROM table_name_71 WHERE grid = 20 |
What is the config core 1 of the model with a processing power GFLOPs of 432? | CREATE TABLE table_26860595_2 (config_core_1 VARCHAR, processing_power_gflops VARCHAR) | SELECT config_core_1 FROM table_26860595_2 WHERE processing_power_gflops = "432" |
What is the maximum number of poles? | CREATE TABLE table_3005915_3 (poles INTEGER) | SELECT MAX(poles) FROM table_3005915_3 |
How many times was the catalog number cal04 / 0091037553546? | CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR) | SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = "CAL04 / 0091037553546" |
Name the sum of total with gold more than 1 and bronze more than 0 | CREATE TABLE table_name_10 (total INTEGER, gold VARCHAR, bronze VARCHAR) | SELECT SUM(total) FROM table_name_10 WHERE gold > 1 AND bronze > 0 |
What is the least amount of freight carried when the super b capacity reached was February 26? | CREATE TABLE table_12791809_1 (freight_carried_s_tonne INTEGER, super_b_capacity_reached_ VARCHAR, _citation_needed_ VARCHAR) | SELECT MIN(freight_carried_s_tonne) FROM table_12791809_1 WHERE super_b_capacity_reached_[_citation_needed_] = "February 26" |
Which nation's total is less than 19 when there's less than 1 bronze? | CREATE TABLE table_name_54 (nation VARCHAR, total VARCHAR, bronze VARCHAR) | SELECT nation FROM table_name_54 WHERE total < 19 AND bronze < 1 |
What was the lowest number of members on the Agricultural Panel, when the Industrial and Commercial Panel had 9 members, and when the National University of Ireland had more than 3 members? | CREATE TABLE table_name_29 (agricultural_panel INTEGER, industrial_and_commercial_panel VARCHAR, national_university_of_ireland VARCHAR) | SELECT MIN(agricultural_panel) FROM table_name_29 WHERE industrial_and_commercial_panel = 9 AND national_university_of_ireland > 3 |
What is the transfer window for the moving from of São Paulo? | CREATE TABLE table_name_46 (transfer_window VARCHAR, moving_from VARCHAR) | SELECT transfer_window FROM table_name_46 WHERE moving_from = "são paulo" |
What score was given at the August 17, 2005 match? | CREATE TABLE table_name_47 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_47 WHERE date = "august 17, 2005" |
Who is the opponent when the record is 17-19-4? | CREATE TABLE table_name_27 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_27 WHERE record = "17-19-4" |
Which Name was in the Year 2001? | CREATE TABLE table_name_32 (name VARCHAR, year VARCHAR) | SELECT name FROM table_name_32 WHERE year = "2001" |
Who is the callsign that has ICAO of SCO? | CREATE TABLE table_name_68 (callsign VARCHAR, icao VARCHAR) | SELECT callsign FROM table_name_68 WHERE icao = "sco" |
Can you tell me the average December rhat has the Opponent of @ toronto maple leafs? | CREATE TABLE table_name_18 (december INTEGER, opponent VARCHAR) | SELECT AVG(december) FROM table_name_18 WHERE opponent = "@ toronto maple leafs" |
What machine has tony rutter as the rider? | CREATE TABLE table_name_68 (machine VARCHAR, rider VARCHAR) | SELECT machine FROM table_name_68 WHERE rider = "tony rutter" |
What is the lowest Wins when the Club is broadview hawks, and Points Against is more than 594? | CREATE TABLE table_name_46 (wins INTEGER, club VARCHAR, points_against VARCHAR) | SELECT MIN(wins) FROM table_name_46 WHERE club = "broadview hawks" AND points_against > 594 |
Find the name and ID of the product whose total order quantity is the largest. | CREATE TABLE order_items (product_id VARCHAR, order_quantity INTEGER); CREATE TABLE products (product_details VARCHAR, product_id VARCHAR) | SELECT t2.product_details, t2.product_id FROM order_items AS t1 JOIN products AS t2 ON t1.product_id = t2.product_id GROUP BY t1.product_id ORDER BY SUM(t1.order_quantity) LIMIT 1 |
What example in English has a Standard Thai of ผ่า? | CREATE TABLE table_name_49 (example_meaning_in_english VARCHAR, standard_thai VARCHAR) | SELECT example_meaning_in_english FROM table_name_49 WHERE standard_thai = "ผ่า" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.