Jump to content

[SOLVED] How to search all the columns using 'OR'?


gokhul

Recommended Posts

Hello,

 

Can anyone tell me how to get the result from 3 columns that have the same value.

 

I have 5 columns namely

 

patient    age  diag1        diag2      diag3

1              20    75              20        100

2              30    89            100          67

3              40    100            89          89

 

I need to get the total details as result that has a value 100 in either of the three columns(diag1,diag2,diag3).

 

I am using the following code....

 

select * from patient where diag1 or diag2 or diag3=100;

 

is that correct?

 

Please help me.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.