向以下查询报告的 information_schema 是啥意思?
Posted
技术标签:
【中文标题】向以下查询报告的 information_schema 是啥意思?【英文标题】:what does information_schema with report to below query mean?向以下查询报告的 information_schema 是什么意思? 【发布时间】:2020-10-08 15:18:42 【问题描述】:查询:下面的查询是什么意思,雪花存储在哪里?我在雪花中没有看到名为“表”的表,但我得到了结果(select * from table(information_schema.task_history...)
select * from table(information_schema.task_history(scheduled_time_range_start=>dateadd('day',-1,current_timestamp())))
这像嵌套表吗?
【问题讨论】:
【参考方案1】:information_schema.task_history 是一个表函数,这意味着它返回一个结果集。 TABLE 关键字用于像处理表格一样处理结果集。
https://docs.snowflake.com/en/sql-reference/functions-table.html
【讨论】:
以上是关于向以下查询报告的 information_schema 是啥意思?的主要内容,如果未能解决你的问题,请参考以下文章
SQL Server 存储过程向其调用者报告进度,一个 Access (VBA DAO) 传递查询