例如下面这段SQL,能够根据上下文拿到表别名t1下的字段,或者根据原表名进行后端查询所有字段并依据表别名再进行自动补全 ```sql create table table1 (id int); select t1. from table1 as t1; ```