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
Hello,
I need to put NULL value on else condition on Case When expression like below. How can i do that?
SqlExpressionBuilder.case() .When( TblOne.foo.isNotNull(), wrapAsExpression<DateTime>(TblTwo.slice(TblTwo.createdDate.max()).select { TblTwo.foo eq TblOne.foo }) ) .Else(***how to put null here****)
The text was updated successfully, but these errors were encountered:
How can i set null to Else condition on CaseWhen Expression? #1315
23254bf
Op.nullOp() added to cover the case. Will be released soon
Op.nullOp()
Sorry, something went wrong.
How can i set null to Else condition on CaseWhen Expression? JetBrain…
11d1b7b
…s#1315
No branches or pull requests
Hello,
I need to put NULL value on else condition on Case When expression like below. How can i do that?
SqlExpressionBuilder.case() .When( TblOne.foo.isNotNull(), wrapAsExpression<DateTime>(TblTwo.slice(TblTwo.createdDate.max()).select { TblTwo.foo eq TblOne.foo }) ) .Else(***how to put null here****)
The text was updated successfully, but these errors were encountered: