my $class = "even"; while ($pointer = $sth->fetchrow_hashref) { $class = ($class eq "odd") ? "even" : "odd"; ...more stuff goes here.... }