Delete Attachments for Table
Delete Attachments for Table
(OP)
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....
I only want to delete the PDF types....
RE: Delete Attachments for Table
delete from table1 where type = 'pdf'
RE: Delete Attachments for Table