I currently want to fragment a anime video database like http://www.animeraider.com/ into different sections . IE: I want to show only naruto episodes on one site and bleach ones on the other. Is this possible ? Any info is appreciated.
It depends on how the database was created, but you can do anything with dumping or programming (I *always* prefer the latter). This link shows the opposite of what you want, but the same techniques apply fine. You should be able to alter the code to do what you want quite fast, if not, give more info about the db structure etc.
You can create two tables, for example, series and episodes. Under series you can have naruto, bleach etc.. ofcourse each entry have an ID. Then on the episodes table you can have the episodes of the series linked using the series ID. In your sites you can choose which series you want to display.