I\'ve created a VARRAY within a table (below) I would like to query whether or not a Title has a particular theme, eg. Show \'Action\' games. I\'m not to sure how to go abou
For multiple themes you could do something like
select g.Title from game_table g, table(g.gameTheme) t where t.Theme in ('FPS','Action') group by g.Title having count(0) = 2;
This could also allow you to do things like get titles with exactly n matches, at least n matches, at most n matches...