There are two things which you need to modify.

1.The problem may be because you are using the "= =" operator in your code to compare.
For string comparision you have to use "eq" like $W eq $Q.

As the SQL statements can have other words than the table names you should go for pattern matching of table name instead of checking for equality.
For Eg if SQL Stmt is as: Select * from abc
If suppose you are searching for table name "abc" and you use equality operator, the strings will never match, so go for the regex.

2. Also you are pushing the table name found into an array and writing the whole array again. So by this there will be repetition of table names
Instead of pushing into an array and writing that array to a file, just write the table name alone to the file as print USED $W;
So code can be:
foreach $W (@tableList){ foreach $Q (@fileList){ if($Q =~ /$W/i){ print TABLE "$W\n"; push(@tableUsed, $W); print USED $W; }#end of if else{ print USED "no tables exist in the file\n"; } } }#end of foreach loop

In reply to Re: comparing 2 lists by santhi
in thread comparing 2 lists by dhudnall

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.