I am *not* sure this is right but might be worth playing with-

use strict; use warnings; use YAML; use SQL::Abstract; my $original = 'A*|B|C*|D|Z'; my @refs = split /\|/, $original; my ( %like, %in ); for my $ref ( @refs ) { $ref =~ s/\*\z/%/; $ref =~ /%\z/ ? $like{$ref}++ : $in{$ref}++; } # See what we've got so far- print Dump \(%like, %in); my $sqla = SQL::Abstract->new(); my @doc_like; push @doc_like, doc => { -like => $_ } for keys %like; my ( $stmt, @bind ) = $sqla ->where({ -or => [ doc => { -in => [ keys %in ] }, @doc_like ] }); print $stmt, $/; print join(",", @bind), $/; # --- A%: 1 C%: 1 --- B: 1 D: 1 Z: 1 WHERE ( ( doc IN ( ?, ?, ? ) OR doc LIKE ? OR doc LIKE ? ) ) Z,D,B,C%,A%

You get semi-bumped on new posts and the user you're responding to gets a notice. :) Create an account and you'll get them too.


In reply to Re^3: difficulty with SQL::Abstract '-in' clauses by Your Mother
in thread difficulty with SQL::Abstract '-in' clauses by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.