1

Temat: Problem z polem data gdy jest null

Mam problem z wykonaniem selecat dla wierszy z datą która jest nie wpisana.
Jest tabela: w której:

  nrkro character(14) NOT NULL,
  datur date,
 

W podglądzie mam wiersze np:
nrkro | datur |
005070936501  ||
AT007530709   |2005-01-15|

Nie mogę wyświetlić żadnego wiersza, który ma pole datur puste sad
Robię:

select * from tabela where datur=null
select * from tabela where datur=''
select * from tabela where datur=""
select * from tabela where datur='    -  -  '
select * from krowy where to_char(datur,  'YYYY-MM-DD')=''
select * from krowy where to_char(datur,  'YYYY-MM-DD')='    -  -  '
select * from krowy where to_char(datur,  'YYYY-MM-DD')=null

nic z powyższego nie działa tzn wynik jest pusty

Jakieś pomysły?

2

Odp: Problem z polem data gdy jest null

JUŻ NIE WAŻNE smile

WYSTARCZYŁO: select * from tabela where datur is null