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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Delete Attachments for Table

Status
Not open for further replies.

jasonhuibers

Programmer
Joined
Sep 12, 2005
Messages
290
Location
CA
A column in my Table1 contains pdfs, docs and xls as attachment types. Is there a query that I can use to delete specific types in that column. IE: delete from table1 where type = 'pdf'
I only want to delete the PDF types....
 
Have you tried:
[tt]delete from table1 where type = 'pdf'[/tt]

 
The column contains an actual file (pdf, doc or xls)...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top