D dwn.220.v.ua

null date value in sql

if there is no value inserted, the default value should be null,empty. In t...

📦 .zip⚖️ 32.6 MB📅 23 Mar 2026

if there is no value inserted, the default value should be null,empty. In the table definition, make this datetime column allows null, be not.

⬇ Download Full Version

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

📦 .zip⚖️ 24.9 MB📅 10 Apr 2026

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

⬇ Download Full Version

Result = ' ', which is fine When I use the following to return bl...

📦 .zip⚖️ 72.2 MB📅 28 Mar 2026

Result = ' ', which is fine When I use the following to return blank/NULL for all values: SELECT '' AS SentDate FROM  replace null or empty values with default date.

⬇ Download Full Version

A NULL date is NULL (no value). An empty string, on the other hand, evaluat...

📦 .zip⚖️ 109.7 MB📅 24 May 2026

A NULL date is NULL (no value). An empty string, on the other hand, evaluates to 0, which in SQL Server is implicitly an integer representing.

⬇ Download Full Version

I have a sql stored procedure which reads dates from a database table named...

📦 .zip⚖️ 69.5 MB📅 30 Apr 2026

I have a sql stored procedure which reads dates from a database table named "Request" Sometimes the date returned is null. Is their somehow.

⬇ Download Full Version

SQL-Server Hide Copy Code. sqlq = "Update KR_REPORTS2 set " &...

📦 .zip⚖️ 43.7 MB📅 19 Nov 2025

SQL-Server Hide Copy Code. sqlq = "Update KR_REPORTS2 set " & _ "ReferenceDate = '" & IIf(dwn.220.v.ua = "", dwn.220.v.ua

⬇ Download Full Version

I am trying to do an SQL query to an Access database for an empty you can u...

📦 .zip⚖️ 54.6 MB📅 31 Jan 2026

I am trying to do an SQL query to an Access database for an empty you can use this to change the value of a field from null to empty string.

⬇ Download Full Version

Inserting a null value to the DateTime Field in SQL Server is one of the mo...

📦 .zip⚖️ 44.9 MB📅 08 May 2026

Inserting a null value to the DateTime Field in SQL Server is one of the most common issues giving various errors. Even if one enters null.

⬇ Download Full Version

Since the SQL table has field types set as a "date" format and to...

📦 .zip⚖️ 88.6 MB📅 28 Nov 2025

Since the SQL table has field types set as a "date" format and to allow Null values, SQL will insert 1/1/ in all date fields that are blank in the.

⬇ Download Full Version

SQL Server “DATE” and “DATETIME” data types store date and time values in a...

📦 .zip⚖️ 106.3 MB📅 21 Oct 2025

SQL Server “DATE” and “DATETIME” data types store date and time values in a saving in a table and instead save the value Null in the table.

⬇ Download Full Version

Some of the date values are empty - that is just "" - a comma fol...

📦 .zip⚖️ 28.1 MB📅 07 Feb 2026

Some of the date values are empty - that is just "" - a comma followed by data (using HeidiSQL), I get the following error: /* SQL Error (): Incorrect date value: to replace the blank date columns in the CSV with NULL, or ''.

⬇ Download Full Version

For a date field, is it possible to have Tableau display the null returned ...

📦 .zip⚖️ 96.9 MB📅 14 Nov 2025

For a date field, is it possible to have Tableau display the null returned by a sql query as a blank cell instead of "Null"? I am trying to do this in a text but shows a blank instead of Null for NULL values. 2 of 2 people found this.

⬇ Download Full Version

If a field in a table is optional, it is possible to insert a new record or...

📦 .zip⚖️ 23.1 MB📅 10 Jun 2026

If a field in a table is optional, it is possible to insert a new record or update a record without adding a value to this field. Then, the field will be saved with a NULL.

⬇ Download Full Version

sqlexec (insert into ps_.. values ( and so on), &var1, &var2, &...

📦 .zip⚖️ 84.5 MB📅 18 Aug 2025

sqlexec (insert into ps_.. values ( and so on), &var1, &var2, &datevar) But I am unable to insert NULL in several date fields. If I assign.

⬇ Download Full Version

SQL IS NULL Clause. NULL is a special value that signifies 'no value&#...

📦 .zip⚖️ 106.6 MB📅 06 Mar 2026

SQL IS NULL Clause. NULL is a special value that signifies 'no value'. Comparing a column to NULL using the = operator is undefined. Instead, use WHERE IS.

⬇ Download Full Version