Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $sql = "f1,f2, SUM(f3),CONCAT(f4,f5, f6), f7";
    
    print "$_\n" for mysplit($sql);
    
  2. or download this
    f1
    f2
     SUM(f3)
    CONCAT(f4,f5, f6)
     f7