Skip to content

Instantly share code, notes, and snippets.

@AlD
Created September 17, 2012 14:19
Show Gist options
  • Save AlD/3737585 to your computer and use it in GitHub Desktop.
Save AlD/3737585 to your computer and use it in GitHub Desktop.
my $from = [ 'links', 'vlans' ];
my $what = [ 'links.ifname', 'vlans.vlanid' ];
my $where = { 'links.neighbour' => { '=' => \"vlans.device",
'like' => $neighbour . '%'
},
'links.device' => $device,
};
my $order = '';
my $result = $dbh->select($from, $what, $where, $order);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment