vw_tables
Creates, updates, deletes, gets or lists a vw_tables
resource.
Overview
Name | vw_tables |
Type | View |
Id | azure.cosmos_db.vw_tables |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
identity as identity,
JSON_EXTRACT(properties, '$.resource') as "resource",
JSON_EXTRACT(properties, '$.options') as "options",
subscriptionId,
resourceGroupName,
accountName,
tableName
FROM azure.cosmos_db.tables
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
identity as identity,
json_extract_path_text(properties, '$.resource') as "resource",
json_extract_path_text(properties, '$.options') as "options",
subscriptionId,
resourceGroupName,
accountName,
tableName
FROM azure.cosmos_db.tables
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';