vw_videos
Creates, updates, deletes, gets or lists a vw_videos
resource.
Overview
Name | vw_videos |
Type | View |
Id | azure.video_analyzer.vw_videos |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.title') as "title",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.type') as "type",
JSON_EXTRACT(properties, '$.flags') as "flags",
JSON_EXTRACT(properties, '$.contentUrls') as "content_urls",
JSON_EXTRACT(properties, '$.mediaInfo') as "media_info",
JSON_EXTRACT(properties, '$.archival') as "archival",
subscriptionId,
resourceGroupName,
accountName,
videoName
FROM azure.video_analyzer.videos
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.title') as "title",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.type') as "type",
json_extract_path_text(properties, '$.flags') as "flags",
json_extract_path_text(properties, '$.contentUrls') as "content_urls",
json_extract_path_text(properties, '$.mediaInfo') as "media_info",
json_extract_path_text(properties, '$.archival') as "archival",
subscriptionId,
resourceGroupName,
accountName,
videoName
FROM azure.video_analyzer.videos
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';