What's wrong with this query? Why it doesn't work? I know for a fact that there are files named "VIRUS.exe", and yet live discovery doesn't return any results.
SELECT
path,
directory,
filename,
device,
size
FROM file
WHERE path LIKE '%VIRUS.exe%'
How to make a query that searches if a file with a given name exists? Thank you in advance.
Top Comments