S02011
错误代码
S02011
报错信息
SQL context is not initialized yet. RefId:S02011
错误原因
select 语句不完整。如以下场景中,前条 sql 语句分别缺少 from 子句和完整的select 子句,所以引起报错。
// create table
n = 10000
type = take(1..10, n)
sys = take(char('A' + 0..3), n)
t = table(type, sys)
// sql
select x; // throw exception
select from t; // throw exception
select x from t; // OK
解决办法
检查脚本中SQL 语句是否完整。如果是,补充缺失子句。