Using openoffice.org Base 3.1.1
Given the database below with three tables, I would like to create a query with the following output. How can this be achieved with queries or views?
output
book.title, tags
title 1, tagdescription1 tagdescription2 tagdescription3
title 2, tagdescription2
database
BOOK
id - primary key,title
1, title 1
2, title 2
TAG
id - primary key,name
tag1, tagdescription1
tag2, tagdescription2
tag3, tagdescription3
BOOK_TAG
book_id,tag_id
1,tag1
1,tag2
1,tag3
2,tag2