question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
what is the minimum attendance with record being 4–6 | CREATE TABLE table_14102379_4 (attendance INTEGER, record VARCHAR) | SELECT MIN(attendance) FROM table_14102379_4 WHERE record = "4–6" |
What's Yurchikhin Fyodor Yurchikhin's number? | CREATE TABLE table_14125006_1 (number VARCHAR, astronaut VARCHAR) | SELECT number FROM table_14125006_1 WHERE astronaut = "Yurchikhin Fyodor Yurchikhin" |
How long was the walk numbered at 17? | CREATE TABLE table_14125006_1 (total_time_hours VARCHAR, number VARCHAR) | SELECT total_time_hours AS :minutes FROM table_14125006_1 WHERE number = 17 |
How many agencies did Budarin Nikolai Budarin working for? | CREATE TABLE table_14125006_1 (agency VARCHAR, astronaut VARCHAR) | SELECT COUNT(agency) FROM table_14125006_1 WHERE astronaut = "Budarin Nikolai Budarin" |
What agency does Anderson Clayton Anderson work for? | CREATE TABLE table_14125006_1 (agency VARCHAR, astronaut VARCHAR) | SELECT agency FROM table_14125006_1 WHERE astronaut = "Anderson Clayton Anderson" |
what's the year with change being +8.0% | CREATE TABLE table_141541_5 (year VARCHAR, change VARCHAR) | SELECT year FROM table_141541_5 WHERE change = "+8.0%" |
what's the domestic freight with change being +8.0% | CREATE TABLE table_141541_5 (domestic_freight VARCHAR, change VARCHAR) | SELECT domestic_freight FROM table_141541_5 WHERE change = "+8.0%" |
what is the maximum international mail with total freight and mail being 145044 | CREATE TABLE table_141541_5 (international_mail INTEGER, total_freight_and_mail VARCHAR) | SELECT MAX(international_mail) FROM table_141541_5 WHERE total_freight_and_mail = 145044 |
The results for gt2 winning team is all lars-erik nielsen allan simonsen richard westbrook. | CREATE TABLE table_14154271_2 (results VARCHAR, gt2_winning_team VARCHAR) | SELECT results FROM table_14154271_2 WHERE gt2_winning_team = "Lars-Erik Nielsen Allan Simonsen Richard Westbrook" |
Jos verstappen jeroen bleekemolen is on Imp2 winning team where all are rnd. | CREATE TABLE table_14154271_2 (rnd VARCHAR, lmp2_winning_team VARCHAR) | SELECT rnd FROM table_14154271_2 WHERE lmp2_winning_team = "Jos Verstappen Jeroen Bleekemolen" |
what is the minimum population with canton being redange | CREATE TABLE table_1417184_1 (population INTEGER, canton VARCHAR) | SELECT MIN(population) FROM table_1417184_1 WHERE canton = "Redange" |
how many canton with commune being waldbillig | CREATE TABLE table_1417184_1 (canton VARCHAR, commune VARCHAR) | SELECT COUNT(canton) FROM table_1417184_1 WHERE commune = "Waldbillig" |
What is the arrival time of greenbat | CREATE TABLE table_142159_1 (arrival INTEGER, name VARCHAR) | SELECT MAX(arrival) FROM table_142159_1 WHERE name = "Greenbat" |
Which number has Engine Shed as the location | CREATE TABLE table_142159_1 (no VARCHAR, location VARCHAR) | SELECT no FROM table_142159_1 WHERE location = "Engine shed" |
What is the name with the builder of Kerr Stuart | CREATE TABLE table_142159_1 (name VARCHAR, builder VARCHAR) | SELECT name FROM table_142159_1 WHERE builder = "Kerr Stuart" |
Who is the builder for the location Irton Road shed | CREATE TABLE table_142159_1 (builder VARCHAR, location VARCHAR) | SELECT builder FROM table_142159_1 WHERE location = "Irton Road shed" |
Whats the status of the trains at location Museum | CREATE TABLE table_142159_1 (status VARCHAR, location VARCHAR) | SELECT status FROM table_142159_1 WHERE location = "Museum" |
How many are named River Esk | CREATE TABLE table_142159_1 (built VARCHAR, name VARCHAR) | SELECT COUNT(built) FROM table_142159_1 WHERE name = "River Esk" |
timothy truman worked on what dates | CREATE TABLE table_1420954_1 (publication_dates VARCHAR, artist_s_ VARCHAR) | SELECT publication_dates FROM table_1420954_1 WHERE artist_s_ = "Timothy Truman" |
timothy truman worked on what books | CREATE TABLE table_1420954_1 (book_title VARCHAR, artist_s_ VARCHAR) | SELECT book_title FROM table_1420954_1 WHERE artist_s_ = "Timothy Truman" |
elaine lee worked on how many issues | CREATE TABLE table_1420954_1 (issues VARCHAR, writer VARCHAR) | SELECT COUNT(issues) FROM table_1420954_1 WHERE writer = "Elaine Lee" |
what's the regionalliga nord with regionalliga süd being 1. fc nuremberg spvgg greuther fürth | CREATE TABLE table_14242137_11 (regionalliga_nord VARCHAR, regionalliga_süd VARCHAR) | SELECT regionalliga_nord FROM table_14242137_11 WHERE regionalliga_süd = "1. FC Nuremberg SpVgg Greuther Fürth" |
what's the season with regionalliga nord being vfb oldenburg | CREATE TABLE table_14242137_11 (season VARCHAR, regionalliga_nord VARCHAR) | SELECT season FROM table_14242137_11 WHERE regionalliga_nord = "VfB Oldenburg" |
what's the regionalliga nord with regionalliga west/südwest being fc gütersloh rot-weiß essen | CREATE TABLE table_14242137_11 (regionalliga_nord VARCHAR, regionalliga_west_südwest VARCHAR) | SELECT regionalliga_nord FROM table_14242137_11 WHERE regionalliga_west_südwest = "FC Gütersloh Rot-Weiß Essen" |
what's the season with regionalliga west/südwest being arminia bielefeld | CREATE TABLE table_14242137_11 (season VARCHAR, regionalliga_west_südwest VARCHAR) | SELECT season FROM table_14242137_11 WHERE regionalliga_west_südwest = "Arminia Bielefeld" |
what's the regionalliga west/südwest with regionalliga süd being stuttgarter kickers | CREATE TABLE table_14242137_11 (regionalliga_west_südwest VARCHAR, regionalliga_süd VARCHAR) | SELECT regionalliga_west_südwest FROM table_14242137_11 WHERE regionalliga_süd = "Stuttgarter Kickers" |
When Spencer is the county what is total of the population (2010) (rank)? | CREATE TABLE table_14253123_1 (population__2010___rank_ VARCHAR, county_name VARCHAR) | SELECT COUNT(population__2010___rank_) FROM table_14253123_1 WHERE county_name = "Spencer" |
When Vincennes is the county seat what is the area sq mi (km 2 ) (rank) ? | CREATE TABLE table_14253123_1 (area_sq_mi__km_2____rank_ VARCHAR, county_seat VARCHAR) | SELECT area_sq_mi__km_2____rank_ FROM table_14253123_1 WHERE county_seat = "Vincennes" |
When the area sq mi (km 2 ) (rank) is sqmi (km2) (5) what is the population (2010) (rank)? | CREATE TABLE table_14253123_1 (population__2010___rank_ VARCHAR, area_sq_mi__km_2____rank_ VARCHAR) | SELECT population__2010___rank_ FROM table_14253123_1 WHERE area_sq_mi__km_2____rank_ = "sqmi (km2) (5)" |
When the % of boundary by water is 63% what is the overall number of zip code prefix(es)? | CREATE TABLE table_14253123_1 (zip_code_prefix_es_ VARCHAR, _percentage_of_boundary_by_water VARCHAR) | SELECT COUNT(zip_code_prefix_es_) FROM table_14253123_1 WHERE _percentage_of_boundary_by_water = "63%" |
When Spencer is the county what is the in no.? | CREATE TABLE table_14253123_1 (in_no VARCHAR, county_name VARCHAR) | SELECT in_no FROM table_14253123_1 WHERE county_name = "Spencer" |
Name the oberliga hessen for sv sandhausen and fsv salmrohr | CREATE TABLE table_14242137_4 (oberliga_hessen VARCHAR, oberliga_baden_württemberg VARCHAR, oberliga_südwest VARCHAR) | SELECT oberliga_hessen FROM table_14242137_4 WHERE oberliga_baden_württemberg = "SV Sandhausen" AND oberliga_südwest = "FSV Salmrohr" |
Name the oberliga for where tsv 1860 munich and borussia neunkirchen | CREATE TABLE table_14242137_4 (oberliga_baden_württemberg VARCHAR, oberliga_bayern VARCHAR, oberliga_südwest VARCHAR) | SELECT oberliga_baden_württemberg FROM table_14242137_4 WHERE oberliga_bayern = "TSV 1860 Munich" AND oberliga_südwest = "Borussia Neunkirchen" |
Name the oberliga sudwest for spvgg unterhaching for 1988-89 | CREATE TABLE table_14242137_4 (oberliga_südwest VARCHAR, oberliga_bayern VARCHAR, season VARCHAR) | SELECT oberliga_südwest FROM table_14242137_4 WHERE oberliga_bayern = "SpVgg Unterhaching" AND season = "1988-89" |
Name the season for spvgg bayreuth and fsv salmrohr | CREATE TABLE table_14242137_4 (season VARCHAR, oberliga_bayern VARCHAR, oberliga_südwest VARCHAR) | SELECT season FROM table_14242137_4 WHERE oberliga_bayern = "SpVgg Bayreuth" AND oberliga_südwest = "FSV Salmrohr" |
Name the oberliga bayern for sv sandhausen for 1986-87 | CREATE TABLE table_14242137_4 (oberliga_bayern VARCHAR, oberliga_baden_württemberg VARCHAR, season VARCHAR) | SELECT oberliga_bayern FROM table_14242137_4 WHERE oberliga_baden_württemberg = "SV Sandhausen" AND season = "1986-87" |
During the quarter of 2012 Q2, how many millions of Blackberry OS phones where shipped when 0.1 million others were shipped? | CREATE TABLE table_14260687_3 (blackberry_os VARCHAR, other VARCHAR, quarter VARCHAR) | SELECT COUNT(blackberry_os) FROM table_14260687_3 WHERE other = "0.1" AND quarter = "2012 Q2" |
During the quarter 2012 Q4, how many millions of android phones were shipped? | CREATE TABLE table_14260687_3 (android VARCHAR, quarter VARCHAR) | SELECT COUNT(android) FROM table_14260687_3 WHERE quarter = "2012 Q4" |
How many million of windows phones were shipped during the quarter that shipped 216.2 million total? | CREATE TABLE table_14260687_3 (windows_phone VARCHAR, total VARCHAR) | SELECT windows_phone FROM table_14260687_3 WHERE total = "216.2" |
How many total smartphones were shipped during the quarter 2012 Q1? | CREATE TABLE table_14260687_3 (total VARCHAR, quarter VARCHAR) | SELECT COUNT(total) FROM table_14260687_3 WHERE quarter = "2012 Q1" |
How many millions of Blackberry OS smartphones were shipped when 10.4 million Symbian smartphones were shipped? | CREATE TABLE table_14260687_3 (blackberry_os VARCHAR, symbian VARCHAR) | SELECT blackberry_os FROM table_14260687_3 WHERE symbian = "10.4" |
How man "other" millions of smartphones were shipped when 181.1 million total were shipped? | CREATE TABLE table_14260687_3 (other VARCHAR, total VARCHAR) | SELECT COUNT(other) FROM table_14260687_3 WHERE total = "181.1" |
What is the load bearing capacity when the name is Camelus Dromedarius | CREATE TABLE table_1427868_1 (load_bearing_capacity VARCHAR, scientific_name VARCHAR) | SELECT load_bearing_capacity FROM table_1427868_1 WHERE scientific_name = "Camelus dromedarius" |
What is the division for the year 2006? | CREATE TABLE table_1427998_1 (division VARCHAR, year VARCHAR) | SELECT division FROM table_1427998_1 WHERE year = 2006 |
What was the playoff result for the team name of bay area seals | CREATE TABLE table_1427998_1 (playoffs VARCHAR, team_name VARCHAR) | SELECT playoffs FROM table_1427998_1 WHERE team_name = "Bay Area Seals" |
Where did the team finish in the season when the playoff result was divisional finals. | CREATE TABLE table_1427998_1 (regular_season VARCHAR, playoffs VARCHAR) | SELECT regular_season FROM table_1427998_1 WHERE playoffs = "divisional Finals" |
What is the playoff result when the league is USISL and the regular season record is 1st, pacific. | CREATE TABLE table_1427998_1 (playoffs VARCHAR, league VARCHAR, regular_season VARCHAR) | SELECT playoffs FROM table_1427998_1 WHERE league = "USISL" AND regular_season = "1st, Pacific" |
How many divisions have been won when the playoff result is conference quarterfinals. | CREATE TABLE table_1427998_1 (division VARCHAR, playoffs VARCHAR) | SELECT COUNT(division) FROM table_1427998_1 WHERE playoffs = "Conference Quarterfinals" |
What was the lowest home attendance for the southern derby? | CREATE TABLE table_14302582_1 (home_attendance INTEGER, competition VARCHAR) | SELECT MIN(home_attendance) FROM table_14302582_1 WHERE competition = "Southern Derby" |
What was the result when the team had contested 14 home games? | CREATE TABLE table_14302582_1 (result VARCHAR, home_matches VARCHAR) | SELECT result FROM table_14302582_1 WHERE home_matches = 14 |
What was the result when the team was 4-1? | CREATE TABLE table_14302582_1 (result VARCHAR, record VARCHAR) | SELECT result FROM table_14302582_1 WHERE record = "4-1" |
picturesque and trekking route is the category what is the height from sea level in meters? | CREATE TABLE table_1430913_1 (height_from_sea_level_in_meters VARCHAR, category VARCHAR) | SELECT height_from_sea_level_in_meters FROM table_1430913_1 WHERE category = "Picturesque and trekking_route" |
If extremely adventures is the category what is the height from sea level in meters? | CREATE TABLE table_1430913_1 (height_from_sea_level_in_meters VARCHAR, category VARCHAR) | SELECT height_from_sea_level_in_meters FROM table_1430913_1 WHERE category = "Extremely Adventures" |
if 22km is the trekking route what is height from sea level in meters? | CREATE TABLE table_1430913_1 (height_from_sea_level_in_meters VARCHAR, trekking_route VARCHAR) | SELECT height_from_sea_level_in_meters FROM table_1430913_1 WHERE trekking_route = "22km" |
If the place is hemkunt sahib what is the category? | CREATE TABLE table_1430913_1 (category VARCHAR, name_of_place VARCHAR) | SELECT category FROM table_1430913_1 WHERE name_of_place = "Hemkunt Sahib" |
What is the density in places where the 2011 census gives a population of 5402? | CREATE TABLE table_14325808_1 (density__pop_km²_ VARCHAR, population__2011_census_ VARCHAR) | SELECT density__pop_km²_ FROM table_14325808_1 WHERE population__2011_census_ = 5402 |
What is the area in kilometers squared the population density is 137.61? | CREATE TABLE table_14325808_1 (area__km²_ VARCHAR, density__pop_km²_ VARCHAR) | SELECT area__km²_ FROM table_14325808_1 WHERE density__pop_km²_ = "137.61" |
How many places according to the 2011 census of whatever population have an area of 132.79 kilometers squared? | CREATE TABLE table_14325808_1 (population__2011_census_ VARCHAR, area__km²_ VARCHAR) | SELECT COUNT(population__2011_census_) FROM table_14325808_1 WHERE area__km²_ = "132.79" |
How many places of whatever size have a 2007 population estimation of 7996? | CREATE TABLE table_14325808_1 (area__km²_ VARCHAR, population__2007_estimation_ VARCHAR) | SELECT COUNT(area__km²_) FROM table_14325808_1 WHERE population__2007_estimation_ = 7996 |
What is the 3utr sequence when the genbank id is hq021437? | CREATE TABLE table_14332822_1 (genbank_id VARCHAR) | SELECT 3 AS ’utr_sequence FROM table_14332822_1 WHERE genbank_id = "HQ021437" |
What is the coding for hq021442 genbankid? | CREATE TABLE table_14332822_1 (coding VARCHAR, genbank_id VARCHAR) | SELECT coding FROM table_14332822_1 WHERE genbank_id = "HQ021442" |
What is the 3'utr sequence with a variant id of ad'6a 4? | CREATE TABLE table_14332822_1 (variant_id VARCHAR) | SELECT 3 AS ’utr_sequence FROM table_14332822_1 WHERE variant_id = "AD'6A 4" |
What is the 3'utr sequence with a variant id of acd'6a 3? | CREATE TABLE table_14332822_1 (variant_id VARCHAR) | SELECT 3 AS ’utr_sequence FROM table_14332822_1 WHERE variant_id = "ACD'6A 3" |
Who is the director of the episode that corresponds to the total episodes number 14? | CREATE TABLE table_14330096_3 (director VARCHAR, total_number VARCHAR) | SELECT director FROM table_14330096_3 WHERE total_number = 14 |
What's the title of the episode that Rob Heyland wrote? | CREATE TABLE table_14330096_3 (title VARCHAR, writer VARCHAR) | SELECT title FROM table_14330096_3 WHERE writer = "Rob Heyland" |
What number from the total number of episodes is the episode written by Julian Unthank? | CREATE TABLE table_14330096_3 (series_number VARCHAR, writer VARCHAR) | SELECT series_number FROM table_14330096_3 WHERE writer = "Julian Unthank" |
How many touchdowns did Redden score? | CREATE TABLE table_14342210_12 (touchdowns INTEGER, player VARCHAR) | SELECT MIN(touchdowns) FROM table_14342210_12 WHERE player = "Redden" |
What was the most extra points? | CREATE TABLE table_14342210_12 (extra_points INTEGER) | SELECT MAX(extra_points) FROM table_14342210_12 |
What position did the player who scored 4 extra points play? | CREATE TABLE table_14342210_12 (position VARCHAR, extra_points VARCHAR) | SELECT position FROM table_14342210_12 WHERE extra_points = 4 |
How many points where scored by the right end? | CREATE TABLE table_14342210_12 (points VARCHAR, position VARCHAR) | SELECT COUNT(points) FROM table_14342210_12 WHERE position = "Right end" |
How many Games Started are there for Hugh White ? | CREATE TABLE table_14342210_13 (games_started VARCHAR, player VARCHAR) | SELECT games_started FROM table_14342210_13 WHERE player = "Hugh White" |
How many entries are there for Class for the player Everett Sweeley? | CREATE TABLE table_14342210_13 (class VARCHAR, player VARCHAR) | SELECT COUNT(class) FROM table_14342210_13 WHERE player = "Everett Sweeley" |
How many entries are there for class when the prior experience is shasta h.s. | CREATE TABLE table_14342210_13 (class VARCHAR, prior_experience VARCHAR) | SELECT COUNT(class) FROM table_14342210_13 WHERE prior_experience = "Shasta H.S." |
What is hugh white's weight? | CREATE TABLE table_14342210_13 (weight INTEGER, player VARCHAR) | SELECT MAX(weight) FROM table_14342210_13 WHERE player = "Hugh White" |
How many field goals did Walter Shaw make? | CREATE TABLE table_14342210_14 (field_goals__5_points_ VARCHAR, player VARCHAR) | SELECT COUNT(field_goals__5_points_) FROM table_14342210_14 WHERE player = "Walter Shaw" |
How many field goals were made by the person with 100 points in total? | CREATE TABLE table_14342210_14 (field_goals__5_points_ INTEGER, total_points VARCHAR) | SELECT MAX(field_goals__5_points_) FROM table_14342210_14 WHERE total_points = 100 |
How many touchdowns were made by the person with 7 extra points? | CREATE TABLE table_14342210_14 (touchdowns__5_points_ VARCHAR, extra_points_1_point VARCHAR) | SELECT COUNT(touchdowns__5_points_) FROM table_14342210_14 WHERE extra_points_1_point = 7 |
How many touchdowns did Albert Herrnstein make? | CREATE TABLE table_14342210_14 (touchdowns__5_points_ VARCHAR, player VARCHAR) | SELECT touchdowns__5_points_ FROM table_14342210_14 WHERE player = "Albert Herrnstein" |
How many touchdowns did Bruce Shorts make? | CREATE TABLE table_14342210_14 (touchdowns__5_points_ INTEGER, player VARCHAR) | SELECT MAX(touchdowns__5_points_) FROM table_14342210_14 WHERE player = "Bruce Shorts" |
How many players made 4 touchdowns? | CREATE TABLE table_14342210_14 (player VARCHAR, touchdowns__5_points_ VARCHAR) | SELECT COUNT(player) FROM table_14342210_14 WHERE touchdowns__5_points_ = 4 |
Name all the players for fullback | CREATE TABLE table_14342210_2 (player VARCHAR, position VARCHAR) | SELECT player FROM table_14342210_2 WHERE position = "Fullback" |
Name the position for shorts | CREATE TABLE table_14342210_2 (position VARCHAR, player VARCHAR) | SELECT position FROM table_14342210_2 WHERE player = "Shorts" |
Which player made 4 touchdowns while playing left halfback? | CREATE TABLE table_14342210_6 (player VARCHAR, touchdowns VARCHAR, position VARCHAR) | SELECT player FROM table_14342210_6 WHERE touchdowns = 4 AND position = "Left halfback" |
Which left end player made the most points? | CREATE TABLE table_14342210_6 (points INTEGER, position VARCHAR) | SELECT MAX(points) FROM table_14342210_6 WHERE position = "Left end" |
What is the least amount of points made by Herrnstein? | CREATE TABLE table_14342210_6 (points INTEGER, player VARCHAR) | SELECT MIN(points) FROM table_14342210_6 WHERE player = "Herrnstein" |
What is the least amount of field goals made by a player? | CREATE TABLE table_14342210_6 (field_goals INTEGER) | SELECT MIN(field_goals) FROM table_14342210_6 |
Which position did Redden play? | CREATE TABLE table_14342210_6 (position VARCHAR, player VARCHAR) | SELECT position FROM table_14342210_6 WHERE player = "Redden" |
What is the least amount of extra points made in by a player? | CREATE TABLE table_14342210_6 (extra_points INTEGER) | SELECT MIN(extra_points) FROM table_14342210_6 |
What is the previous experience of the player from East Jordan, Michigan? | CREATE TABLE table_14342367_13 (previous_experience VARCHAR, hometown VARCHAR) | SELECT previous_experience FROM table_14342367_13 WHERE hometown = "East Jordan, Michigan" |
What was the class of the player who played right tackle? | CREATE TABLE table_14342367_13 (class VARCHAR, position VARCHAR) | SELECT class FROM table_14342367_13 WHERE position = "Right tackle" |
How many players are from Sioux City, Iowa? | CREATE TABLE table_14342367_13 (player VARCHAR, hometown VARCHAR) | SELECT COUNT(player) FROM table_14342367_13 WHERE hometown = "Sioux City, Iowa" |
Where is George W. Gregory from? | CREATE TABLE table_14342367_13 (hometown VARCHAR, player VARCHAR) | SELECT hometown FROM table_14342367_13 WHERE player = "George W. Gregory" |
What was George W. Gregory's class? | CREATE TABLE table_14342367_13 (class VARCHAR, player VARCHAR) | SELECT class FROM table_14342367_13 WHERE player = "George W. Gregory" |
what is the maximum number of points? | CREATE TABLE table_14342367_5 (points INTEGER) | SELECT MAX(points) FROM table_14342367_5 |
was herb graver a starter? | CREATE TABLE table_14342367_5 (starter VARCHAR, player VARCHAR) | SELECT starter FROM table_14342367_5 WHERE player = "Herb Graver" |
Which player scored 14 touchdowns? | CREATE TABLE table_14342480_15 (player VARCHAR, touchdowns VARCHAR) | SELECT player FROM table_14342480_15 WHERE touchdowns = 14 |
How many points did Duncan Thompson score? | CREATE TABLE table_14342480_15 (points INTEGER, player VARCHAR) | SELECT MAX(points) FROM table_14342480_15 WHERE player = "Duncan Thompson" |
What is the highest number of extra points? | CREATE TABLE table_14342480_15 (extra_points INTEGER) | SELECT MAX(extra_points) FROM table_14342480_15 |
What players played the position of left tackle? | CREATE TABLE table_14342592_5 (player VARCHAR, position VARCHAR) | SELECT player FROM table_14342592_5 WHERE position = "Left tackle" |
How many field goals were made by someone playing position of right end? | CREATE TABLE table_14342592_5 (field_goals VARCHAR, position VARCHAR) | SELECT COUNT(field_goals) FROM table_14342592_5 WHERE position = "Right end" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.