Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: SQLite and large number of parameters

by bart (Canon)
on Dec 10, 2012 at 11:53 UTC ( [id://1008091]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    SELECT *
    FROM my_table
    WHERE 
       col_1 IN (select id from something) AND
       col_2 IN (select id from something_else)
    
  2. or download this
    SELECT *
    FROM my_table
    INNER JOIN (select col_1 from something) A USING (col_1)
    INNER JOIN (select col_2 from something_else) B USING (col_2)
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-24 05:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found