This looks less like a Perl problem than a clarification of what you're trying to do (although I would heed advice re un-commenting useful code and perhaps deleting some confusing code). You're printing a .csv file to STDOUT of the tuples you're selecting but you say you want to report a) missing users and names and b) see if that missing info is located in a .csv file.

I would re-write it by loading in the .csv data first with two hashes: one for users and the other for names; both use ipaddress as the key. Then when you loop through the results of your SELECT statement, if you have missing values on either field you can simply do a lookup in the appropriate hash on the ipaddress. To report, use a subroutine that spits out html and call it when you find missing data. If it were up to me I would have just one report with additional fields indicating the (perhaps) non-missing .csv data.

Narrowing the problem down though is the first thing, then asking more specific questions as they arise.


In reply to Re: Need to search through a hashref array to find empty, null, or otherwise translucent key values. by whakka
in thread Need to compare 2 hash values by carlo1973

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.