vw_solutions
Creates, updates, deletes, gets or lists a vw_solutions
resource.
Overview
Name | vw_solutions |
Type | View |
Id | azure_extras.help.vw_solutions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.triggerCriteria') as "trigger_criteria",
JSON_EXTRACT(properties, '$.parameters') as "parameters",
JSON_EXTRACT(properties, '$.solutionId') as "solution_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.title') as "title",
JSON_EXTRACT(properties, '$.content') as "content",
JSON_EXTRACT(properties, '$.replacementMaps') as "replacement_maps",
JSON_EXTRACT(properties, '$.sections') as "sections",
scope,
solutionResourceName
FROM azure_extras.help.solutions
WHERE scope = 'replace-me' AND solutionResourceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.triggerCriteria') as "trigger_criteria",
json_extract_path_text(properties, '$.parameters') as "parameters",
json_extract_path_text(properties, '$.solutionId') as "solution_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.title') as "title",
json_extract_path_text(properties, '$.content') as "content",
json_extract_path_text(properties, '$.replacementMaps') as "replacement_maps",
json_extract_path_text(properties, '$.sections') as "sections",
scope,
solutionResourceName
FROM azure_extras.help.solutions
WHERE scope = 'replace-me' AND solutionResourceName = 'replace-me';