answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT division FROM table_name_96 WHERE playoffs = "did not qualify" AND league = "usl pdl" AND regular_season = "7th, southeast" | What division did the Nashville Metros play in during the year that they did not qualify for the Playoffs, where in the USL PDL League, and had the Regular Season 7th, Southeast? | CREATE TABLE table_name_96 (division VARCHAR, regular_season VARCHAR, playoffs VARCHAR, league VARCHAR) |
SELECT third_place FROM table_23647668_2 WHERE season = 1980 | Who was in third place in the 1980 season? | CREATE TABLE table_23647668_2 (third_place VARCHAR, season VARCHAR) |
SELECT MIN(pick__number) FROM table_25085059_1 WHERE college = "Kentucky" | What draft pick number did Kentucky get? | CREATE TABLE table_25085059_1 (pick__number INTEGER, college VARCHAR) |
SELECT date FROM table_name_59 WHERE opponents_in_the_final = "valeria casillo lilly raffa" | Which Date has Opponents in the final of valeria casillo lilly raffa? | CREATE TABLE table_name_59 (date VARCHAR, opponents_in_the_final VARCHAR) |
SELECT team FROM table_name_51 WHERE best = "1:24.152" | What Team had a 1:24.152 Best? | CREATE TABLE table_name_51 (team VARCHAR, best VARCHAR) |
SELECT 2012 AS _employees__total_ FROM table_name_63 WHERE rank__2012_ = 7 | What is the 2012 Employees (Total) when the rank (2012) is 7? | CREATE TABLE table_name_63 (rank__2012_ VARCHAR) |
SELECT result FROM table_name_38 WHERE year = 2012 | What result in the table is from the year 2012? | CREATE TABLE table_name_38 (result VARCHAR, year VARCHAR) |
SELECT COUNT(high_assists) FROM table_27902171_8 WHERE record = "34-27" | Name the total number of high asists for 34-27 | CREATE TABLE table_27902171_8 (high_assists VARCHAR, record VARCHAR) |
SELECT resident_state FROM table_name_83 WHERE election_year = 1864 | What is the resident state for the president elected in 1864? | CREATE TABLE table_name_83 (resident_state VARCHAR, election_year VARCHAR) |
SELECT status FROM table_name_19 WHERE against = 24 | What is the status of the match with 24 against? | CREATE TABLE table_name_19 (status VARCHAR, against VARCHAR) |
SELECT T1.Title, T2.AlbumID, COUNT(*) FROM ALBUM AS T1 JOIN TRACK AS T2 ON T1.AlbumId = T2.AlbumId GROUP BY T2.AlbumID | Show the album names, ids and the number of tracks for each album. | CREATE TABLE ALBUM (Title VARCHAR, AlbumId VARCHAR); CREATE TABLE TRACK (AlbumID VARCHAR, AlbumId VARCHAR) |
SELECT MAX(grid) FROM table_name_95 WHERE time_retired = "fuel pump" AND laps > 26 | what is the highest grid when the time/retired is fuel pump and the laps is more than 26? | CREATE TABLE table_name_95 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) |
SELECT week_5_sept_28 FROM table_name_81 WHERE week_10_nov_2 = "maryland (6-2)" | What was the week 5 opponent for the year with a week 10 opponent of Maryland (6-2)? | CREATE TABLE table_name_81 (week_5_sept_28 VARCHAR, week_10_nov_2 VARCHAR) |
SELECT date FROM table_name_87 WHERE venue = "princes park" | Name the date for princes park | CREATE TABLE table_name_87 (date VARCHAR, venue VARCHAR) |
SELECT yam_[y_] FROM table_name_80 WHERE maize___corn_[a_] = "1355" | What is the Yam amount when the Maze/Corn amount is 1355? | CREATE TABLE table_name_80 (yam_ VARCHAR, y_ VARCHAR, maize___corn_ VARCHAR, a_ VARCHAR) |
SELECT color_analyst_s_ FROM table_2724704_5 WHERE studio_analyst_s_ = "Terry Bowden" AND tv_rating = "17.2" | Name the color analyst for terry bowden and 17.2 | CREATE TABLE table_2724704_5 (color_analyst_s_ VARCHAR, studio_analyst_s_ VARCHAR, tv_rating VARCHAR) |
SELECT series__number FROM table_18646432_1 WHERE original_air_date = "November 11, 1996" | Name the series number that aired on november 11, 1996 | CREATE TABLE table_18646432_1 (series__number VARCHAR, original_air_date VARCHAR) |
SELECT date FROM table_name_19 WHERE home_team = "collingwood" | What is the date for home team Collingwood? | CREATE TABLE table_name_19 (date VARCHAR, home_team VARCHAR) |
SELECT opponent FROM table_name_50 WHERE attendance = "103,158" | What two teams were competing in the match with 103,158 in attendance? | CREATE TABLE table_name_50 (opponent VARCHAR, attendance VARCHAR) |
SELECT home_town FROM table_20785990_2 WHERE name = "David Noel" | What is the home town of David Noel? | CREATE TABLE table_20785990_2 (home_town VARCHAR, name VARCHAR) |
SELECT rowers FROM table_name_96 WHERE time = "5:54.57" | Who are the rowers with the time of 5:54.57? | CREATE TABLE table_name_96 (rowers VARCHAR, time VARCHAR) |
SELECT MIN(geo_id) FROM table_18600760_12 WHERE water__sqmi_ = "0.457" | What is the geo id when water is 0.457? | CREATE TABLE table_18600760_12 (geo_id INTEGER, water__sqmi_ VARCHAR) |
SELECT museum AS city FROM table_name_48 WHERE name = "sue" | What city has the museum that holds the Sue specimen? | CREATE TABLE table_name_48 (museum VARCHAR, name VARCHAR) |
SELECT australian FROM table_name_61 WHERE british = "ɒs" | Which Australian has British of ɒs? | CREATE TABLE table_name_61 (australian VARCHAR, british VARCHAR) |
SELECT MAX(first_season) FROM table_12896884_1 WHERE institution = "University of Saskatchewan" | What year did University of Saskatchewan have their first season? | CREATE TABLE table_12896884_1 (first_season INTEGER, institution VARCHAR) |
SELECT written_by FROM table_24639086_3 WHERE season__number = "2.08" | If the season number is 2.08, who was the episode written by? | CREATE TABLE table_24639086_3 (written_by VARCHAR, season__number VARCHAR) |
SELECT authority FROM table_name_54 WHERE decile = 6 AND area = "levin" AND roll = 226 | What authority controls the school in Levin that has a decile of 6, and a roll of 226? | CREATE TABLE table_name_54 (authority VARCHAR, roll VARCHAR, decile VARCHAR, area VARCHAR) |
SELECT MAX(game) FROM table_27712702_11 | What is the largest game number? | CREATE TABLE table_27712702_11 (game INTEGER) |
SELECT COUNT(song_choice) FROM table_12310814_1 WHERE original_artist = "Anna Nalick" | What's the total number of songs originally performed by Anna Nalick? | CREATE TABLE table_12310814_1 (song_choice VARCHAR, original_artist VARCHAR) |
SELECT education FROM table_23050383_1 WHERE country = "Nepal" | What is the education in Nepal? | CREATE TABLE table_23050383_1 (education VARCHAR, country VARCHAR) |
SELECT position FROM table_name_71 WHERE year > 1998 AND notes = "2:31:40" | What position did he finish after 1998 and a note time of 2:31:40? | CREATE TABLE table_name_71 (position VARCHAR, year VARCHAR, notes VARCHAR) |
SELECT customer_details FROM customers EXCEPT SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id | Find the names of customers who have no policies associated. | CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_details VARCHAR); CREATE TABLE policies (customer_id VARCHAR) |
SELECT date FROM table_name_55 WHERE surface = "clay" AND opponent = "andrea hlaváčková" | What date was the match on a clay surface against Andrea Hlaváčková? | CREATE TABLE table_name_55 (date VARCHAR, surface VARCHAR, opponent VARCHAR) |
SELECT AVG(december) FROM table_name_35 WHERE game = 37 AND points < 47 | Which December has a Game of 37 and Points smaller than 47? | CREATE TABLE table_name_35 (december INTEGER, game VARCHAR, points VARCHAR) |
SELECT away_team AS score FROM table_name_19 WHERE home_team = "carlton" | What was the away teams score when they played Carlton? | CREATE TABLE table_name_19 (away_team VARCHAR, home_team VARCHAR) |
SELECT runners_up FROM table_name_80 WHERE champions = "ivan lendl" AND name_of_tournament = "seiko super tennis" AND year < 1990 | What were the Runners-up prior to 1990 when Ivan Lendl was Champion in the Seiko Super Tennis Tournament? | CREATE TABLE table_name_80 (runners_up VARCHAR, year VARCHAR, champions VARCHAR, name_of_tournament VARCHAR) |
SELECT runner_s__up FROM table_name_1 WHERE margin = "1 stroke" | Who was the runner-up when the margin was 1 stroke? | CREATE TABLE table_name_1 (runner_s__up VARCHAR, margin VARCHAR) |
SELECT school FROM table_11677100_3 WHERE player = "Kerry Wood" | What school does Kerry Wood play for? | CREATE TABLE table_11677100_3 (school VARCHAR, player VARCHAR) |
SELECT power FROM table_name_98 WHERE class = "lp" AND identifier = "cbli" | What power belongs to the LP Class and has an Identifier of CBLI? | CREATE TABLE table_name_98 (power VARCHAR, class VARCHAR, identifier VARCHAR) |
SELECT COUNT(no_in_season) FROM table_26168687_5 WHERE vessel_operator = "Beluga Shipping" | Name the number of season for beluga shipping | CREATE TABLE table_26168687_5 (no_in_season VARCHAR, vessel_operator VARCHAR) |
SELECT visitor FROM table_11964047_7 WHERE record = "25–18" | who are all the visitor with a record of 25–18 | CREATE TABLE table_11964047_7 (visitor VARCHAR, record VARCHAR) |
SELECT fire FROM table_name_24 WHERE metal = "dry" | Which fire has dry metal? | CREATE TABLE table_name_24 (fire VARCHAR, metal VARCHAR) |
SELECT category FROM table_name_12 WHERE nominated_work = "24" | Which category has 24 nominated work? | CREATE TABLE table_name_12 (category VARCHAR, nominated_work VARCHAR) |
SELECT indians FROM table_27257896_2 WHERE salary_range = "4,000-9,000" | If the salary range is 4,000-9,000, what is the Indians %? | CREATE TABLE table_27257896_2 (indians VARCHAR, salary_range VARCHAR) |
SELECT years_for_jazz FROM table_name_29 WHERE player = "troy hudson" | What years did Troy Hudson play for the Jazz? | CREATE TABLE table_name_29 (years_for_jazz VARCHAR, player VARCHAR) |
SELECT FacID FROM Faculty_participates_in INTERSECT SELECT advisor FROM Student | Show the ids of all the faculty members who participate in an activity and advise a student. | CREATE TABLE Student (FacID VARCHAR, advisor VARCHAR); CREATE TABLE Faculty_participates_in (FacID VARCHAR, advisor VARCHAR) |
SELECT population__percentage_of_eu FROM table_24066938_1 WHERE pop_density_people_km_2 = "110.8" | What percentage of the EU's population lives in the country with a population density of 110.8 people per square kilometer? | CREATE TABLE table_24066938_1 (population__percentage_of_eu VARCHAR, pop_density_people_km_2 VARCHAR) |
SELECT division_record FROM table_name_39 WHERE team = "senators" | What is the Senators' division record? | CREATE TABLE table_name_39 (division_record VARCHAR, team VARCHAR) |
SELECT mls_team FROM table_29626583_3 WHERE position = "Midfielder" AND player = "Konrad Warzycha" | Which team has a midfielder of konrad warzycha? | CREATE TABLE table_29626583_3 (mls_team VARCHAR, position VARCHAR, player VARCHAR) |
SELECT canadian_chapters FROM table_28436909_4 WHERE founding_date = "1872-10-10" | When 1872-10-10 is the founding date what are the canadian chapters? | CREATE TABLE table_28436909_4 (canadian_chapters VARCHAR, founding_date VARCHAR) |
SELECT COUNT(sack) FROM table_name_46 WHERE tackles > 1 AND assisted < 3 AND yards > 0 | How many sacks for the player with over 1 tackle, under 3 assisted tackles, and over 0 yards? | CREATE TABLE table_name_46 (sack VARCHAR, yards VARCHAR, tackles VARCHAR, assisted VARCHAR) |
SELECT position FROM table_name_8 WHERE pick > 32 AND team = "atlanta braves" | what is the position when the pick is higher than 32 and the team is atlanta braves? | CREATE TABLE table_name_8 (position VARCHAR, pick VARCHAR, team VARCHAR) |
SELECT employee_id FROM job_history GROUP BY employee_id HAVING COUNT(*) >= 2 | display the ID for those employees who did two or more jobs in the past. | CREATE TABLE job_history (employee_id VARCHAR) |
SELECT score FROM table_name_57 WHERE home_team = "burnley" | What is the Score of the Burnley Home game? | CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR) |
SELECT COUNT(round) FROM table_name_66 WHERE position = "tight end" | What is the total round of the tight end position player? | CREATE TABLE table_name_66 (round VARCHAR, position VARCHAR) |
SELECT AVG(debut_year) FROM table_name_83 WHERE player = "terry fulton" AND games < 51 | what is the debut year for player terry fulton with games less than 51? | CREATE TABLE table_name_83 (debut_year INTEGER, player VARCHAR, games VARCHAR) |
SELECT t1.name, t1.age FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id ORDER BY t2.num_of_ticket DESC LIMIT 1 | Find the name and age of the visitor who bought the most tickets at once. | CREATE TABLE visitor (name VARCHAR, age VARCHAR, id VARCHAR); CREATE TABLE visit (visitor_id VARCHAR, num_of_ticket VARCHAR) |
SELECT covered_song FROM table_name_7 WHERE album = "cover version iii" | What is the name of the Covered Song when the Album shows cover version iii? | CREATE TABLE table_name_7 (covered_song VARCHAR, album VARCHAR) |
SELECT points_against FROM table_27293285_2 WHERE points_for = "353" | How many points against did the club who had 353 points for have? | CREATE TABLE table_27293285_2 (points_against VARCHAR, points_for VARCHAR) |
SELECT COUNT(latitude) FROM table_18600760_15 WHERE water__sqmi_ = "0.081" | how many latitudes have 0.081 (sqmi) of water? | CREATE TABLE table_18600760_15 (latitude VARCHAR, water__sqmi_ VARCHAR) |
SELECT COUNT(peak) FROM table_name_16 WHERE hk_viewers = "1.97 million" AND finale > 33 | With 1.97 million HK viewers and a finale more than 33, what was the total number of peaks? | CREATE TABLE table_name_16 (peak VARCHAR, hk_viewers VARCHAR, finale VARCHAR) |
SELECT driver FROM table_name_59 WHERE grid = 3 | Which driver has a grid of 3? | CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR) |
SELECT sacks FROM table_27487336_1 WHERE interceptions = "19" | What is every value for sacks if interceptions is 19? | CREATE TABLE table_27487336_1 (sacks VARCHAR, interceptions VARCHAR) |
SELECT AVG(pop__2010_) FROM table_name_21 WHERE ansi_code < 1036864 AND longitude > -98.46611 AND land___sqmi__ < 36.238 AND latitude < 48.144102 | Which Pop (2010) has an ANSI code smaller than 1036864, and a Longitude larger than -98.46611, and a Land (sqmi) smaller than 36.238, and a Latitude smaller than 48.144102? | CREATE TABLE table_name_21 (pop__2010_ INTEGER, latitude VARCHAR, land___sqmi__ VARCHAR, ansi_code VARCHAR, longitude VARCHAR) |
SELECT population FROM table_name_75 WHERE status = "rural community" | What is the Population of the Rural Community | CREATE TABLE table_name_75 (population VARCHAR, status VARCHAR) |
SELECT COUNT(technology) FROM table_13677808_1 WHERE rank = "Denmark" | How many times is denmark ranked in technology? | CREATE TABLE table_13677808_1 (technology VARCHAR, rank VARCHAR) |
SELECT tournament FROM table_name_7 WHERE score = "7–5, 2–6, 7–6" | Which tournament had a score of 7–5, 2–6, 7–6? | CREATE TABLE table_name_7 (tournament VARCHAR, score VARCHAR) |
SELECT result FROM table_name_52 WHERE goals = "deacon 6/6" | I want the result for goals which has goals of deacon 6/6 | CREATE TABLE table_name_52 (result VARCHAR, goals VARCHAR) |
SELECT name FROM table_name_38 WHERE tries = 1 AND club = "munster" | Who was part of Club Munster with 1 try? | CREATE TABLE table_name_38 (name VARCHAR, tries VARCHAR, club VARCHAR) |
SELECT date FROM table_1940012_2 WHERE runner_s__up = "Song-Hee Kim" | When did the tournament, in which the runner-up was Song-Hee Kim, happen | CREATE TABLE table_1940012_2 (date VARCHAR, runner_s__up VARCHAR) |
SELECT d_42_√ FROM table_name_14 WHERE d_46_√ = "majority→" | What's the D 42 √ when D 46 √ is majority→? | CREATE TABLE table_name_14 (d_42_√ VARCHAR, d_46_√ VARCHAR) |
SELECT coverage_area FROM table_name_65 WHERE genre = "music" AND station = "muzik fm" | What is the coverage area of muzik fm station, which has a music genre? | CREATE TABLE table_name_65 (coverage_area VARCHAR, genre VARCHAR, station VARCHAR) |
SELECT AVG(time) FROM table_name_24 WHERE rank > 2 AND name = "andy turner" | What is the average time with a rank lower than 2 for Andy Turner? | CREATE TABLE table_name_24 (time INTEGER, rank VARCHAR, name VARCHAR) |
SELECT COUNT(*) FROM Staff | How many staff in total? | CREATE TABLE Staff (Id VARCHAR) |
SELECT 2009 FROM table_name_81 WHERE 2004 = "2r" AND 1993 = "a" | What is 2009, when 2004 is 2R, and when 1993 is A? | CREATE TABLE table_name_81 (Id VARCHAR) |
SELECT proposed FROM table_name_65 WHERE listed = "12/16/1994" AND county = "beaufort" | What date was proposed when the listed date was 12/16/1994 in the County of beaufort? | CREATE TABLE table_name_65 (proposed VARCHAR, listed VARCHAR, county VARCHAR) |
SELECT MIN(attendance) FROM table_name_98 WHERE visitor = "edmonton" | Name the least attendance with visitor of edmonton | CREATE TABLE table_name_98 (attendance INTEGER, visitor VARCHAR) |
SELECT MIN(points) FROM table_name_6 WHERE points_for > 438 AND points_against > 943 | What are the least amount of points that have points for greater than 438, and points against greater than 943? | CREATE TABLE table_name_6 (points INTEGER, points_for VARCHAR, points_against VARCHAR) |
SELECT COUNT(broadcast_date) FROM table_29135051_3 WHERE singer_s_ = "The Overtones" | how many broadcaste dates features the overtones | CREATE TABLE table_29135051_3 (broadcast_date VARCHAR, singer_s_ VARCHAR) |
SELECT score FROM table_name_48 WHERE date = "september 11" | Name the score for september 11 | CREATE TABLE table_name_48 (score VARCHAR, date VARCHAR) |
SELECT title FROM table_24222929_2 WHERE directed_by = "John Terlesky" | Name the title that was directed by john terlesky | CREATE TABLE table_24222929_2 (title VARCHAR, directed_by VARCHAR) |
SELECT year_s__won FROM table_name_58 WHERE total = 146 | What year was the 146 total? | CREATE TABLE table_name_58 (year_s__won VARCHAR, total VARCHAR) |
SELECT circuit FROM table_name_63 WHERE event = "1997 japanese formula 3 championship" | The 1997 Japanese Formula 3 Championship is part of what circuit? | CREATE TABLE table_name_63 (circuit VARCHAR, event VARCHAR) |
SELECT object_type FROM table_name_53 WHERE ngc_number > 6357 AND declination___j2000__ = "°45′34″" | Which object type had an NGC number greater than 6357 and a declination (J2000) of °45′34″? | CREATE TABLE table_name_53 (object_type VARCHAR, ngc_number VARCHAR, declination___j2000__ VARCHAR) |
SELECT AVG(week) FROM table_name_75 WHERE attendance < 22 OFFSET 604 | What is the average week number of all the matches where less than 22,604 people attended? | CREATE TABLE table_name_75 (week INTEGER, attendance INTEGER) |
SELECT Publisher FROM publication GROUP BY Publisher HAVING COUNT(*) > 1 | Show publishers that have more than one publication. | CREATE TABLE publication (Publisher VARCHAR) |
SELECT MAX(game) FROM table_21091157_1 | Name the most game | CREATE TABLE table_21091157_1 (game INTEGER) |
SELECT arranger_s_ FROM table_name_8 WHERE lyricist_s_ = "sirapatara kalayapanid" | Who was the arranger for the song that had a lyricist of Sirapatara Kalayapanid? | CREATE TABLE table_name_8 (arranger_s_ VARCHAR, lyricist_s_ VARCHAR) |
SELECT result FROM table_name_79 WHERE date = "january 5, 1926" | What was the result of the game on January 5, 1926? | CREATE TABLE table_name_79 (result VARCHAR, date VARCHAR) |
SELECT MAX(top_25) FROM table_name_17 WHERE top_10 > 9 AND events < 29 | What is the highest top-25 with more than 9 top-10 but less than 29 events? | CREATE TABLE table_name_17 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR) |
SELECT muslim___percentage_of_total_population_ FROM table_1532779_1 WHERE population_of_england_and_wales_000 = 49634 | What is the muslim percentage of the 49634 population of england and wales 000? | CREATE TABLE table_1532779_1 (muslim___percentage_of_total_population_ VARCHAR, population_of_england_and_wales_000 VARCHAR) |
SELECT AVG(latitude) FROM table_name_15 WHERE water__sqmi_ < 2.106 AND county = "dickey" AND pop__2010_ < 95 | What is the average latitude for townships in Dickey county with water under 2.106 sqmi and population under 95? | CREATE TABLE table_name_15 (latitude INTEGER, pop__2010_ VARCHAR, water__sqmi_ VARCHAR, county VARCHAR) |
SELECT AVG(silver) FROM table_name_8 WHERE gold > 3 AND nation = "soviet union (urs)" AND bronze > 26 | What is the average silver that has a gold greater than 3, with soviet union (urs) as the nation, and a bronze greater than 26? | CREATE TABLE table_name_8 (silver INTEGER, bronze VARCHAR, gold VARCHAR, nation VARCHAR) |
SELECT 3 AS _rd FROM table_name_19 WHERE season < 4 AND lost = 61 | Name the 3rd for season less than 4 and lost of 61 | CREATE TABLE table_name_19 (season VARCHAR, lost VARCHAR) |
SELECT team_1 FROM table_name_81 WHERE team_2 = "avigliano (basilicata)" | Which was the team 1 that had a team 2 which was avigliano (basilicata)? | CREATE TABLE table_name_81 (team_1 VARCHAR, team_2 VARCHAR) |
SELECT driver___passenger FROM table_16729457_16 WHERE position = 8 | Name the driver/passenger for position 8 | CREATE TABLE table_16729457_16 (driver___passenger VARCHAR, position VARCHAR) |
SELECT opponent FROM table_name_79 WHERE score = "84-88 (ot)" | Which opponent has a score of 84-88 (ot)? | CREATE TABLE table_name_79 (opponent VARCHAR, score VARCHAR) |
SELECT position FROM table_name_17 WHERE school_country = "tulsa" | What position does the player from tulsa play? | CREATE TABLE table_name_17 (position VARCHAR, school_country VARCHAR) |
SELECT country FROM table_name_61 WHERE name = "azeri tv tower" | Which Country has azeri tv tower? | CREATE TABLE table_name_61 (country VARCHAR, name VARCHAR) |
SELECT fuel_gas FROM table_1868929_1 WHERE upper_index_mj__nm_3 = "92.32" | Name the fuel gas for upper index mj/nm3 for 92.32 | CREATE TABLE table_1868929_1 (fuel_gas VARCHAR, upper_index_mj__nm_3 VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.