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!

Trimp

Status
Not open for further replies.

Beginner613

Technical User
Dec 7, 2006
8
US
Hi All,

I want to creat a query (Delete query) which is going to erase empty cells in my table. How should I reffer to empty cells? "" doesnt work. I heard something with Function called Trimp? Can somebody please provide an example or something.

Thanks a lot,
B
 
Try:
Code:
DELETE YourTableName.* 
FROM YourTableName 
WHERE (yourfieldname is Null or yourfieldname = "")

EasyIT

"Do you think that’s air you're breathing?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top