-
Notifications
You must be signed in to change notification settings - Fork 466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add information_schema examples #2958
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, with a few nits. Also, please apply these updates to the 2.1 version of the page as well.
v2.0/information-schema.md
Outdated
@@ -266,6 +266,36 @@ Column | Description | |||
`is_trigger_deletable` | Always `NULL` (unsupported by CockroachDB). | |||
`is_trigger_insertable_into` | Always `NULL` (unsupported by CockroachDB). | |||
|
|||
## Examples | |||
|
|||
### Show All Columns from a Virtual Table in the Information Schema |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Show All Columns from a Virtual Table in the Information Schema
> Retrieve All Columns from an Information Schema Table
v2.0/information-schema.md
Outdated
+--------------------+-------------------+-----------------+---------------+--------------+-------------+-----------------+---------------+--------------------+ | ||
~~~ | ||
|
||
### Show a Specific Column from a Virtual Table in the Information Schema |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Show a Specific Column from a Virtual Table in the Information Schema
> Retrieve Specific Columns from an Information Schema Table
and then include one more column in the query.
Closes #2956.