db_name
stringclasses 146
values | prompt
stringlengths 310
4.81k
|
|---|---|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# List the name of ships in ascending order of tonnage.
#
### SQL:
#
# SELECT Name FROM ship ORDER BY Tonnage ASC
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# what are the names of the ships ordered by ascending tonnage?
#
### SQL:
#
# SELECT Name FROM ship ORDER BY Tonnage ASC
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What are the type and nationality of ships?
#
### SQL:
#
# SELECT TYPE , Nationality FROM ship
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What are the types and nationalities of every ship?
#
### SQL:
#
# SELECT TYPE , Nationality FROM ship
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# List the name of ships whose nationality is not "United States".
#
### SQL:
#
# SELECT Name FROM ship WHERE Nationality != "United States"
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What are the names of the ships that are not from the United States?
#
### SQL:
#
# SELECT Name FROM ship WHERE Nationality != "United States"
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# Show the name of ships whose nationality is either United States or United Kingdom.
#
### SQL:
#
# SELECT Name FROM ship WHERE Nationality = "United States" OR Nationality = "United Kingdom"
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What are the names of the ships that are from either the US or the UK?
#
### SQL:
#
# SELECT Name FROM ship WHERE Nationality = "United States" OR Nationality = "United Kingdom"
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What is the name of the ship with the largest tonnage?
#
### SQL:
#
# SELECT Name FROM ship ORDER BY Tonnage DESC LIMIT 1
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What is the ship with the largest amount of tonnage called?
#
### SQL:
#
# SELECT Name FROM ship ORDER BY Tonnage DESC LIMIT 1
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# Show different types of ships and the number of ships of each type.
#
### SQL:
#
# SELECT TYPE , COUNT(*) FROM ship GROUP BY TYPE
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# For each type, how many ships are there?
#
### SQL:
#
# SELECT TYPE , COUNT(*) FROM ship GROUP BY TYPE
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# Please show the most common type of ships.
#
### SQL:
#
# SELECT TYPE FROM ship GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What is the most common type of ships?
#
### SQL:
#
# SELECT TYPE FROM ship GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# List the nations that have more than two ships.
#
### SQL:
#
# SELECT Nationality FROM ship GROUP BY Nationality HAVING COUNT(*) > 2
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What are the nations that have more than two ships?
#
### SQL:
#
# SELECT Nationality FROM ship GROUP BY Nationality HAVING COUNT(*) > 2
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# Show different types of ships and the average tonnage of ships of each type.
#
### SQL:
#
# SELECT TYPE , avg(Tonnage) FROM ship GROUP BY TYPE
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# For each type, what is the average tonnage?
#
### SQL:
#
# SELECT TYPE , avg(Tonnage) FROM ship GROUP BY TYPE
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# Show codes and fates of missions, and names of ships involved.
#
### SQL:
#
# SELECT T1.Code , T1.Fate , T2.Name FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What are the mission codes, fates, and names of the ships involved?
#
### SQL:
#
# SELECT T1.Code , T1.Fate , T2.Name FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# Show names of ships involved in a mission launched after 1928.
#
### SQL:
#
# SELECT T2.Name FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID WHERE T1.Launched_Year > 1928
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What are the names of ships that were involved in a mission launched after 1928?
#
### SQL:
#
# SELECT T2.Name FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID WHERE T1.Launched_Year > 1928
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# Show the distinct fate of missions that involve ships with nationality "United States"
#
### SQL:
#
# SELECT DISTINCT T1.Fate FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID WHERE T2.Nationality = "United States"
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What are the different fates of the mission that involved ships from the United States?
#
### SQL:
#
# SELECT DISTINCT T1.Fate FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID WHERE T2.Nationality = "United States"
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# List the name of ships that are not involved in any mission
#
### SQL:
#
# SELECT Name FROM ship WHERE Ship_ID NOT IN (SELECT Ship_ID FROM mission)
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What are the names of the ships that are not involved in any missions?
#
### SQL:
#
# SELECT Name FROM ship WHERE Ship_ID NOT IN (SELECT Ship_ID FROM mission)
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# Show the types of ships that have both ships with tonnage larger than 6000 and ships with tonnage smaller than 4000.
#
### SQL:
#
# SELECT TYPE FROM ship WHERE Tonnage > 6000 INTERSECT SELECT TYPE FROM ship WHERE Tonnage < 4000
#
### End.
|
ship_mission
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# mission ( Mission_ID, Ship_ID, Code, Launched_Year, Location, Speed_knots, Fate )
# ship ( Ship_ID, Name, Type, Nationality, Tonnage )
#
# mission.Ship_ID can be joined with ship.Ship_ID
#
### Question:
#
# What are the types of the ships that have both shiips with tonnage more than 6000 and those with tonnage less than 4000?
#
### SQL:
#
# SELECT TYPE FROM ship WHERE Tonnage > 6000 INTERSECT SELECT TYPE FROM ship WHERE Tonnage < 4000
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the number of students in total.
#
### SQL:
#
# SELECT count(*) FROM list
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# How many students are there?
#
### SQL:
#
# SELECT count(*) FROM list
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the last names of students studying in room 111.
#
### SQL:
#
# SELECT lastname FROM list WHERE classroom = 111
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# What are the last names of students in room 111?
#
### SQL:
#
# SELECT lastname FROM list WHERE classroom = 111
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the first names of students studying in room 108.
#
### SQL:
#
# SELECT firstname FROM list WHERE classroom = 108
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# What are the first names of students in room 108?
#
### SQL:
#
# SELECT firstname FROM list WHERE classroom = 108
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# What are the first names of students studying in room 107?
#
### SQL:
#
# SELECT DISTINCT firstname FROM list WHERE classroom = 107
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# List the first names of all the students in room 107.
#
### SQL:
#
# SELECT DISTINCT firstname FROM list WHERE classroom = 107
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# For each classroom report the grade that is taught in it. Report just the classroom number and the grade number.
#
### SQL:
#
# SELECT DISTINCT classroom , grade FROM list
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# What are the grade number and classroom number of each class in the list?
#
### SQL:
#
# SELECT DISTINCT classroom , grade FROM list
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Which grade is studying in classroom 103?
#
### SQL:
#
# SELECT DISTINCT grade FROM list WHERE classroom = 103
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the grade taught in classroom 103.
#
### SQL:
#
# SELECT DISTINCT grade FROM list WHERE classroom = 103
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the grade studying in room 105.
#
### SQL:
#
# SELECT DISTINCT grade FROM list WHERE classroom = 105
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Which grade is studying in room 105?
#
### SQL:
#
# SELECT DISTINCT grade FROM list WHERE classroom = 105
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Which classrooms are used by grade 4?
#
### SQL:
#
# SELECT DISTINCT classroom FROM list WHERE grade = 4
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the classrooms in which grade 4 is studying.
#
### SQL:
#
# SELECT DISTINCT classroom FROM list WHERE grade = 4
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Which classrooms are used by grade 5?
#
### SQL:
#
# SELECT DISTINCT classroom FROM list WHERE grade = 5
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Show me the classrooms grade 5 is using.
#
### SQL:
#
# SELECT DISTINCT classroom FROM list WHERE grade = 5
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the last names of the teachers that teach fifth grade.
#
### SQL:
#
# SELECT DISTINCT T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 5
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# what are the last names of the teachers who teach grade 5?
#
### SQL:
#
# SELECT DISTINCT T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 5
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the first names of the teachers that teach first grade.
#
### SQL:
#
# SELECT DISTINCT T2.firstname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 1
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# What are the first names of the teachers who teach grade 1?
#
### SQL:
#
# SELECT DISTINCT T2.firstname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 1
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the first names of all the teachers that teach in classroom 110.
#
### SQL:
#
# SELECT firstname FROM teachers WHERE classroom = 110
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Which teachers teach in classroom 110? Give me their first names.
#
### SQL:
#
# SELECT firstname FROM teachers WHERE classroom = 110
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the last names of teachers teaching in classroom 109.
#
### SQL:
#
# SELECT lastname FROM teachers WHERE classroom = 109
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Which teachers teach in classroom 109? Give me their last names.
#
### SQL:
#
# SELECT lastname FROM teachers WHERE classroom = 109
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Report the first name and last name of all the teachers.
#
### SQL:
#
# SELECT DISTINCT firstname , lastname FROM teachers
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# What are the first name and last name of all the teachers?
#
### SQL:
#
# SELECT DISTINCT firstname , lastname FROM teachers
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Report the first name and last name of all the students.
#
### SQL:
#
# SELECT DISTINCT firstname , lastname FROM list
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Show each student's first name and last name.
#
### SQL:
#
# SELECT DISTINCT firstname , lastname FROM list
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find all students taught by OTHA MOYER. Output the first and last names of the students.
#
### SQL:
#
# SELECT T1.firstname , T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "OTHA" AND T2.lastname = "MOYER"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Which students study under the teacher named OTHA MOYER? Give me the first and last names of the students.
#
### SQL:
#
# SELECT T1.firstname , T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "OTHA" AND T2.lastname = "MOYER"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find all students taught by MARROTTE KIRK. Output first and last names of students.
#
### SQL:
#
# SELECT T1.firstname , T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "MARROTTE" AND T2.lastname = "KIRK"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Which are the first and last names of the students taught by MARROTTE KIRK?
#
### SQL:
#
# SELECT T1.firstname , T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "MARROTTE" AND T2.lastname = "KIRK"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the first and last name of all the teachers that teach EVELINA BROMLEY.
#
### SQL:
#
# SELECT T2.firstname , T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "EVELINA" AND T1.lastname = "BROMLEY"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Which teachers teach the student named EVELINA BROMLEY? Give me the first and last name of the teachers.
#
### SQL:
#
# SELECT T2.firstname , T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "EVELINA" AND T1.lastname = "BROMLEY"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the last names of all the teachers that teach GELL TAMI.
#
### SQL:
#
# SELECT T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "GELL" AND T1.lastname = "TAMI"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# What are the last names of the teachers who teach the student called GELL TAMI?
#
### SQL:
#
# SELECT T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "GELL" AND T1.lastname = "TAMI"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# How many students does LORIA ONDERSMA teaches?
#
### SQL:
#
# SELECT count(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "LORIA" AND T2.lastname = "ONDERSMA"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Count the number of students the teacher LORIA ONDERSMA teaches.
#
### SQL:
#
# SELECT count(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "LORIA" AND T2.lastname = "ONDERSMA"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# How many students does KAWA GORDON teaches?
#
### SQL:
#
# SELECT count(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "KAWA" AND T2.lastname = "GORDON"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the number of students taught by the teacher KAWA GORDON.
#
### SQL:
#
# SELECT count(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "KAWA" AND T2.lastname = "GORDON"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the number of students taught by TARRING LEIA.
#
### SQL:
#
# SELECT count(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "TARRING" AND T2.lastname = "LEIA"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# How many students are taught by teacher TARRING LEIA?
#
### SQL:
#
# SELECT count(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "TARRING" AND T2.lastname = "LEIA"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# How many teachers does the student named CHRISSY NABOZNY have?
#
### SQL:
#
# SELECT count(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "CHRISSY" AND T1.lastname = "NABOZNY"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the number of teachers who teach the student called CHRISSY NABOZNY.
#
### SQL:
#
# SELECT count(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "CHRISSY" AND T1.lastname = "NABOZNY"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# How many teachers does the student named MADLOCK RAY have?
#
### SQL:
#
# SELECT count(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "MADLOCK" AND T1.lastname = "RAY"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the number of teachers who teach the student called MADLOCK RAY.
#
### SQL:
#
# SELECT count(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "MADLOCK" AND T1.lastname = "RAY"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find all first-grade students who are NOT taught by OTHA MOYER. Report their first and last names.
#
### SQL:
#
# SELECT DISTINCT T1.firstname , T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.grade = 1 EXCEPT SELECT T1.firstname , T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "OTHA" AND T2.lastname = "MOYER"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# What are the first and last names of the first-grade students who are NOT taught by teacher OTHA MOYER?
#
### SQL:
#
# SELECT DISTINCT T1.firstname , T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.grade = 1 EXCEPT SELECT T1.firstname , T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "OTHA" AND T2.lastname = "MOYER"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the last names of the students in third grade that are not taught by COVIN JEROME.
#
### SQL:
#
# SELECT DISTINCT T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.grade = 3 AND T2.firstname != "COVIN" AND T2.lastname != "JEROME"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Which students in third grade are not taught by teacher COVIN JEROME? Give me the last names of the students.
#
### SQL:
#
# SELECT DISTINCT T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.grade = 3 AND T2.firstname != "COVIN" AND T2.lastname != "JEROME"
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# For each grade, report the grade, the number of classrooms in which it is taught and the total number of students in the grade.
#
### SQL:
#
# SELECT grade , count(DISTINCT classroom) , count(*) FROM list GROUP BY grade
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# For each grade, return the grade number, the number of classrooms used for the grade, and the total number of students enrolled in the grade.
#
### SQL:
#
# SELECT grade , count(DISTINCT classroom) , count(*) FROM list GROUP BY grade
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# For each classroom, report the classroom number and the number of grades using it.
#
### SQL:
#
# SELECT classroom , count(DISTINCT grade) FROM list GROUP BY classroom
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# For each classroom, show the classroom number and count the number of distinct grades that use the room.
#
### SQL:
#
# SELECT classroom , count(DISTINCT grade) FROM list GROUP BY classroom
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Which classroom has the most students?
#
### SQL:
#
# SELECT classroom FROM list GROUP BY classroom ORDER BY count(*) DESC LIMIT 1
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the classroom that the most students use.
#
### SQL:
#
# SELECT classroom FROM list GROUP BY classroom ORDER BY count(*) DESC LIMIT 1
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Report the number of students in each classroom.
#
### SQL:
#
# SELECT classroom , count(*) FROM list GROUP BY classroom
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# For each classroom, show the classroom number and find how many students are using it.
#
### SQL:
#
# SELECT classroom , count(*) FROM list GROUP BY classroom
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# For each grade 0 classroom, report the total number of students.
#
### SQL:
#
# SELECT classroom , count(*) FROM list WHERE grade = "0" GROUP BY classroom
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# For each grade 0 classroom, return the classroom number and the count of students.
#
### SQL:
#
# SELECT classroom , count(*) FROM list WHERE grade = "0" GROUP BY classroom
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Report the total number of students for each fourth-grade classroom.
#
### SQL:
#
# SELECT classroom , count(*) FROM list WHERE grade = "4" GROUP BY classroom
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# For each fourth-grade classroom, show the classroom number and the total number of students using it.
#
### SQL:
#
# SELECT classroom , count(*) FROM list WHERE grade = "4" GROUP BY classroom
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the name of the teacher who teaches the largest number of students.
#
### SQL:
#
# SELECT T2.firstname , T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom GROUP BY T2.firstname , T2.lastname ORDER BY count(*) DESC LIMIT 1
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Which teacher teaches the most students? Give me the first name and last name of the teacher.
#
### SQL:
#
# SELECT T2.firstname , T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom GROUP BY T2.firstname , T2.lastname ORDER BY count(*) DESC LIMIT 1
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# Find the number of students in one classroom.
#
### SQL:
#
# SELECT count(*) , classroom FROM list GROUP BY classroom
#
### End.
|
student_1
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# list ( LastName, FirstName, Grade, Classroom )
# teachers ( LastName, FirstName, Classroom )
#
#
### Question:
#
# How many students does one classroom have?
#
### SQL:
#
# SELECT count(*) , classroom FROM list GROUP BY classroom
#
### End.
|
company_employee
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# people ( People_ID, Age, Name, Nationality, Graduation_College )
# company ( Company_ID, Name, Headquarters, Industry, Sales_in_Billion, Profits_in_Billion, Assets_in_Billion, Market_Value_in_Billion )
# employment ( Company_ID, People_ID, Year_working )
#
# employment.People_ID can be joined with people.People_ID
# employment.Company_ID can be joined with company.Company_ID
#
### Question:
#
# How many companies are headquartered in the US?
#
### SQL:
#
# SELECT count(*) FROM company WHERE Headquarters = 'USA'
#
### End.
|
company_employee
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# people ( People_ID, Age, Name, Nationality, Graduation_College )
# company ( Company_ID, Name, Headquarters, Industry, Sales_in_Billion, Profits_in_Billion, Assets_in_Billion, Market_Value_in_Billion )
# employment ( Company_ID, People_ID, Year_working )
#
# employment.People_ID can be joined with people.People_ID
# employment.Company_ID can be joined with company.Company_ID
#
### Question:
#
# List the names of companies by ascending number of sales.
#
### SQL:
#
# SELECT Name FROM company ORDER BY Sales_in_Billion ASC
#
### End.
|
company_employee
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# people ( People_ID, Age, Name, Nationality, Graduation_College )
# company ( Company_ID, Name, Headquarters, Industry, Sales_in_Billion, Profits_in_Billion, Assets_in_Billion, Market_Value_in_Billion )
# employment ( Company_ID, People_ID, Year_working )
#
# employment.People_ID can be joined with people.People_ID
# employment.Company_ID can be joined with company.Company_ID
#
### Question:
#
# What are the headquarters and industries of all companies?
#
### SQL:
#
# SELECT Headquarters , Industry FROM company
#
### End.
|
company_employee
|
### Complete SQL query only and with no explanation
### SQL tables followed by foreign key information:
#
# people ( People_ID, Age, Name, Nationality, Graduation_College )
# company ( Company_ID, Name, Headquarters, Industry, Sales_in_Billion, Profits_in_Billion, Assets_in_Billion, Market_Value_in_Billion )
# employment ( Company_ID, People_ID, Year_working )
#
# employment.People_ID can be joined with people.People_ID
# employment.Company_ID can be joined with company.Company_ID
#
### Question:
#
# Show the names of companies in the banking or retailing industry?
#
### SQL:
#
# SELECT Name FROM company WHERE Industry = "Banking" OR Industry = "Retailing"
#
### End.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.