Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

IN statment SQL Problem

Options
  • 13-03-2006 1:05pm
    #1
    Registered Users Posts: 538 ✭✭✭


    Ok so,

    I have this query that i make up in php (example) It uses as you can see a IN statment.


    SELECT *
    FROM supplier
    WHERE name IN ( 'IBM', 'Hewlett Packard', 'Microsoft');


    Thing is If i have IBM - Laptops is in the field name it wont show up cause in is a specific search, So to fix i try this

    SELECT *
    FROM supplier
    WHERE name IN ( '%IBM%', '%Hewlett Packard%', '%Microsoft%');


    But this doesnt work anyone got any work arounds or something...

    Thanks,
    M


Comments

  • Closed Accounts Posts: 255 ✭✭full forward


    try this

    SELECT *
    FROM supplier
    WHERE name like '%IBM%'
    or name like '%Hewlett Packard%'
    or name like '%Microsoft%';


  • Registered Users Posts: 538 ✭✭✭mjquinno


    Excellent mate thanks for that had to do some messing with the code to get it to work but you pointed me in the right direction.

    M


Advertisement