Thread anfängerfrage zu perl und mysql
(10 answers)
Opened by CyrusTV at 2008-04-08 11:11
Wie wäre es, das alles in einer Abfrage zu "erschlagen"?
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 # Befehl für zweite Tabelle, mit ?-Notation (siehe auch Wiki-Artikel) my $statement = qq~SELECT tabelle2.mac, tabelle1.zeit, tabelle2.zeitspalte FROM tabelle1, tabelle2 WHERE tabelle1.mac = tabelle2.mac~; my $sth = $data2->prepare( $statement ) or die $data2->errstr; # für die Debug-Ausgabe use Data::Dumper; while( my @row = $sth->fetchrow_array){ print sprintf "%s -> %s - %s\n", @row; } $sth->finish(); OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |