D dwn.220.v.ua

using is null in case statement

You are using the wrong style of CASE - you need to use CASE WHEN expressio...

📦 .zip⚖️ 113.7 MB📅 29 Dec 2025

You are using the wrong style of CASE - you need to use CASE WHEN expression> THEN not CASE expression> WHEN then.

⬇ Download Full Version

Try: select id, StartDate, CASE WHEN StartDate IS NULL THEN 'Awaiting&...

📦 .zip⚖️ 53.9 MB📅 11 Jan 2026

Try: select id, StartDate, CASE WHEN StartDate IS NULL THEN 'Awaiting' ELSE 'Approved' END AS StartDateStatus FROM myTable.

⬇ Download Full Version

I'd use the ISNULL function - it will return the value given if the fi...

📦 .zip⚖️ 48.5 MB📅 29 Oct 2025

I'd use the ISNULL function - it will return the value given if the field is NULL: select contactid,Title,FirstName,MiddleName, case.

⬇ Download Full Version

I am having problems with the following SELECT CASE statement when CASE dwn...

📦 .zip⚖️ 32.9 MB📅 19 Sep 2025

I am having problems with the following SELECT CASE statement when CASE dwn.220.v.uaption WHEN NULL THEN 'I am Null' ELSE 'This is  using a scalar user defined function in a select case statement.

⬇ Download Full Version

I want to know how to detect for NULL in a CASE statement. I know logically...

📦 .zip⚖️ 103.3 MB📅 11 Jan 2026

I want to know how to detect for NULL in a CASE statement. I know logically I can . I get a syntax error when using is null. If I remove the is and.

⬇ Download Full Version

Did you try: CASE WHEN (ID IS NULL) THEN 'YES' ELSE 'NO'...

📦 .zip⚖️ 60.5 MB📅 27 Oct 2025

Did you try: CASE WHEN (ID IS NULL) THEN 'YES' ELSE 'NO' END AS ID_Value,. I only have access to right now, but I'd hope that this.

⬇ Download Full Version

The problem is likely the comparison to NULL, as explained in David Spillet...

📦 .zip⚖️ 120.8 MB📅 24 May 2026

The problem is likely the comparison to NULL, as explained in David Spillett's answer above You can rewrite with nested CASE expressions.

⬇ Download Full Version

In my table I want to display I am null when null value found in EmpName co...

📦 .zip⚖️ 68.5 MB📅 10 Mar 2026

In my table I want to display I am null when null value found in EmpName column and I am blank when blank value found in EmpName column.

⬇ Download Full Version

The ELSE statement is optional in a CASE expression. When one is not define...

📦 .zip⚖️ 27.5 MB📅 18 Apr 2026

The ELSE statement is optional in a CASE expression. When one is not defined, and no matches are made, NULL is returned. If an ELSE is defined, and no.

⬇ Download Full Version

CASE expressions allow an expression to be selected based on the evaluation...

📦 .zip⚖️ 70.1 MB📅 14 Jan 2026

CASE expressions allow an expression to be selected based on the evaluation When using the simple-when-clause, the value of the expression before the first There must be at least one result-expression in the CASE expression (NULL.

⬇ Download Full Version

You can use a CASE expression when you want to change the way data is For i...

📦 .zip⚖️ 82.5 MB📅 01 Oct 2025

You can use a CASE expression when you want to change the way data is For information on handling NULL values, see the IBM Informix Guide to SQL.

⬇ Download Full Version

But you need to work with NULL values (which are no In the simple case the ...

📦 .zip⚖️ 114.3 MB📅 11 May 2026

But you need to work with NULL values (which are no In the simple case the expression is written only once and depending on the result of.

⬇ Download Full Version

Example 1: The CASE Expression Using A Search Condition. Example 2: If when...

📦 .zip⚖️ 49.4 MB📅 21 Mar 2026

Example 1: The CASE Expression Using A Search Condition. Example 2: If when-expression returns a nonzero, non-null result, then the WHEN clause is true.

⬇ Download Full Version

Every CASE statement must end with the END statement. In any row for which ...

📦 .zip⚖️ 89.1 MB📅 25 Mar 2026

Every CASE statement must end with the END statement. In any row for which the conditional statement is false, nothing happens in that row, leaving a null.

⬇ Download Full Version

SQL> SQL> -- create demo table SQL> create table Employee(2 ID VAR...

📦 .zip⚖️ 114.3 MB📅 04 Jun 2026

SQL> SQL> -- create demo table SQL> create table Employee(2 ID VARCHAR2(4 BYTE) NOT NULL, 3 First_Name VARCHAR2(10 BYTE), 4 Last_Name.

⬇ Download Full Version