How do you answer this question with SQL list the members who owe more than the average?

1 answer

Answer

1103927

2026-04-10 21:05

+ Follow

SELECT member.name, member.owe FROM members WHERE member.owe > (SELECT AVG(member.owe) FROM members);

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.