Apr 4, 2003 #1 dav667 Programmer Apr 3, 2003 3 GB if there are nulls or no values in a field called url can i delete these records with this sql statement delete from table where url='' thx.
if there are nulls or no values in a field called url can i delete these records with this sql statement delete from table where url='' thx.
Apr 4, 2003 #2 JamesLean Programmer Dec 13, 2002 3,059 GB Nearly: Code: DELETE table_name WHERE url = '' OR url IS NULL --James Upvote 0 Downvote