Tell me about your experience with SQL questions in interviews or projects.
For this hands-on response, write a query that summarizes the recorded SQL work associated with each project. Include projects without completed SQL work and classify experience based on the number of completed questions.
project_name, completed_sql_questions, avg_score, latest_completed_at, and experience_band.| Column | Type | Description |
|---|---|---|
| project_idPK | INT | Unique project identifier |
| project_name | VARCHAR(100) | Name of the SQL project |
| owner_name | VARCHAR(100) | Person associated with the project |
| Column | Type | Description |
|---|---|---|
| question_idPK | INT | Unique SQL question identifier |
| project_id | INT | Related project identifier |
| question_title | VARCHAR(150) | Short description of the SQL question |
| status | VARCHAR(20) | Question state, such as completed, draft, or skipped |
| score | DECIMAL(5,2) | Recorded evaluation score |
| completed_at | DATE | Date the question was completed |