Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Top Investors by Portfolio Value
00:00
5 left

SQL Top Investors by Portfolio Value

MediumSQL · PostgreSQL

Problem

How would you use SQL to identify the top 10% of investors based on their total portfolio value at Prosper Marketplace?

Use the provided Prosper investor and portfolio position data. Include investors with no positions, treating their total portfolio value as zero.

Output

  1. One row per investor in the top 10%, with investor_id, investor_name, total_portfolio_value, and portfolio_rank.
  2. Order by portfolio_rank ascending, then investor_id ascending.

Schema

investors
ColumnTypeDescription
investor_idPKINTUnique Prosper investor identifier
investor_nameVARCHAR(100)Investor display name
portfolio_positions
ColumnTypeDescription
position_idPKINTUnique portfolio position identifier
investor_idINTInvestor who owns the position
position_valueNUMERIC(14,2)Current value of the portfolio position in dollars
Tablesinvestorsportfolio_positions
Interviewer

Your question is SQL Top Investors by Portfolio Value. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.