Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Assuming no two students (i.e., ids) earn the same salary in incomes and each student (id) has only one friend (friend_id) in friends . Write
Assuming no two students (i.e., ids) earn the same salary in incomes and each student (id) has only one friend (friend_id) in friends. Write an SQL statement to retrieve the names of the students who earn less than their friends. Output the student names in descending orders of their friends salaries.
Given tables students, friends, and incomes with the following schemas, students Column Type INTEGER name TEXT friends Column Type INTEGER friend_id INTEGER incomes Column Type INTEGER REAL salary Assuming no two students (i.e., id's) earn the same salary in incomes and each student (id) has only one friend (friend_id) in friends. Write an SQL statement to retrieve the names of the students who earn less than their friends. Output the student names in descending orders of their friends' salaries. Given tables students, friends, and incomes with the following schemas, students Column Type INTEGER name TEXT friends Column Type INTEGER friend_id INTEGER incomes Column Type INTEGER REAL salary Assuming no two students (i.e., id's) earn the same salary in incomes and each student (id) has only one friend (friend_id) in friends. Write an SQL statement to retrieve the names of the students who earn less than their friends. Output the student names in descending orders of their friends' salariesStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started