1

我在雪花中创建了一个序列 batch_id_seq。但是当我从外部雪花环境运行查询“select batch_id_seq.nextval”时,我收到以下错误:

SQL 编译错误:位置 7 处的错误行 1 无效标识符 'BATCH_ID_SEQ.NEXTVAL'

查询在雪花工作表中运行良好。谁能让我知道需要做些什么来解决这个问题。

4

1 回答 1

2

您很可能处于不同的架构SELECT CURRENT_SCHEMA()

select batch_id_seq.nextval

=>

select <schema_name_here>.batch_id_seq.nextval
于 2021-10-25T16:46:29.927 回答