I am trying to execute records having TotalTime nullvalue from table NewTimeAttendance... TotalTimedatatypenchar(10)
select * from newtimeattendance where TotalTime = 'NULL'
.... nothing
select * from newtimeattendance where TotalTime = 'NULL'
.... nothing
select * from newtimeattendance where TotalTime = 'NULL'
.... nothing
select * from newtimeattendance where TotalTime = null
.... nothing
select * from newtimeattendance where TotalTime = null
.... nothing
select * from newtimeattendance where TotalTime = null
.... nothing
when I select the whole table, I see that there are some values null TotalTime.. !!
This is a small sample. Why doesn’t it work? is there any way (special way) to execute "NULL" with type nchar?!
early
source
share