Company: Nasdaq_18oct
Difficulty: medium
Problem Description Write a SQL query to identify the top all-around basketball players from the basketball_player_stats table. A top all-around basketball player is defined by the following statistical criteria: Points Per Game (PPG): 20.0 or higher Rebounds Per Game (RPG): 5.0 or higher Assists Per Game (APG): 5.0 or higher Games Played: 65 or higher Schema You are given a table named basketball_player_stats with the following schema: column_name | data_type ---------------+----------- id | INTEGER first_name | VARCHAR(50) last_name | VARCHAR(50) games_played | INTEGER ppg | FLOAT rpg | FLOAT apg | FLOAT fgpct | FLOAT ftpct | FLOAT Required Output Your query should return the top players meeting the criteria above. Expected columns: first_name , last_name (in that exact order). Ordering: Sort the results in ascending alphabetical order by last_name , and then by first_name . Constraints or Notes Assume id is the primary key of the table, ensuring uniqueness for each player. Assume th