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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

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