Data slection based on multiple conditions

hbk

hbk

@hbk-UY6MQq Oct 26, 2024
hi frnds.

this is something which may seem foolish to ask, but i have been beating my head against the wall at the frustration of not being able to get over this...

anyways, what i want to do is to select some data from a single MySQl table, using a WHERE clause on multiple columns

eg. SELECT * from TABLENAME where COLUMN1 = VALUE1, COLUMN2 = VALUE2, COLUMN3 = VALUE3 ....

I have tried using (),AND as well as comma between the different conditions, but they all give an error.

please help...

cheers...

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • yudi

    yudi

    @yudi-9hjHvc Jul 28, 2008

    Re: data slection basd on multiple conditions

    try using OR operator coz as per my knowledge
    different conditions in where clause are seperated by OR operator......
  • esakiraja

    esakiraja

    @esakiraja-E41zUX Jul 28, 2008

    Think this below eg will help u...

    Eg: select * from tablename where primarykey(column) = 'value'
    and column2 = 'value'
    and column3 = 'value'
  • Itanium

    Itanium

    @itanium-haHgZn Aug 1, 2008

    select * from table
    where col1 = 'value1' and
    col2 = 'value2' and
    col3 = 'value3';

    this should be the query if all the columns are holding string data.
    If any column is holding numeric data, then you dont need to specify the value within quotes.

    Can you post your exact code for us to analyse ?