I have a table from which I wish to delete rows where a certain column is either NULL or contains the word "memo". I am using the follwing code:DELETE FROM MASTER_ACCOUNT_MEMO WHERE isnull(MEMO, '') = NULLGODELETE FROM MASTER_ACCOUNT_MEMO WHERE (MEMO = '%memo%')GO
I have tried various versions of the code above, such as:DELETE FROM MASTER_ACCOUNT_MEMO WHERE (MEMO = NULL)GODELETE FROM MASTER_ACCOUNT_MEMO WHERE MEMO = '%memo%'GO
When I run it, no rows are affected.Any ideas would be appreciated.ThanksP