Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^2: Using multiple values in a SQL "in" statement

by perlvroom (Acolyte)
on May 02, 2013 at 17:51 UTC ( [id://1031789]=note: print w/replies, xml ) Need Help??


in reply to Re: Using multiple values in a SQL "in" statement
in thread Using multiple values in a SQL "in" statement

This worked great. thanks. Can you give me a brief explanation of what's happening at this line?  my $question_mark_string = join(',', ('?') x scalar(@id) );

Replies are listed 'Best First'.
Re^3: Using multiple values in a SQL "in" statement
by jhourcle (Prior) on May 05, 2013 at 13:07 UTC

    It's three operations. The x operator, is either a string or list multiplier. Here, it's being used on an list, as the item is in parens:

       ('?') x scalar(@id)

    scalar(@id) gives the number of items in the array. So we end up with a list of question marks the same size as the @id array.

    The join will flatten a list into a single string, placing the first argument in between each item. So we're placing a comma between each of the question marks.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1031789]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (8)
As of 2024-04-18 09:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found