# View: stmt_db_pl_cells

**View Name:** stmt_db_pl_cells
**Table Source:** `pl_cells`
**File Path:** `stmt_db_pl_cells.view.lkml`

## Overview

- **File Size:** 1793 bytes
- **Lines of Code:** 76
- **Dimensions:** 2
- **Measures:** 1
- **Dimension Groups:** 1
- **Filters:** 0

## Description

Row ID

## Comments & Notes

- view: stmt_db_pl_cells {
- # Or, you could make this view a derived table, like this:
- derived_table: {

## Dimensions

| Name | Type |
|------|------|
| `cell_id` | number |
| `list_id` | number |

## Measures

| Name | Type |
|------|------|
| `status` | string |

## Dimension Groups

| Name | Type |
|------|------|
| `date` | time |

## Derived Table

```sql
#     sql: SELECT
#         user_id as user_id
#         , COUNT(*) as lifetime_orders
#         , MAX(orders.created_at) as most_recent_purchase_at
#       FROM orders
#       GROUP BY user_id
#       ;;
#
```

