I have a database items
Id name order status created
1 john 123 no 2020-07-06
2 deo 788 yes 2020-08-06
3 jane 987 no 2020-09-06
4 deo 234 yes 2020-11-06
my query to select
my $Check_status = $dbh->prepare("SELECT order FROM items ORDER BY cre
+ated ASC LIMIT 1");
$Check_status->execute();
my $status = $Check_status->fetchrow();
so now am selecting 1 order which earliest created first
but if that selected order status eq to no
then how can i run the query continuously and skip to next row if the previous one status eq to no
like
if ($status eq 'no') {
# skip to next row and check
}
so other part
if status eq to yes i would like to commit changes and after success i continue to next row
if ($status eq 'yes') {
# commit changes
# and then continue to check next row
}
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, 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, 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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|