We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
有两张表 A ,B 函数func(col1,col2)返回布尔类型
select t1.* from A t1 left join B t2 on func(t1.col1,t2.col2)=true
请问这种怎么写?
The text was updated successfully, but these errors were encountered:
目前不支持,自己加个接口实现。 当然这个需求其实可以把条件放到 WHERE/HAVING 中
可以提个新增该功能的建议 #37
Sorry, something went wrong.
现在好像可以通过 JOIN 指定条件 + @raw 实现,因为 ON 上已经支持复杂条件,我后面再看看
@raw
如果 func 是指 json_contains,那现在已经可以了
"col1<>@":"/T2/col2" // ON json_contains(T1.col1, cast(T2.col2 AS CHAR))
"col1{}@":"/T2/col2" // ON json_contains(T2.col2, cast(T1.col1 AS CHAR))
No branches or pull requests
有两张表 A ,B
函数func(col1,col2)返回布尔类型
select t1.* from A t1 left join B t2 on func(t1.col1,t2.col2)=true
请问这种怎么写?
The text was updated successfully, but these errors were encountered: