Click here to Skip to main content
15,891,513 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
SQL
SELECT b.Patient_Id, a.ParameterId,b.Id,a.Target_Value,b.Sub_Type_Code
            FROM disease_parameter a, patient_progress_tracking_header b
           WHERE a.DiseaseId = 1 and b.Sub_Type_Code='BIOMADE'





when i am selecting values from disease_parameter and patient_progress_tracking_header
1 recorde get selected 3 times..please help me
Posted

1 solution

check this link.
http://www.roseindia.net/sql/sqljoin/mysql-natural-join.shtml[^]

try to give join in your query with condition.

SQL
SELECT b.Patient_Id, a.ParameterId,b.Id,a.Target_Value,b.Sub_Type_Code
            FROM disease_parameter a JOIN  patient_progress_tracking_header b
           WHERE a.DiseaseId = 1 and b.Sub_Type_Code='BIOMADE'
 
Share this answer
 
v2
Comments
ujali 16-Jan-13 1:19am    
SELECT b.Patient_Id, a.ParameterId,b.Id,a.Target_Value,a.Sub_Type_Code
FROM disease_parameter a inner join patient_progress_tracking_header b on a.DiseaseId = b.DiseaseId
WHERE a.DiseaseId = 1 and b.Sub_Type_Code='BIOMADE'

I tried this also..this is also giving multiple rows
josh-jw 16-Jan-13 1:22am    
without seeing your table result , i am not sure about this join. one thing do give a group by clause .

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900