I definitely would NOT hardcode the levels into your code.

If you are going to use the %levels in multiple places in you code then you might want to experiment with SELECT'ing the levels into %level and using that as a cache. Keeping them cached would probably be worth it from a performance standpoint if doing so will actually let you make fewer calls to the database, but probably not worth it if it just means make making the same number (albiet shorter) calls to the db.

Don't automatically take the caching route even if the performance gains are tremendous, though. Maintainability is just as important or even more important than performance. You don't want to have to do kludges or make hard-to-change code in the name of performance.

In the sample code that you provided, most of your overhead is going to come from creating db connections and cursors. The overhead from the join is going to be miniscule compared to that.

Hanlon's Razor - "Never attribute to malice that which can be adequately explained by stupidity"

In reply to Re: hash or tables... by Art_XIV
in thread hash or tables... by kiat

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.