![]() |
![]() |
7 Einträge, 1 Seite |
WHERE a.user_id = b.remote_id
WHERE a.user_id = 'b.remote_id'
1 2 3 4 5
%where = ( 't.col1' => \'= t.col2', ); my ($stmt) = $sql->where( \%where); print $stmt,"\n";
1 2 3 4 5 6 7
my $column_2 = '= t.col2'; my %where = ( 't.col1' => \$column_2, ); my ($stmt) = $sql->where( \%where); print $stmt,"\n";
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#!/usr/bin/perl use strict; use warnings; use lib qw(./lib); use SQL::Abstract; my $sql = SQL::Abstract->new; print "VERSION: ", SQL::Abstract->VERSION(), "\n"; my %where = ( 't.col1' => \'= t.col2', ); my ($stmt) = $sql->where( \%where); print $stmt,"\n";
![]() |
![]() |
7 Einträge, 1 Seite |