Re: Mutiple Filename Queries using #filename

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



bstover@xxxxxxxxxxxxxxxx wrote:
> This is what I would like to achieve:
>
> I want to search for all filesnames that begin with ABC AND all files
> that begin with DEF. I want both filenames to be returned in the
> query.
>
> #filename=abc* AND #filename=def*
>
> How to I contruct a query to do this?

WHERE filename LIKE 'abc%' or filename LIKE 'def%'

.



Relevant Pages