db_name
stringclasses
146 values
prompt
stringlengths
310
4.81k
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How many females does this network has? # ### SQL: # # SELECT count(*) FROM Person WHERE gender = 'female' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How many females are in the network? # ### SQL: # # SELECT count(*) FROM Person WHERE gender = 'female' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the average age for all person? # ### SQL: # # SELECT avg(age) FROM Person # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the average age for all people in the table? # ### SQL: # # SELECT avg(age) FROM Person # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How many different cities are they from? # ### SQL: # # SELECT count(DISTINCT city) FROM Person # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How many different cities do people originate from? # ### SQL: # # SELECT count(DISTINCT city) FROM Person # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How many type of jobs do they have? # ### SQL: # # SELECT count(DISTINCT job) FROM Person # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How many different jobs are listed? # ### SQL: # # SELECT count(DISTINCT job) FROM Person # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Who is the oldest person? # ### SQL: # # SELECT name FROM Person WHERE age = (SELECT max(age) FROM person) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the name of the person who is the oldest? # ### SQL: # # SELECT name FROM Person WHERE age = (SELECT max(age) FROM person) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Who is the oldest person whose job is student? # ### SQL: # # SELECT name FROM Person WHERE job = 'student' AND age = (SELECT max(age) FROM person WHERE job = 'student' ) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the name of the oldest student? # ### SQL: # # SELECT name FROM Person WHERE job = 'student' AND age = (SELECT max(age) FROM person WHERE job = 'student' ) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Who is the youngest male? # ### SQL: # # SELECT name FROM Person WHERE gender = 'male' AND age = (SELECT min(age) FROM person WHERE gender = 'male' ) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the name of the youngest male? # ### SQL: # # SELECT name FROM Person WHERE gender = 'male' AND age = (SELECT min(age) FROM person WHERE gender = 'male' ) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How old is the doctor named Zach? # ### SQL: # # SELECT age FROM Person WHERE job = 'doctor' AND name = 'Zach' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the age of the doctor named Zach? # ### SQL: # # SELECT age FROM Person WHERE job = 'doctor' AND name = 'Zach' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Who is the person whose age is below 30? # ### SQL: # # SELECT name FROM Person WHERE age < 30 # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the name of the person whose age is below 30? # ### SQL: # # SELECT name FROM Person WHERE age < 30 # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How many people whose age is greater 30 and job is engineer? # ### SQL: # # SELECT count(*) FROM Person WHERE age > 30 AND job = 'engineer' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # HOw many engineers are older than 30? # ### SQL: # # SELECT count(*) FROM Person WHERE age > 30 AND job = 'engineer' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the average age for each gender? # ### SQL: # # SELECT avg(age) , gender FROM Person GROUP BY gender # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How old is each gender, on average? # ### SQL: # # SELECT avg(age) , gender FROM Person GROUP BY gender # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is average age for different job title? # ### SQL: # # SELECT avg(age) , job FROM Person GROUP BY job # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How old is the average person for each job? # ### SQL: # # SELECT avg(age) , job FROM Person GROUP BY job # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is average age of male for different job title? # ### SQL: # # SELECT avg(age) , job FROM Person WHERE gender = 'male' GROUP BY job # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the average age for a male in each job? # ### SQL: # # SELECT avg(age) , job FROM Person WHERE gender = 'male' GROUP BY job # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is minimum age for different job title? # ### SQL: # # SELECT min(age) , job FROM Person GROUP BY job # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How old is the youngest person for each job? # ### SQL: # # SELECT min(age) , job FROM Person GROUP BY job # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the number of people who is under 40 for each gender. # ### SQL: # # SELECT count(*) , gender FROM Person WHERE age < 40 GROUP BY gender # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How many people are under 40 for each gender? # ### SQL: # # SELECT count(*) , gender FROM Person WHERE age < 40 GROUP BY gender # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the name of people whose age is greater than any engineer sorted by their age. # ### SQL: # # SELECT name FROM Person WHERE age > (SELECT min(age) FROM person WHERE job = 'engineer') ORDER BY age # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the name of all the people who are older than at least one engineer? Order them by age. # ### SQL: # # SELECT name FROM Person WHERE age > (SELECT min(age) FROM person WHERE job = 'engineer') ORDER BY age # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the number of people whose age is greater than all engineers. # ### SQL: # # SELECT count(*) FROM Person WHERE age > (SELECT max(age) FROM person WHERE job = 'engineer') # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # How many people are older than every engineer? # ### SQL: # # SELECT count(*) FROM Person WHERE age > (SELECT max(age) FROM person WHERE job = 'engineer') # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # list the name, job title of all people ordered by their names. # ### SQL: # # SELECT name , job FROM Person ORDER BY name # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names and job titles of every person ordered alphabetically by name? # ### SQL: # # SELECT name , job FROM Person ORDER BY name # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the names of all person sorted in the descending order using age. # ### SQL: # # SELECT name FROM Person ORDER BY age DESC # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names of everybody sorted by age in descending order? # ### SQL: # # SELECT name FROM Person ORDER BY age DESC # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the name and age of all males in order of their age. # ### SQL: # # SELECT name FROM Person WHERE gender = 'male' ORDER BY age # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the name and age of every male? Order the results by age. # ### SQL: # # SELECT name FROM Person WHERE gender = 'male' ORDER BY age # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the name and age of the person who is a friend of both Dan and Alice. # ### SQL: # # SELECT T1.name , T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Dan' INTERSECT SELECT T1.name , T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Alice' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names and ages of every person who is a friend of both Dan and Alice? # ### SQL: # # SELECT T1.name , T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Dan' INTERSECT SELECT T1.name , T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Alice' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the name and age of the person who is a friend of Dan or Alice. # ### SQL: # # SELECT DISTINCT T1.name , T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Dan' OR T2.friend = 'Alice' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the different names and ages of every friend of either Dan or alice? # ### SQL: # # SELECT DISTINCT T1.name , T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Dan' OR T2.friend = 'Alice' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the name of the person who has friends with age above 40 and under age 30? # ### SQL: # # SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) INTERSECT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 30) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names of every person who has a friend over 40 and under 30? # ### SQL: # # SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) INTERSECT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 30) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the name of the person who has friends with age above 40 but not under age 30? # ### SQL: # # SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) EXCEPT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 30) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names of the people who are older 40 but no friends under age 30? # ### SQL: # # SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) EXCEPT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 30) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the name of the person who has no student friends. # ### SQL: # # SELECT name FROM person EXCEPT SELECT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.job = 'student' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names of the people who have no friends who are students? # ### SQL: # # SELECT name FROM person EXCEPT SELECT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.job = 'student' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the person who has exactly one friend. # ### SQL: # # SELECT name FROM PersonFriend GROUP BY name HAVING count(*) = 1 # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names of everybody who has exactly one friend? # ### SQL: # # SELECT name FROM PersonFriend GROUP BY name HAVING count(*) = 1 # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Who are the friends of Bob? # ### SQL: # # SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Bob' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Who are Bob's friends? # ### SQL: # # SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Bob' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the name of persons who are friends with Bob. # ### SQL: # # SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Bob' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names of all of Bob's friends? # ### SQL: # # SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Bob' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the names of females who are friends with Zach # ### SQL: # # SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Zach' AND T1.gender = 'female' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names of all females who are friends with Zach? # ### SQL: # # SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Zach' AND T1.gender = 'female' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the female friends of Alice. # ### SQL: # # SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'female' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are all the friends of Alice who are female? # ### SQL: # # SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'female' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the male friend of Alice whose job is a doctor? # ### SQL: # # SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'male' AND T1.job = 'doctor' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Who are the friends of Alice that are doctors? # ### SQL: # # SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'male' AND T1.job = 'doctor' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Who has a friend that is from new york city? # ### SQL: # # SELECT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.city = 'new york city' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names of all friends who are from New York? # ### SQL: # # SELECT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.city = 'new york city' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Who has friends that are younger than the average age? # ### SQL: # # SELECT DISTINCT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.age < (SELECT avg(age) FROM person) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the different names of friends who are younger than the average age for a friend? # ### SQL: # # SELECT DISTINCT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.age < (SELECT avg(age) FROM person) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Who has friends that are older than the average age? Print their friends and their ages as well # ### SQL: # # SELECT DISTINCT T2.name , T2.friend , T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.age > (SELECT avg(age) FROM person) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Whare the names, friends, and ages of all people who are older than the average age of a person? # ### SQL: # # SELECT DISTINCT T2.name , T2.friend , T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.age > (SELECT avg(age) FROM person) # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Who is the friend of Zach with longest year relationship? # ### SQL: # # SELECT friend FROM PersonFriend WHERE name = 'Zach' AND YEAR = (SELECT max(YEAR) FROM PersonFriend WHERE name = 'Zach') # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Which friend of Zach has the longest-lasting friendship? # ### SQL: # # SELECT friend FROM PersonFriend WHERE name = 'Zach' AND YEAR = (SELECT max(YEAR) FROM PersonFriend WHERE name = 'Zach') # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the age of the friend of Zach with longest year relationship? # ### SQL: # # SELECT T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Zach' AND T2.year = (SELECT max(YEAR) FROM PersonFriend WHERE name = 'Zach') # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the ages of all of Zach's friends who are in the longest relationship? # ### SQL: # # SELECT T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Zach' AND T2.year = (SELECT max(YEAR) FROM PersonFriend WHERE name = 'Zach') # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the name of persons who are friends with Alice for the shortest years. # ### SQL: # # SELECT name FROM PersonFriend WHERE friend = 'Alice' AND YEAR = (SELECT min(YEAR) FROM PersonFriend WHERE friend = 'Alice') # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names of all people who are friends with Alice for the shortest amount of time? # ### SQL: # # SELECT name FROM PersonFriend WHERE friend = 'Alice' AND YEAR = (SELECT min(YEAR) FROM PersonFriend WHERE friend = 'Alice') # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find the name, age, and job title of persons who are friends with Alice for the longest years. # ### SQL: # # SELECT T1.name , T1.age , T1.job FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Alice' AND T2.year = (SELECT max(YEAR) FROM PersonFriend WHERE friend = 'Alice') # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names, ages, and jobs of all people who are friends with Alice for the longest amount of time? # ### SQL: # # SELECT T1.name , T1.age , T1.job FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Alice' AND T2.year = (SELECT max(YEAR) FROM PersonFriend WHERE friend = 'Alice') # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Who is the person that has no friend? # ### SQL: # # SELECT name FROM person EXCEPT SELECT name FROM PersonFriend # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names of all people who do not have friends? # ### SQL: # # SELECT name FROM person EXCEPT SELECT name FROM PersonFriend # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Which person whose friends have the oldest average age? # ### SQL: # # SELECT T2.name , avg(T1.age) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend GROUP BY T2.name ORDER BY avg(T1.age) DESC LIMIT 1 # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the name of the person who has the oldest average age for their friends, and what is that average age? # ### SQL: # # SELECT T2.name , avg(T1.age) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend GROUP BY T2.name ORDER BY avg(T1.age) DESC LIMIT 1 # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the total number of people who has no friend living in the city of Austin. # ### SQL: # # SELECT count(DISTINCT name) FROM PersonFriend WHERE friend NOT IN (SELECT name FROM person WHERE city = 'Austin') # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What is the total number of people who have no friends living in Austin? # ### SQL: # # SELECT count(DISTINCT name) FROM PersonFriend WHERE friend NOT IN (SELECT name FROM person WHERE city = 'Austin') # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # Find Alice's friends of friends. # ### SQL: # # SELECT DISTINCT T4.name FROM PersonFriend AS T1 JOIN Person AS T2 ON T1.name = T2.name JOIN PersonFriend AS T3 ON T1.friend = T3.name JOIN PersonFriend AS T4 ON T3.friend = T4.name WHERE T2.name = 'Alice' AND T4.name != 'Alice' # ### End.
network_2
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Person ( name, age, city, gender, job ) # PersonFriend ( name, friend, year ) # # PersonFriend.friend can be joined with Person.name # PersonFriend.name can be joined with Person.name # ### Question: # # What are the names of all of Alice's friends of friends? # ### SQL: # # SELECT DISTINCT T4.name FROM PersonFriend AS T1 JOIN Person AS T2 ON T1.name = T2.name JOIN PersonFriend AS T3 ON T1.friend = T3.name JOIN PersonFriend AS T4 ON T3.friend = T4.name WHERE T2.name = 'Alice' AND T4.name != 'Alice' # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # How many members are there? # ### SQL: # # SELECT count(*) FROM member # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # List the names of members in ascending alphabetical order. # ### SQL: # # SELECT Name FROM member ORDER BY Name ASC # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # What are the names and countries of members? # ### SQL: # # SELECT Name , Country FROM member # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # Show the names of members whose country is "United States" or "Canada". # ### SQL: # # SELECT Name FROM member WHERE Country = "United States" OR Country = "Canada" # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # Show the different countries and the number of members from each. # ### SQL: # # SELECT Country , COUNT(*) FROM member GROUP BY Country # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # Show the most common country across members. # ### SQL: # # SELECT Country FROM member GROUP BY Country ORDER BY COUNT(*) DESC LIMIT 1 # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # Which countries have more than two members? # ### SQL: # # SELECT Country FROM member GROUP BY Country HAVING COUNT(*) > 2 # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # Show the leader names and locations of colleges. # ### SQL: # # SELECT Leader_Name , College_Location FROM college # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # Show the names of members and names of colleges they go to. # ### SQL: # # SELECT T2.Name , T1.Name FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # Show the names of members and the locations of colleges they go to in ascending alphabetical order of member names. # ### SQL: # # SELECT T2.Name , T1.College_Location FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID ORDER BY T2.Name ASC # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # Show the distinct leader names of colleges associated with members from country "Canada". # ### SQL: # # SELECT DISTINCT T1.Leader_Name FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID WHERE T2.Country = "Canada" # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # Show the names of members and the decoration themes they have. # ### SQL: # # SELECT T1.Name , T2.Decoration_Theme FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # Show the names of members that have a rank in round higher than 3. # ### SQL: # # SELECT T1.Name FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID WHERE T2.Rank_in_Round > 3 # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # Show the names of members in ascending order of their rank in rounds. # ### SQL: # # SELECT T1.Name FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID ORDER BY Rank_in_Round ASC # ### End.
decoration_competition
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # college ( College_ID, Name, Leader_Name, College_Location ) # member ( Member_ID, Name, Country, College_ID ) # round ( Round_ID, Member_ID, Decoration_Theme, Rank_in_Round ) # # member.College_ID can be joined with college.College_ID # round.Member_ID can be joined with member.Member_ID # ### Question: # # List the names of members who did not participate in any round. # ### SQL: # # SELECT Name FROM member WHERE Member_ID NOT IN (SELECT Member_ID FROM round) # ### End.
document_management
### Complete SQL query only and with no explanation ### SQL tables followed by foreign key information: # # Roles ( role_code, role_description ) # Users ( user_id, role_code, user_name, user_login, password ) # Document_Structures ( document_structure_code, parent_document_structure_code, document_structure_description ) # Functional_Areas ( functional_area_code, parent_functional_area_code, functional_area_description ) # Images ( image_id, image_alt_text, image_name, image_url ) # Documents ( document_code, document_structure_code, document_type_code, access_count, document_name ) # Document_Functional_Areas ( document_code, functional_area_code ) # Document_Sections ( section_id, document_code, section_sequence, section_code, section_title ) # Document_Sections_Images ( section_id, image_id ) # # Users.role_code can be joined with Roles.role_code # Documents.document_structure_code can be joined with Document_Structures.document_structure_code # Document_Functional_Areas.functional_area_code can be joined with Functional_Areas.functional_area_code # Document_Functional_Areas.document_code can be joined with Documents.document_code # Document_Sections.document_code can be joined with Documents.document_code # Document_Sections_Images.image_id can be joined with Images.image_id # Document_Sections_Images.section_id can be joined with Document_Sections.section_id # ### Question: # # Find the name and access counts of all documents, in alphabetic order of the document name. # ### SQL: # # SELECT document_name , access_count FROM documents ORDER BY document_name # ### End.