# View: master_discography_export_reduced

**View Name:** master_discography_export_reduced
**Table Source:** `Derived from: Prod.Performance_Nr_Sound_Recording`
**File Path:** `views/master_discography_export_reduced.view.lkml`

## Overview

- **File Size:** 793 bytes
- **Lines of Code:** 43
- **Dimensions:** 6
- **Measures:** 0
- **Dimension Groups:** 0
- **Filters:** 0

## Dimensions

| Name | Type |
|------|------|
| `NR_ID` | string |
| `Primary_Artist_Displayed_As` | string |
| `Recording_Title` | string |
| `Recording_Version` | string |
| `ISRC` | string |
| `Sax_Rec_ID` | string |

## Derived Table

```sql
sql:
      SELECT
        sr.id NR_ID,
        sr.isrc ISRC,
        sr.main_artist Main_artist,
        sr.recording_title,
        sr.version,
        sr.external_id
        from FACTS.prod.performance_nr_sound_recording sr;;
```

