D dwn.220.v.ua

sql set varchar to null

DECLARE @sql VARCHAR(MAX) SET @sql = ' UPDATE my_table SET WHERE '...

📦 .zip⚖️ 102.3 MB📅 06 Mar 2026

DECLARE @sql VARCHAR(MAX) SET @sql = ' UPDATE my_table SET WHERE ' + @column + ' = ''NULL'' ' EXEC (@sql) -- don't forget the.

⬇ Download Full Version

Did you try this? UPDATE table SET col1 = NULL WHERE col1 = '' SQ...

📦 .zip⚖️ 100.3 MB📅 04 Mar 2026

Did you try this? UPDATE table SET col1 = NULL WHERE col1 = '' SQL Server ignores trailing whitespace when comparing strings, so ' ' = ''.

⬇ Download Full Version

It's contradictive NOT NULL, but make it default NULL Remove DEFAULT N...

📦 .zip⚖️ 46.9 MB📅 09 Mar 2026

It's contradictive NOT NULL, but make it default NULL Remove DEFAULT NULL and change NOT NULL to NULL: ALTER TABLE `etexts`.

⬇ Download Full Version

Please convert the Text field to varchar, since LEN cannot be used on Text ...

📦 .zip⚖️ 86.5 MB📅 14 Feb 2026

Please convert the Text field to varchar, since LEN cannot be used on Text fields. UPDATE mytable SET textField = NULL WHERE.

⬇ Download Full Version

To set the value to null: dwn.220.v.ua(New MySqlParameter("@nome"...

📦 .zip⚖️ 56.5 MB📅 14 Mar 2026

To set the value to null: dwn.220.v.ua(New MySqlParameter("@nome", dwn.220.v.uar)).Value = dwn.220.v.ua;.

⬇ Download Full Version

Storing NULL value does not take any additional storage space. about NULL&#...

📦 .zip⚖️ 19.5 MB📅 07 Feb 2026

Storing NULL value does not take any additional storage space. about NULL's taking up the full storage of a varchar set becasue SQL cannot.

⬇ Download Full Version

An example of where "" might be a valid value, separate to NULL c...

📦 .zip⚖️ 115.2 MB📅 10 Jun 2026

An example of where "" might be a valid value, separate to NULL could . of VARCHAR string of length zero with the representation of NULL.

⬇ Download Full Version

Let's create three tables with a varchar column, two of them allowing ...

📦 .zip⚖️ 65.7 MB📅 08 Nov 2025

Let's create three tables with a varchar column, two of them allowing NULL, one not. CREATE TABLE dbo.x1(id int IDENTITY(1,1) PRIMARY.

⬇ Download Full Version

CREATE TABLE Persons (ID int NOT NULL, LastName varchar() NOT NULL, FirstNa...

📦 .zip⚖️ 90.5 MB📅 21 Feb 2026

CREATE TABLE Persons (ID int NOT NULL, LastName varchar() NOT NULL, FirstName varchar(), Age int, City varchar() DEFAULT 'Sandnes');.

⬇ Download Full Version

Changing the data structure of a column in SQL Server from NULL to NOT Any ...

📦 .zip⚖️ 58.1 MB📅 09 Jan 2026

Changing the data structure of a column in SQL Server from NULL to NOT Any attempt to set the column to NOT NULL while actual NULL data remains in the.

⬇ Download Full Version

NOT NULL, Change the nullability of a column, i.e. SET NOT NULL or DROP NOT...

📦 .zip⚖️ 119.6 MB📅 27 Feb 2026

NOT NULL, Change the nullability of a column, i.e. SET NOT NULL or DROP NOT Narrow length of a text column, e.g. VARCHAR() to VARCHAR(50).

⬇ Download Full Version

This page is part of the book SQL Complete, Really, by Peter Gulutzan is th...

📦 .zip⚖️ 98.6 MB📅 12 Feb 2026

This page is part of the book SQL Complete, Really, by Peter Gulutzan is the last ID belonging to AUTHORS_2, and the NAME Column is NULL: UPDATE Authors_1 SET id = id + 1, name = CAST(id AS VARCHAR(6)) WHERE id =1;.

⬇ Download Full Version

CREATE TABLE cust (CustomerID uniqueidentifier NOT NULL DEFAULT newid(), Co...

📦 .zip⚖️ 82.7 MB📅 14 Nov 2025

CREATE TABLE cust (CustomerID uniqueidentifier NOT NULL DEFAULT newid(), Company varchar(30) NOT NULL, ContactName.

⬇ Download Full Version

The only reason I can imagine right now where it may make sense to explicit...

📦 .zip⚖️ 88.3 MB📅 28 May 2026

The only reason I can imagine right now where it may make sense to explicitly CAST (NULL to some other type) is when you create a table via.

⬇ Download Full Version

When you set up a database (at least in MS SQL Server) you can flag a . Wha...

📦 .zip⚖️ 97.7 MB📅 29 Mar 2026

When you set up a database (at least in MS SQL Server) you can flag a . What are the advantages of having a NULL value in a varchar field.

⬇ Download Full Version