Вниз
Скачать: CL | DM;

Как найти/удалить NULL записи в столбце типа DateTime (MS SQL)   Найти похожие ветки 

 
Layner ©   (2004-02-27 09:09) [0]

У меня есть там пустые записи, хотел бы удалить, а .. никак не удаляет, не видит их и все.. делал так, никак...
DELETE FROM login WHERE len(time_in)<1
DELETE FROM login WHERE time_in=NULL

По селекту их соответственно так же не отбирает :(


 
Sergey13 ©   (2004-02-27 09:12) [1]

time_in is NULL


 
Nikolay M. ©   (2004-02-27 09:28) [2]

Вдогонку, чтобы работало

> WHERE time_in=NULL

нужно сначала установить
SET ANSI_NULLS OFF


 
Layner ©   (2004-02-27 09:37) [3]

Спасибо! Все получилось!


 
Fiend ©   (2004-02-27 09:44) [4]

То Nikolay M. ©   (27.02.04 09:28) [2]
Это для чего? чтобы было легче идентифицировать нулы?


 
Nikolay M. ©   (2004-02-27 09:59) [5]


> Fiend ©   (27.02.04 09:44) [4]

Цитата из BOL, лень пересказывать и так все понятно:


SET ANSI_NULLS
Specifies SQL-92 compliant behavior of the Equals (=) and Not Equal to (<>) comparison operators when used with null values.

Syntax
SET ANSI_NULLS {ON | OFF}

Remarks
The SQL-92 standard requires that an equals (=) or not equal to (<>) comparison against a null value evaluates to FALSE. When SET ANSI_NULLS is ON, a SELECT statement using WHERE column_name = NULL returns zero rows even if there are null values in column_name. A SELECT statement using WHERE column_name <> NULL returns zero rows even if there are nonnull values in column_name.

When SET ANSI_NULLS is OFF, the Equals (=) and Not Equal To (<>) comparison operators do not follow the SQL-92 standard. A SELECT statement using WHERE column_name = NULL returns the rows with null values in column_name. A SELECT statement using WHERE column_name <> NULL returns the rows with nonnull values in the column.



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.46 MB
Время: -0.968 c
8-1069701427
g-l-u-k
2003-11-24 22:17
2004.03.28
Регистрация расширения


1-1078686109
Anthony
2004-03-07 22:01
2004.03.28
Помогите с экспертной системой!!!!плизззз


1-1078548159
Android
2004-03-06 07:42
2004.03.28
TRxRichEdit


14-1078001008
VID
2004-02-28 23:43
2004.03.28
Мне нужен ваш совет


1-1078492564
Samtron
2004-03-05 16:16
2004.03.28
GetFileType




   Наверх