Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Querying 2 Values Form 1 Column in DBIx::Class

by phildeman (Scribe)
on Jan 26, 2018 at 18:25 UTC ( [id://1207967]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    SELECT *
    FROM People
    WHERE Name like '%Franklin%' and Name like '%Linsey%'
    
  2. or download this
    @results = $schema->resultset( 'Peoplel' )->search({
                 Name => { like => '%Franklin%' },
                 Name => { like => '%Linsey'%' }
              }
     );
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (7)
As of 2024-03-28 19:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found