D dwn.220.v.ua

check date is null in sql server

SELECT COUNT(*) FROM Person WHERE BirthDate IS NULL....

📦 .zip⚖️ 114.5 MB📅 01 Jun 2026

SELECT COUNT(*) FROM Person WHERE BirthDate IS NULL.

⬇ Download Full Version

Or do you mean something else by "empty" that isn't NULL? Do...

📦 .zip⚖️ 51.6 MB📅 22 Oct 2025

Or do you mean something else by "empty" that isn't NULL? Does your column allow NULL values? Are you instead looking for some kind of.

⬇ Download Full Version

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

📦 .zip⚖️ 31.3 MB📅 20 Nov 2025

select id, StartDate, CASE WHEN StartDate IS NULL THEN 'Awaiting' ELSE Also, it will no longer work in upcoming versions of SQL server.

⬇ Download Full Version

erm it does work? I've just tested it? /****** Object: Table [dbo].[Da...

📦 .zip⚖️ 100.3 MB📅 23 Dec 2025

erm it does work? I've just tested it? /****** Object: Table [dbo].[DateTest] Script Date: 09/26/ ******/ SET ANSI_NULLS ON GO.

⬇ Download Full Version

CASE and CAST should work: CASE WHEN mycol IS NULL THEN '' ELSE C...

📦 .zip⚖️ 56.9 MB📅 30 Aug 2025

CASE and CAST should work: CASE WHEN mycol IS NULL THEN '' ELSE CONVERT(varchar(50), mycol, ) END.

⬇ Download Full Version

Try converting the date to a string so it doesn't try to convert '...

📦 .zip⚖️ 67.1 MB📅 19 Dec 2025

Try converting the date to a string so it doesn't try to convert '' to a date: If you're just checking for NULL values, you might try ISNULL() and.

⬇ Download Full Version

I'm writing a TSQL procedure using a CASE statement to display a NULL ...

📦 .zip⚖️ 116.7 MB📅 28 Feb 2026

I'm writing a TSQL procedure using a CASE statement to display a NULL date represented as ' ' as a '' string but  Replace datetime column with null as empty string.

⬇ Download Full Version

I have Datetime field in my table which is set to NULL. Now, when I am An e...

📦 .zip⚖️ 120.2 MB📅 14 Dec 2025

I have Datetime field in my table which is set to NULL. Now, when I am An empty string is not a null value in SQL Server. It appears that you.

⬇ Download Full Version

If you're checking whether or not the value is NULL, there is no need ...

📦 .zip⚖️ 102.5 MB📅 23 Dec 2025

If you're checking whether or not the value is NULL, there is no need to isnull(cast(cast(DOB as date)as varchar),'') as DOB (SQL SERVER).

⬇ Download Full Version

Hi all,. I am trying to do an SQL query to an Access database for an empty ...

📦 .zip⚖️ 57.5 MB📅 29 Mar 2026

Hi all,. I am trying to do an SQL query to an Access database for an empty Date field, but I keep getting the error "Data type mismatch in criteria.

⬇ Download Full Version

Returns 1 if the expression is a valid date, time, or datetime value; other...

📦 .zip⚖️ 30.8 MB📅 21 Nov 2025

Returns 1 if the expression is a valid date, time, or datetime value; otherwise, 0. Syntax for SQL Server, Azure SQL Database, Azure SQL Data Warehouse, NULL, 0. Values of data types listed in Data Types in any data type category other I need to check, if date, just print date in dwn.220.v.ua format.

⬇ Download Full Version

Syntax for SQL Server, Azure SQL Database, Azure SQL Data Warehouse, Parall...

📦 .zip⚖️ 101.6 MB📅 24 May 2026

Syntax for SQL Server, Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse expression IS [ NOT ] NULL.

⬇ Download Full Version

SQL Server This is because 1/1/ is the first date SQL realizes. case when E...

📦 .zip⚖️ 15.2 MB📅 07 Feb 2026

SQL Server This is because 1/1/ is the first date SQL realizes. case when EnterTime is null then '' else convert(varchar,EnterTime,).

⬇ Download Full Version

how to check datetime is null? Its very simple, but where you want to check...

📦 .zip⚖️ 83.8 MB📅 09 Oct 2025

how to check datetime is null? Its very simple, but where you want to check? in sqlserver or code side. I believe you want in sqlserver side.

⬇ Download Full Version

Note: It is very important to understand that a NULL value is different fro...

📦 .zip⚖️ 32.9 MB📅 24 Mar 2026

Note: It is very important to understand that a NULL value is different from a zero value or a field that contains spaces. A field with a NULL value is one that has.

⬇ Download Full Version