make your data consistent first :
UPDATE Person SET FullName=NULL WHERE FullName != ''
then request your details without worrying about inconsistencies:
SELECT * FROM Person WHERE FullName IS NOT NULL
IF you cannot / cannot correct your data, you can use this:
SELECT * FROM Person WHERE FullName != ''
source share