vw_problem_classifications
Creates, updates, deletes, gets or lists a vw_problem_classifications
resource.
Overview
Name | vw_problem_classifications |
Type | View |
Id | azure.support.vw_problem_classifications |
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, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.secondaryConsentEnabled') as "secondary_consent_enabled",
JSON_EXTRACT(properties, '$.metadata') as "metadata",
JSON_EXTRACT(properties, '$.parentProblemClassification') as "parent_problem_classification",
serviceName,
problemClassificationName
FROM azure.support.problem_classifications
WHERE serviceName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.secondaryConsentEnabled') as "secondary_consent_enabled",
json_extract_path_text(properties, '$.metadata') as "metadata",
json_extract_path_text(properties, '$.parentProblemClassification') as "parent_problem_classification",
serviceName,
problemClassificationName
FROM azure.support.problem_classifications
WHERE serviceName = 'replace-me';