Help for this page

Select Code to Download


  1. or download this
        SELECT x.group_discussion_id, x.comment, x.date_posted, 
            x.username, x.realname,
    ...
                  gdp.group_discussion_post_id DESC
              ) x
          WHERE recent_post_rank <= 3
    
  2. or download this
        my $sth = $dbh->prepare('SELECT x.group_discussion_id, x.comment, 
    +x.date_posted, 
            x.username, x.realname,
    ...
    
        $sth->execute();
        return $sth->fetchall_arrayref();