Apr 16, 2001 #1 mrblonde Technical User Mar 16, 2001 187 US How can you select a record that is not null and not a space? I have: AND CustTicket IS NOT NULL AND CustTicket IS NOT '' Anyone?
How can you select a record that is not null and not a space? I have: AND CustTicket IS NOT NULL AND CustTicket IS NOT '' Anyone?
Apr 16, 2001 1 #2 foxbox Programmer Sep 11, 2000 1,052 NL AND isnull(CustTicket, '$$$' ) <> '$$$' AND CustTicket<>'' (i presume CustTicket is char) '$$$' is just a sample string, any string that is never a valid CustTicket is oke. br Gerard (-: Better a known bug then a new release. | Do it! | V Upvote 0 Downvote
AND isnull(CustTicket, '$$$' ) <> '$$$' AND CustTicket<>'' (i presume CustTicket is char) '$$$' is just a sample string, any string that is never a valid CustTicket is oke. br Gerard (-: Better a known bug then a new release. | Do it! | V
Apr 17, 2001 #3 Adita IS-IT--Management Apr 16, 2001 5 CA AND CustTicket IS NOT NULL AND CustTicket <> '' Upvote 0 Downvote