money.transaction_billing_summary (view)
|
This is a database view, not a base table. It has no triggers, indexes, or FK constraints of its own. Querying this view may be more efficient than joining the underlying tables directly. |
Columns
| Column | Type | Nullable | Notes |
|---|---|---|---|
xact |
|
Yes |
|
last_billing_type |
|
Yes |
|
last_billing_note |
|
Yes |
|
last_billing_ts |
|
Yes |
|
total_owed |
|
Yes |
View Definition
SELECT materialized_billable_xact_summary.id AS xact,
materialized_billable_xact_summary.last_billing_type,
materialized_billable_xact_summary.last_billing_note,
materialized_billable_xact_summary.last_billing_ts,
materialized_billable_xact_summary.total_owed
FROM money.materialized_billable_xact_summary;