vw_solution_self_helps
Creates, updates, deletes, gets or lists a vw_solution_self_helps
resource.
Overview
Name | vw_solution_self_helps |
Type | View |
Id | azure_extras.help.vw_solution_self_helps |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.solutionId') as "solution_id",
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",
solutionId
FROM azure_extras.help.solution_self_helps
WHERE solutionId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.solutionId') as "solution_id",
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",
solutionId
FROM azure_extras.help.solution_self_helps
WHERE solutionId = 'replace-me';