@matrix Is drive_file.userId supposed to be surrounded by ' '? (plus there is a space between the name and the second '.)
@trinsec Without ' ' it says
ERROR: column drive_file.userid does not exist
LINE 1: SELECT id, name, url FROM drive_file WHERE drive_file.userId...
^
HINT: Perhaps you meant to reference the column "drive_file.userId".
@trinsec I originally went for those too, but they didn't work.
@matrix I'd have gone either
SELECT id,name,url FROM drive_file WHERE userId LIKE '%blabla%'
(% is a wildcard, LIKE is not for precise matching)
or
SELECT id,name,url FROM drive_file WHERE userId = 'blabla'
Other than that my knowledge's rusty, I need to get back to devving and databases someday.