This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

"Looping" through list in Live Query

Good afternoon!

I am working on a query where I would like to essentially perform a "For Each Loop" on the results.

I am not sure what the SQL equivalent is.

Can someone assist me and/or direct me to the proper syntax?

Based on the following query, I would like to "grep" each of the file paths for a string.

SELECT path, directory, filename FROM file WHERE directory LIKE 'C:\users\%\AppData\Local\Google\Chrome\User Data\Default%%' AND filename IS 'Preferences'

Example grep query to be run on each discovered file path:

SELECT line FROM grep WHERE pattern = 'test' AND path = 'C:\users\bobjoe\AppData\Local\Google\Chrome\User Data\Default\Preferences'

Thanks!



This thread was automatically locked due to age.
Parents Reply
  • It seems to be in grep.  If you create a couple of text files:
    C:\1000.txt
    C:\1001.txt
    Add 1000 and 1001 'a' characters on the first line as per the name suggests.
    Then run the query:

    SELECT * FROM grep WHERE path = C:\1000.txt and pattern ="a"
    SELECT FROM grep WHERE path = C:\1001.txt and pattern ="a"
    Only the 1000 query will return a result for me.

Children