vw_communications_no_subscriptions
Creates, updates, deletes, gets or lists a vw_communications_no_subscriptions
resource.
Overview
Name | vw_communications_no_subscriptions |
Type | View |
Id | azure.support.vw_communications_no_subscriptions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.communicationType') as "communication_type",
JSON_EXTRACT(properties, '$.communicationDirection') as "communication_direction",
JSON_EXTRACT(properties, '$.sender') as "sender",
JSON_EXTRACT(properties, '$.subject') as "subject",
JSON_EXTRACT(properties, '$.body') as "body",
JSON_EXTRACT(properties, '$.createdDate') as "created_date",
supportTicketName,
communicationName
FROM azure.support.communications_no_subscriptions
WHERE supportTicketName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.communicationType') as "communication_type",
json_extract_path_text(properties, '$.communicationDirection') as "communication_direction",
json_extract_path_text(properties, '$.sender') as "sender",
json_extract_path_text(properties, '$.subject') as "subject",
json_extract_path_text(properties, '$.body') as "body",
json_extract_path_text(properties, '$.createdDate') as "created_date",
supportTicketName,
communicationName
FROM azure.support.communications_no_subscriptions
WHERE supportTicketName = 'replace-me';