Hi folks,
I am trying to export some data from two tables bridged by a third table that stores the one (file) to many (keywords) relationship.
Tables are like so:
files
id, url, title
keywords
id, word
bridge
file, word
What I want is to produce an export that has one row per file like this:
files.id, files.url, files.title, keyword1|keyword2|keyword3|...
Any advice greatly appreciated!
JG