vw_accounts
Creates, updates, deletes, gets or lists a vw_accounts
resource.
Overview
Name | vw_accounts |
Type | View |
Id | azure_extras.power_platform.vw_accounts |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
systemData as system_data,
JSON_EXTRACT(properties, '$.systemId') as "system_id",
JSON_EXTRACT(properties, '$.description') as "description",
subscriptionId,
resourceGroupName,
accountName
FROM azure_extras.power_platform.accounts
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
systemData as system_data,
json_extract_path_text(properties, '$.systemId') as "system_id",
json_extract_path_text(properties, '$.description') as "description",
subscriptionId,
resourceGroupName,
accountName
FROM azure_extras.power_platform.accounts
WHERE subscriptionId = 'replace-me';