vw_order_items
Creates, updates, deletes, gets or lists a vw_order_items
resource.
Overview
Name | vw_order_items |
Type | View |
Id | azure_extras.edge_order.vw_order_items |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
identity as identity,
JSON_EXTRACT(properties, '$.orderItemDetails') as "order_item_details",
JSON_EXTRACT(properties, '$.addressDetails') as "address_details",
JSON_EXTRACT(properties, '$.startTime') as "start_time",
JSON_EXTRACT(properties, '$.orderId') as "order_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
orderItemName
FROM azure_extras.edge_order.order_items
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
identity as identity,
json_extract_path_text(properties, '$.orderItemDetails') as "order_item_details",
json_extract_path_text(properties, '$.addressDetails') as "address_details",
json_extract_path_text(properties, '$.startTime') as "start_time",
json_extract_path_text(properties, '$.orderId') as "order_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
orderItemName
FROM azure_extras.edge_order.order_items
WHERE subscriptionId = 'replace-me';