Bearloggs
03/04/2024, 10:39 AMselect * ntfs_acl_permissions where path = "C:\Users\vagrant\Documents\test.txt";
But when I tried to use wildcard, I cannot have results:
select * from ntfs_acl_permissions where path like "C:\Users\vagrant\Documents\%";
Do you know if it is possible to use wildcard with this table or am I making a mistake?
Thanks for your help.Andrew Zick
03/04/2024, 6:39 PMSELECT * FROM ntfs_acl_permissions WHERE path LIKE 'C:\Users\vagrant\Documents\%'
seph
path
and then join that to ntfs_acl_permissions
Bearloggs
03/06/2024, 4:24 PMSELECT f.path, p.*
FROM file AS f
CROSS JOIN ntfs_acl_permissions AS p
WHERE f.path LIKE 'C:\Users\vagrant\Documents\%'
AND p.path = f.path;