in reply to Re^2: select from mysql table based on two column match
in thread select from mysql table based on two column match
You have use warnings; and perl -w, both activate warnings.
But the effects of use warnings; and perl -w are slightly different, this is explained in detail in warnings. Rule of thumb: perl -w enables warnings globally (bad), whereas use warnings; enables warnings only per file or block (good).
Alexander
|
|---|