L
Laurel
Both of these Select statements return the same set of rows. How can I find
out what's really in them?
Select * from tblAcademics where description = ""
Select * from tblAcademics where description = " "
In particular, can I trust that description is not null in those rows? The
following SQL returns no rows
Select * from tblAcademics where description is null
out what's really in them?
Select * from tblAcademics where description = ""
Select * from tblAcademics where description = " "
In particular, can I trust that description is not null in those rows? The
following SQL returns no rows
Select * from tblAcademics where description is null