Thread SQL::Abstract und LEFT JOIN (10 answers)
Opened by Froschpopo at 2007-11-22 16:20

Froschpopo
 2007-11-22 16:20
#102795 #102795
User since
2003-08-15
2653 Artikel
BenutzerIn
[default_avatar]
huhu
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use strict;
use warnings;
use SQL::Abstract;

my $sql = SQL::Abstract->new;

my @fields = ('id', 'name');
my %where = (id => 15);

my($sth, @bind) = $sql->select('users', \@fields, \%where);

print $sth,"\n";


Wie bekomme ich hier einen LEFT JOIN hinein?

View full thread SQL::Abstract und LEFT JOIN