Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

IN statment SQL Problem

  • 13-03-2006 12:05PM
    #1
    Registered Users, Registered Users 2 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, Registered Users 2 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