@matrix Is drive_file.userId supposed to be surrounded by ' '? (plus there is a space between the name and the second '.)
@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.
@trinsec I originally went for those too, but they didn't work.
@trinsec Neither works, removing the space does nothing and using double quotes causes this error:
ERROR: column "drive_file.userId" does not exist
LINE 1: SELECT id, name, url FROM drive_file WHERE "drive_file.userI...