in reply to Re: DBI MySQL Join Question
in thread DBI MySQL Join Question
The big need now is to get RegioName from RegioID on Regio, SourceName from SourceID on Sources, etc., without duplicate Images being given.
Maybe a Dumper output of the structure I need would help:
$VAR1 = { 'SAMPLE' => { 'Regio' => { 'RegioName' => 'VI', 'RegioID' => 22 }, 'Themes' => [ { 'ThemeID' => 512, 'ThemeName' => 'Greek Battles', 'ThemeType' => { 'ThemeCategory' => { 'ThemeCategoryName' => 'Narrative Scenes', 'ThemeCategoryID' => 2 } } }, { 'ThemeID' => 196, 'ThemeName' => 'Alexander the Great', 'ThemeType' => { 'ThemeCategory' => { 'ThemeCategoryName' => 'Characters', 'ThemeCategoryID' => 4 } } }, { 'ThemeID' => 9, 'ThemeName' => 'Darius', 'ThemeType' => { 'ThemeCategory' => { 'ThemeCategoryName' => 'Characters', 'ThemeCategoryID' => 4 } } }, { 'ThemeID' => 17, 'ThemeName' => 'Central Floor Mosaic', 'ThemeType' => { 'ThemeCategory' => { 'ThemeCategoryName' => 'Zones', 'ThemeCategoryID' => 9 } } } ], 'ImageID' => 4, 'ImageName' => 'Battle of Issus Mosaic', 'Insula' => { 'InsulaID' => 96, 'InsulaName' => 'House of the Faun' } } }
|
---|