What analytics software are you trained in and to what level?
Using the supplied PostgreSQL tables, write a query that returns the analytics software recorded for analyst 101 and the associated training level. Include only software with a matching training record.
software_name, proficiency_level, training_status| Column | Type | Description |
|---|---|---|
| software_idPK | INT | Unique identifier for an analytics software product |
| software_name | VARCHAR(100) | Name of the analytics software product |
| vendor | VARCHAR(100) | Software vendor |
| Column | Type | Description |
|---|---|---|
| training_idPK | INT | Unique training record identifier |
| analyst_id | INT | Identifier for the analyst |
| software_id | INT | Referenced analytics software identifier |
| proficiency_level | VARCHAR(30) | Recorded proficiency level |
| training_status | VARCHAR(30) | Source training status, if recorded |