What you want
Simple Topics
The Camel book. It's been the definitive guide for many many years - and there have been updates to the book, so be careful to see that you're getting the latest version.
If the Camel book does not meet your needs, you should invest time into online tutorials. Additionally, Perl6 is around the corner. While the Camel book may teach you the core concepts of Perl, it may not include some of the more recent additions that Perl6 has to offer.
Advanced Topics [my pick]
Higher-Order Perl
by M J Dominus
http://hop.perl.plover.com/book/
Not only is it written by someone who's written many Perl modules, but it gets into memoization, recursion, callbacks, caching; it's not meant for the beginner programmer like the Camel book is.
Best of all: it's free.
Goto the website above. You can legally download the whole book above. It's written w/ LaTeX, so the pages look exactly as the book would, if you bought it (you can purchase the book at retail stores for around $50-$80). There are even two versions, one has the margins, which allows you to cut the pages down to the actual book size, the other just makes the font bigger to fit an 8x11 sheet of paper.
A co-worker had this treasure on the shelf and I stole it :)
Things to consider
Books are static, webpages change - good, updated, online tutorials adapt to the changes and thus are a good first stop for answers to questions, or examples
Perl is a vast language. C has it's many library/header files and Perl has it's Modules
. It is easier to learn something when you have a specific task in hand, that way you can become familiar with the best module to use and familiar with the language through the module's examples.