I have a below code:
#!/usr/bin/perl -w use strict; use warnings; my @data_list = ( {key => 'date', value => ''}, {key => 'correct', value => 'Article_text1'}, {key => 'correct', value => 'Article_text2'}, {key => 'date', value => '2009-01-01'}, {key => 'date', value => '2009-01-02'}, {key => 'date', value => ''} ); my ($correction, $date); foreach my $data_pair(@data_list) { $correction = $data_pair->{value} if exists $data_pair->{value} and # could be undef defined $data_pair->{value} and # at least "" length $data_pair->{value} and # has length $data_pair->{value} and # has true value $data_pair->{key} eq 'correct'; $date = $data_pair->{value} if exists $data_pair->{value} and # could be undef defined $data_pair->{value} and # at least "" length $data_pair->{value} and # has length $data_pair->{value} and # has true value $data_pair->{key} eq 'date'; if($correction && $date) { my $sql .= " INSERT IGNORE INTO table SET text = '".$correction."', date='".$date."'"; print $sql; # Reset for the next loop ($correction, $date) = (undef, undef); } }
The output is as below which is not correct
INSERT IGNORE INTO table SET text = 'Article_text2', date='2009-01-01'
Instead the output should be
INSERT IGNORE INTO table SET text = 'Article_text1', date='2009-01-01' INSERT IGNORE INTO table SET text = 'Article_text2', date='2009-01-02'
The keys and values are always passed in the order as above in the array @data_list How to match the first the text and first date and get the required output.

In reply to Alternative values from array and print by gem555

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.