vw_features
Creates, updates, deletes, gets or lists a vw_features
resource.
Overview
Name | vw_features |
Type | View |
Id | azure.ml_services.vw_features |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.properties') as "properties",
JSON_EXTRACT(properties, '$.tags') as "tags",
JSON_EXTRACT(properties, '$.dataType') as "data_type",
JSON_EXTRACT(properties, '$.featureName') as "feature_name",
subscriptionId,
resourceGroupName,
workspaceName,
featuresetName,
featuresetVersion,
featureName
FROM azure.ml_services.features
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me' AND featuresetName = 'replace-me' AND featuresetVersion = 'replace-me';
SELECT
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.properties') as "properties",
json_extract_path_text(properties, '$.tags') as "tags",
json_extract_path_text(properties, '$.dataType') as "data_type",
json_extract_path_text(properties, '$.featureName') as "feature_name",
subscriptionId,
resourceGroupName,
workspaceName,
featuresetName,
featuresetVersion,
featureName
FROM azure.ml_services.features
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me' AND featuresetName = 'replace-me' AND featuresetVersion = 'replace-me';