有代码如下 ```sql with temp_table as (select xxx from xxxx ...) select xxx from a left join temp_table on a.xxx = temp_tableas.xxx ``` ```sql # 这一部分无法识别 with temp_table as (select xxx from xxxx ...) ``` 下面的select正常识别(代码是能跑起来的)