-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mysql下使用full join和case when语法会飘红提示错误 #134
Comments
|
你可以使用 |
非常感谢,还有个问题需要咨询一下: |
可以提供下示例语句吗 |
例如: select * from database.table1 where column1 这里的column1在输入的时候没有提示,syntax只有function |
目前确实多个方言有这个问题,我们将在近期支持,后续可以在 DTStack/dt-sql-parser#322 中查看进度。 |
1.当使用别名时full join语法会报错
如:
select * from db1.table1 as t1 full join
2.case when语法报错
如:
select
id,
case when age = 18 then '成年'
when age = 60 then '老年' else '未知' end name
The text was updated successfully, but these errors were encountered: