Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

delete nulls or no values

Status
Not open for further replies.

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.
 
Nearly:

Code:
DELETE table_name
WHERE url = ''
  OR url IS NULL
--James
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top