question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
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 AVG(draw) FROM table_name_15 WHERE points = 42 AND played < 36 |
What the lost that has less than 10 points and less than 38 goals scored? | CREATE TABLE table_name_21 (lost INTEGER, goals_scored VARCHAR, points VARCHAR) | SELECT SUM(lost) FROM table_name_21 WHERE goals_scored < 38 AND points < 10 |
what the most lost for Alianza with a draw less than 6? | CREATE TABLE table_name_26 (lost INTEGER, team VARCHAR, draw VARCHAR) | SELECT MAX(lost) FROM table_name_26 WHERE team = "alianza" AND draw < 6 |
What the lost in place less than 3 and having more than 63 goals scored? | CREATE TABLE table_name_87 (lost INTEGER, goals_scored VARCHAR, place VARCHAR) | SELECT SUM(lost) FROM table_name_87 WHERE goals_scored > 63 AND place < 3 |
What is the total Rank for ümit karan when Apps is more than 39 and Rate is more than 0.58? | CREATE TABLE table_name_15 (rank INTEGER, rate VARCHAR, apps VARCHAR, player VARCHAR) | SELECT SUM(rank) FROM table_name_15 WHERE apps > 39 AND player = "ümit karan" AND rate > 0.58 |
When rank is more than 10, what is the total rate? | CREATE TABLE table_name_43 (rate INTEGER, rank INTEGER) | SELECT SUM(rate) FROM table_name_43 WHERE rank > 10 |
What winning amount has himesh reshammiya as the contestant name? | CREATE TABLE table_name_51 (winning_amount VARCHAR, contestant_name VARCHAR) | SELECT winning_amount FROM table_name_51 WHERE contestant_name = "himesh reshammiya" |
What eliminated contestant has October 10, 2009 as the date premiered? | CREATE TABLE table_name_25 (eliminated_contestant VARCHAR, date_premiered__2009_ VARCHAR) | SELECT eliminated_contestant FROM table_name_25 WHERE date_premiered__2009_ = "october 10" |
What date premiered (2009) has kareena kapoor as the contestant name? | CREATE TABLE table_name_40 (date_premiered__2009_ VARCHAR, contestant_name VARCHAR) | SELECT date_premiered__2009_ FROM table_name_40 WHERE contestant_name = "kareena kapoor" |
What episode # has govinda & david dhawan as the eliminated contestant? | CREATE TABLE table_name_66 (episode__number VARCHAR, eliminated_contestant VARCHAR) | SELECT episode__number FROM table_name_66 WHERE eliminated_contestant = "govinda & david dhawan" |
What is the winning amount that has May 30, 2009 as the date premiered? | CREATE TABLE table_name_2 (winning_amount VARCHAR, date_premiered__2009_ VARCHAR) | SELECT winning_amount FROM table_name_2 WHERE date_premiered__2009_ = "may 30" |
What is the Reserved For of Lahar? | CREATE TABLE table_name_39 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR) | SELECT reserved_for___sc___st__none_ FROM table_name_39 WHERE name = "lahar" |
What is the least clock speed (MHz) with January 1986 as introduced? | CREATE TABLE table_name_75 (clock_speed__mhz_ INTEGER, introduced VARCHAR) | SELECT MIN(clock_speed__mhz_) FROM table_name_75 WHERE introduced = "january 1986" |
With April 1986 as the introduced, what is the least clock speed (MHz)? | CREATE TABLE table_name_36 (clock_speed__mhz_ INTEGER, introduced VARCHAR) | SELECT MIN(clock_speed__mhz_) FROM table_name_36 WHERE introduced = "april 1986" |
The Powerbook 100 model has what processor? | CREATE TABLE table_name_58 (processor VARCHAR, model VARCHAR) | SELECT processor FROM table_name_58 WHERE model = "powerbook 100" |
When was the Lisa 2 model discontinued? | CREATE TABLE table_name_45 (discontinued VARCHAR, model VARCHAR) | SELECT discontinued FROM table_name_45 WHERE model = "lisa 2" |
Who are the rowers with a time of 6:41.45 and notes of FA? | CREATE TABLE table_name_33 (rowers VARCHAR, notes VARCHAR, time VARCHAR) | SELECT rowers FROM table_name_33 WHERE notes = "fa" AND time = "6:41.45" |
Who are the rowers from the United States? | CREATE TABLE table_name_6 (rowers VARCHAR, country VARCHAR) | SELECT rowers FROM table_name_6 WHERE country = "united states" |
What time did the team from Ukraine have? | CREATE TABLE table_name_76 (time VARCHAR, country VARCHAR) | SELECT time FROM table_name_76 WHERE country = "ukraine" |
What is the rank for the team that had a time of 6:41.45 and note FA? | CREATE TABLE table_name_26 (rank INTEGER, notes VARCHAR, time VARCHAR) | SELECT SUM(rank) FROM table_name_26 WHERE notes = "fa" AND time = "6:41.45" |
What rank was the team from Australia? | CREATE TABLE table_name_77 (rank VARCHAR, country VARCHAR) | SELECT COUNT(rank) FROM table_name_77 WHERE country = "australia" |
What is the highest game that has July 31 as the date? | CREATE TABLE table_name_6 (game INTEGER, date VARCHAR) | SELECT MAX(game) FROM table_name_6 WHERE date = "july 31" |
What is the total of the River Mile in Greenup, Kentucky? | CREATE TABLE table_name_34 (river_mile INTEGER, location_ VARCHAR, l_ VARCHAR) | SELECT SUM(river_mile) FROM table_name_34 WHERE location_[l_] = "greenup, kentucky" |
What is the River Mile with a RDB lock side and a pool length of 55.4? | CREATE TABLE table_name_32 (river_mile VARCHAR, lock_side VARCHAR, pool_length__miles_ VARCHAR) | SELECT river_mile FROM table_name_32 WHERE lock_side = "rdb" AND pool_length__miles_ = "55.4" |
What is the highest River Mile that has a pool length of 42.2 miles or a lock/lift drop of 21 feet? | CREATE TABLE table_name_71 (river_mile INTEGER, pool_length__miles_ VARCHAR, lock_lift_drop__in_feet_ VARCHAR) | SELECT MAX(river_mile) FROM table_name_71 WHERE pool_length__miles_ = "42.2" AND lock_lift_drop__in_feet_ = "21" |
What is the location of the river mile that is larger than 938.9, and Olmsted Locks and Dam? | CREATE TABLE table_name_8 (location_ VARCHAR, l_ VARCHAR, river_mile VARCHAR, locks_ VARCHAR, _dam VARCHAR) | SELECT location_[l_] FROM table_name_8 WHERE river_mile > 938.9 AND locks_ & _dam = "olmsted locks and dam" |
What is the lowest ranking for 8:13.67? | CREATE TABLE table_name_4 (rank INTEGER, time VARCHAR) | SELECT MIN(rank) FROM table_name_4 WHERE time = "8:13.67" |
What is the time for Kazakhstan? | CREATE TABLE table_name_57 (time VARCHAR, country VARCHAR) | SELECT time FROM table_name_57 WHERE country = "kazakhstan" |
What are the notes for South Africa? | CREATE TABLE table_name_8 (notes VARCHAR, country VARCHAR) | SELECT notes FROM table_name_8 WHERE country = "south africa" |
What country is ranked higher than 5? | CREATE TABLE table_name_29 (country VARCHAR, rank INTEGER) | SELECT country FROM table_name_29 WHERE rank > 5 |
What is the total rank and fc notes from South Africa? | CREATE TABLE table_name_24 (rank VARCHAR, notes VARCHAR, country VARCHAR) | SELECT COUNT(rank) FROM table_name_24 WHERE notes = "fc" AND country = "south africa" |
From what series was the title with a production number of 1614 that was directed by Friz Freleng? | CREATE TABLE table_name_15 (series VARCHAR, director VARCHAR, production_number VARCHAR) | SELECT series FROM table_name_15 WHERE director = "friz freleng" AND production_number = 1614 |
What is the Result of the event with a Record of 1-3? | CREATE TABLE table_name_39 (result VARCHAR, record VARCHAR) | SELECT result FROM table_name_39 WHERE record = "1-3" |
What is the Round of the event with a Record of 5-4? | CREATE TABLE table_name_61 (round VARCHAR, record VARCHAR) | SELECT round FROM table_name_61 WHERE record = "5-4" |
What was the latitude for van meter who had a land(sqmi) larger than 35.747, Water(sqmi) of 0 and a GEO ID smaller than 3809981860? | CREATE TABLE table_name_51 (latitude VARCHAR, township VARCHAR, geo_id VARCHAR, land___sqmi__ VARCHAR, water__sqmi_ VARCHAR) | SELECT COUNT(latitude) FROM table_name_51 WHERE land___sqmi__ > 35.747 AND water__sqmi_ = 0 AND geo_id < 3809981860 AND township = "van meter" |
What was the population fo the township with a Latitude of 48.853051, and a Water (sqmi) smaller than 0.9590000000000001? | CREATE TABLE table_name_85 (pop__2010_ INTEGER, latitude VARCHAR, water__sqmi_ VARCHAR) | SELECT MAX(pop__2010_) FROM table_name_85 WHERE latitude = 48.853051 AND water__sqmi_ < 0.9590000000000001 |
Van Meter has a water(sqmi) of 0 and a longitude larger than -98.444062, what was their highest ANSI code? | CREATE TABLE table_name_63 (ansi_code INTEGER, longitude VARCHAR, water__sqmi_ VARCHAR, township VARCHAR) | SELECT MAX(ansi_code) FROM table_name_63 WHERE water__sqmi_ = 0 AND township = "van meter" AND longitude > -98.444062 |
What was the lowest water(sqmi) in the county of dickey where the longitude was smaller than -98.444062? | CREATE TABLE table_name_47 (water__sqmi_ INTEGER, county VARCHAR, longitude VARCHAR) | SELECT MIN(water__sqmi_) FROM table_name_47 WHERE county = "dickey" AND longitude < -98.444062 |
Who is the coach for the Northamptonshire Steelbacks? | CREATE TABLE table_name_36 (coach VARCHAR, team VARCHAR) | SELECT coach FROM table_name_36 WHERE team = "northamptonshire steelbacks" |
Which team is located in Leicester? | CREATE TABLE table_name_36 (team VARCHAR, location VARCHAR) | SELECT team FROM table_name_36 WHERE location = "leicester" |
Which team is in Sussex county? | CREATE TABLE table_name_5 (team VARCHAR, county VARCHAR) | SELECT team FROM table_name_5 WHERE county = "sussex" |
What is the home ground for the team located in Canterbury? | CREATE TABLE table_name_96 (home_ground VARCHAR, location VARCHAR) | SELECT home_ground FROM table_name_96 WHERE location = "canterbury" |
Who is the captain of the team coached by Giles White? | CREATE TABLE table_name_28 (captain VARCHAR, coach VARCHAR) | SELECT captain FROM table_name_28 WHERE coach = "giles white" |
Which division is the Derbyshire Falcons in? | CREATE TABLE table_name_68 (division VARCHAR, team VARCHAR) | SELECT division FROM table_name_68 WHERE team = "derbyshire falcons" |
Which tie number had a home team of Derby County? | CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_52 WHERE home_team = "derby county" |
What was the score of the tie with an away team of Stoke City? | CREATE TABLE table_name_50 (score VARCHAR, away_team VARCHAR) | SELECT score FROM table_name_50 WHERE away_team = "stoke city" |
Which Artist has a Draw smaller than 14, and Points less than 73, and a Language of turkish? | CREATE TABLE table_name_70 (artist VARCHAR, language VARCHAR, draw VARCHAR, points VARCHAR) | SELECT artist FROM table_name_70 WHERE draw < 14 AND points < 73 AND language = "turkish" |
How many points does mia martini have? | CREATE TABLE table_name_1 (points VARCHAR, artist VARCHAR) | SELECT COUNT(points) FROM table_name_1 WHERE artist = "mia martini" |
Which Artist has an English translation of all this is music? | CREATE TABLE table_name_92 (artist VARCHAR, english_translation VARCHAR) | SELECT artist FROM table_name_92 WHERE english_translation = "all this is music" |
What athlete has a Grenoble place? | CREATE TABLE table_name_96 (athlete VARCHAR, place VARCHAR) | SELECT athlete FROM table_name_96 WHERE place = "grenoble" |
What is the Pick number of the Player from Syracuse? | CREATE TABLE table_name_76 (pick VARCHAR, college VARCHAR) | SELECT pick FROM table_name_76 WHERE college = "syracuse" |
What is the Offensive Guard Player from Mississippi State College with a Pick number larter than 44? | CREATE TABLE table_name_68 (player VARCHAR, college VARCHAR, pick VARCHAR, position VARCHAR) | SELECT player FROM table_name_68 WHERE pick > 44 AND position = "offensive guard" AND college = "mississippi state" |
What is the College of the Pick from Denver Broncos? | CREATE TABLE table_name_47 (college VARCHAR, team VARCHAR) | SELECT college FROM table_name_47 WHERE team = "denver broncos" |
What's the 2008 Status of Rosa Delauro? | CREATE TABLE table_name_15 (democratic VARCHAR) | SELECT 2008 AS _status FROM table_name_15 WHERE democratic = "rosa delauro" |
Who was the incumbent when Bo Itshaky was the Republican? | CREATE TABLE table_name_63 (incumbent VARCHAR, republican VARCHAR) | SELECT incumbent FROM table_name_63 WHERE republican = "bo itshaky" |
Who was the Republican in the district more than 4? | CREATE TABLE table_name_49 (republican VARCHAR, district INTEGER) | SELECT republican FROM table_name_49 WHERE district > 4 |
Who was the Republican when the green was Harold Burbank? | CREATE TABLE table_name_27 (republican VARCHAR, green VARCHAR) | SELECT republican FROM table_name_27 WHERE green = "harold burbank" |
Who was the Democratic when then Incumbent was Christopher Shays? | CREATE TABLE table_name_40 (democratic VARCHAR, incumbent VARCHAR) | SELECT democratic FROM table_name_40 WHERE incumbent = "christopher shays" |
Who is the director of Antz? | CREATE TABLE table_name_35 (director VARCHAR, title VARCHAR) | SELECT director FROM table_name_35 WHERE title = "antz" |
What studio has the director Philip Frank Messina? | CREATE TABLE table_name_71 (studio_s_ VARCHAR, director VARCHAR) | SELECT studio_s_ FROM table_name_71 WHERE director = "philip frank messina" |
What are the club number for the first round? | CREATE TABLE table_name_43 (clubs VARCHAR, round VARCHAR) | SELECT clubs FROM table_name_43 WHERE round = "first round" |
when there were 48 → 32 clubs? | CREATE TABLE table_name_82 (new_entries_this_round VARCHAR, clubs VARCHAR) | SELECT new_entries_this_round FROM table_name_82 WHERE clubs = "48 → 32" |
Where was the fight that took a time of 1:37? | CREATE TABLE table_name_94 (location VARCHAR, time VARCHAR) | SELECT location FROM table_name_94 WHERE time = "1:37" |
What was the resolution of the fight against kiuma kunioku with a time of 15:00? | CREATE TABLE table_name_79 (res VARCHAR, time VARCHAR, opponent VARCHAR) | SELECT res FROM table_name_79 WHERE time = "15:00" AND opponent = "kiuma kunioku" |
What is the average number of bronze medals won by Poland? | CREATE TABLE table_name_67 (bronze INTEGER, nation VARCHAR) | SELECT AVG(bronze) FROM table_name_67 WHERE nation = "poland" |
What is the average number of gold medals Switzerland received when they ranked larger than 1st and received fewer than 10 bronze medals and more than 1 silver medal? | CREATE TABLE table_name_90 (gold INTEGER, silver VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR) | SELECT AVG(gold) FROM table_name_90 WHERE total > 1 AND bronze < 10 AND nation = "switzerland" AND silver > 1 |
What is the rank when the col is larger than 0? | CREATE TABLE table_name_7 (rank VARCHAR, col__m_ INTEGER) | SELECT COUNT(rank) FROM table_name_7 WHERE col__m_ > 0 |
What is the elevation of Vanuatu, when the rank is smaller than 3? | CREATE TABLE table_name_22 (elevation__m_ INTEGER, country VARCHAR, rank VARCHAR) | SELECT AVG(elevation__m_) FROM table_name_22 WHERE country = "vanuatu" AND rank < 3 |
What's the platform of Super Mario All-Stars? | CREATE TABLE table_name_89 (platform VARCHAR, title VARCHAR) | SELECT platform FROM table_name_89 WHERE title = "super mario all-stars" |
What is the average number of losses when there are more than 4 wins, and the against matches is more than 1728? | CREATE TABLE table_name_44 (losses INTEGER, wins VARCHAR, against VARCHAR) | SELECT AVG(losses) FROM table_name_44 WHERE wins < 4 AND against > 1728 |
What is the total number of draws when there is 1 Win, and less than 1728 against matches? | CREATE TABLE table_name_41 (draws VARCHAR, wins VARCHAR, against VARCHAR) | SELECT COUNT(draws) FROM table_name_41 WHERE wins = 1 AND against < 1728 |
What is the highest number of wins when there are less than 2 losses? | CREATE TABLE table_name_80 (wins INTEGER, losses INTEGER) | SELECT MAX(wins) FROM table_name_80 WHERE losses < 2 |
What is the highest number of losses for the Cobden club when there is less than 1 win? | CREATE TABLE table_name_92 (losses INTEGER, club VARCHAR, wins VARCHAR) | SELECT MAX(losses) FROM table_name_92 WHERE club = "cobden" AND wins < 1 |
What is the average number of wins for the Terang Club, when there are less than 0 draws? | CREATE TABLE table_name_43 (wins INTEGER, club VARCHAR, draws VARCHAR) | SELECT AVG(wins) FROM table_name_43 WHERE club = "terang" AND draws < 0 |
Who was the 2nd place team when the location was Tulsa, OK before 1956? | CREATE TABLE table_name_93 (host_location VARCHAR, year VARCHAR) | SELECT 2 AS nd_place_team FROM table_name_93 WHERE host_location = "tulsa, ok" AND year < 1956 |
In what Year is the Location of the Festival Koror, Palau? | CREATE TABLE table_name_9 (year INTEGER, location VARCHAR) | SELECT SUM(year) FROM table_name_9 WHERE location = "koror, palau" |
What is the Location of the 10th Iteration? | CREATE TABLE table_name_40 (location VARCHAR, iteration VARCHAR) | SELECT location FROM table_name_40 WHERE iteration = "10th" |
How many counties have people before profit as the party, and a borough greater than 0? | CREATE TABLE table_name_16 (county INTEGER, party VARCHAR, borough VARCHAR) | SELECT SUM(county) FROM table_name_16 WHERE party = "people before profit" AND borough > 0 |
How many counties have 2 as the total, 0 as the city with a town less than 1? | CREATE TABLE table_name_54 (county INTEGER, town VARCHAR, total VARCHAR, city VARCHAR) | SELECT SUM(county) FROM table_name_54 WHERE total = 2 AND city = 0 AND town < 1 |
What average city has a total less than 2, with a borough greater than 0? | CREATE TABLE table_name_70 (city INTEGER, total VARCHAR, borough VARCHAR) | SELECT AVG(city) FROM table_name_70 WHERE total < 2 AND borough > 0 |
What is the rank # of the swimmer in Lane 5? | CREATE TABLE table_name_21 (rank VARCHAR, lane VARCHAR) | SELECT COUNT(rank) FROM table_name_21 WHERE lane = 5 |
What is the total fat with a smoke point of °c () and 37g of polyunsaturated fat? | CREATE TABLE table_name_33 (total_fat VARCHAR, smoke_point VARCHAR, polyunsaturated_fat VARCHAR) | SELECT total_fat FROM table_name_33 WHERE smoke_point = "°c ()" AND polyunsaturated_fat = "37g" |
What is the saturated fat with 28g of polyunsaturated fat? | CREATE TABLE table_name_6 (saturated_fat VARCHAR, polyunsaturated_fat VARCHAR) | SELECT saturated_fat FROM table_name_6 WHERE polyunsaturated_fat = "28g" |
What is the monounsaturated fat with 15g of saturated fat? | CREATE TABLE table_name_22 (monounsaturated_fat VARCHAR, saturated_fat VARCHAR) | SELECT monounsaturated_fat FROM table_name_22 WHERE saturated_fat = "15g" |
What is the saturated fat with a total fat of 100g and 11g of polyunsaturated fat? | CREATE TABLE table_name_94 (saturated_fat VARCHAR, total_fat VARCHAR, polyunsaturated_fat VARCHAR) | SELECT saturated_fat FROM table_name_94 WHERE total_fat = "100g" AND polyunsaturated_fat = "11g" |
What is the monounsaturated fat with a smoke point of °c (), a total fat of 100g, 11g of polyunsaturated fat, and 14g of saturated fat? | CREATE TABLE table_name_85 (monounsaturated_fat VARCHAR, saturated_fat VARCHAR, polyunsaturated_fat VARCHAR, smoke_point VARCHAR, total_fat VARCHAR) | SELECT monounsaturated_fat FROM table_name_85 WHERE smoke_point = "°c ()" AND total_fat = "100g" AND polyunsaturated_fat = "11g" AND saturated_fat = "14g" |
What is the polyunsaturated fat with a smoke point of °c (), a total fat of 100g and 63g of monounsaturated fat? | CREATE TABLE table_name_28 (polyunsaturated_fat VARCHAR, monounsaturated_fat VARCHAR, smoke_point VARCHAR, total_fat VARCHAR) | SELECT polyunsaturated_fat FROM table_name_28 WHERE smoke_point = "°c ()" AND total_fat = "100g" AND monounsaturated_fat = "63g" |
What is the win % of the 2003 atp world tour finals? | CREATE TABLE table_name_14 (win__percentage VARCHAR) | SELECT win__percentage FROM table_name_14 WHERE 2003 = "atp world tour finals" |
What is the 2006 value of the 2011 grand slam tournaments? | CREATE TABLE table_name_64 (Id VARCHAR) | SELECT 2006 FROM table_name_64 WHERE 2011 = "grand slam tournaments" |
What is the 2007 value with a 1r in 2009? | CREATE TABLE table_name_38 (Id VARCHAR) | SELECT 2007 FROM table_name_38 WHERE 2009 = "1r" |
What is the 2007 value with a 4r in 2006, a 1r in 2004, and a 4r in 2009? | CREATE TABLE table_name_48 (Id VARCHAR) | SELECT 2007 FROM table_name_48 WHERE 2006 = "4r" AND 2004 = "1r" AND 2009 = "4r" |
who is the home team when the away team is rivercity rage? | CREATE TABLE table_name_91 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_91 WHERE away_team = "rivercity rage" |
who is the winner when the score is 71-62? | CREATE TABLE table_name_64 (winner VARCHAR, score VARCHAR) | SELECT winner FROM table_name_64 WHERE score = "71-62" |
who is the winner when the home team is sioux falls storm and the year is earlier than 2012? | CREATE TABLE table_name_48 (winner VARCHAR, home_team VARCHAR, year VARCHAR) | SELECT winner FROM table_name_48 WHERE home_team = "sioux falls storm" AND year < 2012 |
what is the score when the away team is rivercity rage? | CREATE TABLE table_name_99 (score VARCHAR, away_team VARCHAR) | SELECT score FROM table_name_99 WHERE away_team = "rivercity rage" |
what is the year when the score is 59-32? | CREATE TABLE table_name_37 (year INTEGER, score VARCHAR) | SELECT SUM(year) FROM table_name_37 WHERE score = "59-32" |
What is the venue established after 1948? | CREATE TABLE table_name_77 (venue VARCHAR, established INTEGER) | SELECT venue FROM table_name_77 WHERE established > 1948 |
What is the league established before 1930 with the rayo vallecano club? | CREATE TABLE table_name_26 (league VARCHAR, established VARCHAR, club VARCHAR) | SELECT league FROM table_name_26 WHERE established < 1930 AND club = "rayo vallecano" |
What sport is the rayo vallecano club in? | CREATE TABLE table_name_64 (sport VARCHAR, club VARCHAR) | SELECT sport FROM table_name_64 WHERE club = "rayo vallecano" |
What sport is the cb estudiantes club in? | CREATE TABLE table_name_46 (sport VARCHAR, club VARCHAR) | SELECT sport FROM table_name_46 WHERE club = "cb estudiantes" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.