D dwn.220.v.ua

case date null sql

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

📦 .zip⚖️ 37.2 MB📅 14 Sep 2025

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

⬇ Download Full Version

It's casting your '' to a DATETIME, since your other column ...

📦 .zip⚖️ 70.6 MB📅 18 Sep 2025

It's casting your '' to a DATETIME, since your other column you'd return is a datetime column. SELECT CASE WHEN 1=1 THEN '' ELSE.

⬇ Download Full Version

CASE WHEN B.[STAT] IS NULL THEN (C.[EVENT DATE]+10) -- Type DATETIME ELSE &...

📦 .zip⚖️ 45.2 MB📅 19 Oct 2025

CASE WHEN B.[STAT] IS NULL THEN (C.[EVENT DATE]+10) -- Type DATETIME ELSE '-' -- Type VARCHAR END AS [DATE]. You need to.

⬇ Download Full Version

Pretty new to SQL and I'm attempting to write this CASE statement:CASE...

📦 .zip⚖️ 85.6 MB📅 04 Feb 2026

Pretty new to SQL and I'm attempting to write this CASE statement:CASE WHEN dwn.220.v.uaNCE_BUNDLE_TYPE_ID = 5 THEN 'N/A'.

⬇ Download Full Version

CASE [myRow] WHEN 1 THEN 'True' WHEN NULL THEN 'False' ...

📦 .zip⚖️ 50.7 MB📅 11 Oct 2025

CASE [myRow] WHEN 1 THEN 'True' WHEN NULL THEN 'False' -- this between the po date and the po line date if the po line date is dwn.220.v.uac WHERE statement if stored procedure parameter.

⬇ Download Full Version

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

📦 .zip⚖️ 69.1 MB📅 29 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

This is because 1/1/ is the first date SQL realizes. select COALESCE(EnterT...

📦 .zip⚖️ 17.7 MB📅 12 Dec 2025

This is because 1/1/ is the first date SQL realizes. select COALESCE(EnterTime,''), case when EnterTime is null then '' else EnterTime  how to validate date using case statement.

⬇ Download Full Version

does anyone have any idea on how to handle null values in a case IT IS NULL...

📦 .zip⚖️ 109.2 MB📅 06 Nov 2025

does anyone have any idea on how to handle null values in a case IT IS NULL 1 IT IS NOT NULL SQL > SELECT X,(CASE WHEN NVL(X.

⬇ Download Full Version

Use a "case" stament in my "select" with a check for &q...

📦 .zip⚖️ 82.9 MB📅 25 Apr 2026

Use a "case" stament in my "select" with a check for "ISDate()" adding some other tests to only return dates that are valid else dwn.220.v.ua each.

⬇ Download Full Version

The CASE statement is SQL's way of handling if/then logic. player_name...

📦 .zip⚖️ 94.3 MB📅 13 Oct 2025

The CASE statement is SQL's way of handling if/then logic. player_name, year, CASE WHEN year = 'SR' THEN 'yes' ELSE NULL END AS is_a_senior FROM.

⬇ Download Full Version

Question: I'm trying to write a case statement that will query the max...

📦 .zip⚖️ 52.3 MB📅 29 Oct 2025

Question: I'm trying to write a case statement that will query the maximum date from a table, and if the result is null- return sysdate. select max(case somedate.

⬇ Download Full Version

When case-expression is specified, when-expression is an SQL value If when-...

📦 .zip⚖️ 17.7 MB📅 21 Aug 2025

When case-expression is specified, when-expression is an SQL value If when-expression returns a nonzero, non-null result, then the WHEN clause is true.

⬇ Download Full Version

Using Conditional Logic in SQL with the SELECT CASE Statement (Expression) ...

📦 .zip⚖️ 20.9 MB📅 22 Sep 2025

Using Conditional Logic in SQL with the SELECT CASE Statement (Expression) to catch bad or unexpected data values, and return a result other than NULL.

⬇ Download Full Version

Null (or NULL) is a special marker used in Structured Query Language (SQL) ...

📦 .zip⚖️ 55.4 MB📅 29 May 2026

Null (or NULL) is a special marker used in Structured Query Language (SQL) to indicate that a .. SELECT CASE i WHEN NULL THEN 'Is Null' -- This will never be returned WHEN 0 THEN 'Is Zero' -- This will be returned .. Chris Date and Hugh Darwen, authors of The Third Manifesto, have suggested that the SQL Null.

⬇ Download Full Version

I have a process_due_date field and trying to use a case statement for vari...

📦 .zip⚖️ 58.5 MB📅 22 May 2026

I have a process_due_date field and trying to use a case statement for variuos days. Conversion failed when converting datetime from character string. case when process_due_date=' ' then null.

⬇ Download Full Version