Well, i've tested it on copy of server, and there slight issues with it:
1. Custom backgrounds and logos also got included by querie ntozier posted, so i included filter by ost_file.key
(or mabye its better by ost_file.id
itslef?).
2. There still icon of attachment on the ticket without attachment, which confuses people.
this working fine for me (mysql Ver 14.14 Distrib 5.7.15):
DELETE `ost_file`, `ost_file_chunk` FROM ost_file
LEFT JOIN ost_file_chunk ON ost_file.id = ost_file_chunk.file_id
WHERE ost_file.created < NOW() - INTERVAL 180 DAY AND ost_file.key
NOT IN('key_of_logo_1','key_of_scp_bg_1','key_of_logo_2','key_of_scp_bg_2',...etc);
PS: im not responsible if you damage your production db by this query.
ntozier always back up your database before you run any sql queries against it