Help for this page

Select Code to Download


  1. or download this
    select distinct E_mail from table where <conditions>
    
  2. or download this
    
    my %emailhash = ();
    ...
    
    my @unique_emails = keys %emailhash;
    
  3. or download this
    %temp_hash = map {$_ => 1} @non_unique_list;
    @unique_list = keys (%temp_hash);
    ...
    
    @unique_list = sort keys (%temp_hash);