Microsoft SQL Server
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsDatabaseMicrosoft SQL Server

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old February 18th, 2004, 05:27 PM
pi4paul pi4paul is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jan 2004
Location: San Diego
Posts: 19 pi4paul User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Help writing SP to do search

I have tables that store data for Patients and Diagnosis information.

Diagnosis Table
dgID Primary Key
dgName

Patient Table
ptID Primary Key
ptAdmissionDate
ptLastName
ptFirstName
ptAdmittingIntern

There can be a number of Diagnoses for each patient so I have a 'link' table that stores
which diagnoses is for which patient.

PatientDiagnoses Table
pdID
pdPatientID Foreign key to Patient Table
pdDiagnosisID Foreign key to Diagnosis Table

I need to search the Link table for a list of diagnoses and return a recordset of the Patient Identity
(one record per patient) for patients that match any of the diagnoses.

I have written the following stored produre,

CREATE PROCEDURE [spPatients]
@Diagnosis [int] = Null
AS

SELECT DISTINCT plID FROM Patients
LEFT JOIN PatientDiagnoses ON plID = pdPatient
WHERE pdDiagnosis = @Diagnosis
GO

I need to change this SP to allow for the caller to specify multiple Diagnosis ID's! Anybody have any suggestions?

Thanks in advance.

Paul

Reply With Quote
  #2  
Old February 18th, 2004, 10:19 PM
Memnoch's Avatar
Memnoch Memnoch is offline
Unholy Moderator
ASP Free God 14th Plane (11500 - 11999 posts)
 
Join Date: Oct 2003
Location: In hell, where did you think?
Posts: 11,760 Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 3 Weeks 5 Days 5 h 22 m 16 sec
Reputation Power: 443
just call it through a loop, sending a different id everytime.
something like this.

This will call the stored procedure 9 times, passing it a different Diagnosis id each time.
Code:
Let's pretend (i) is the diagnosis id
For i = 1 To 9
   rs = Conn.Execute("EXEC dbo.spPatients @Diagnosis = i")
   
   If(rs.eof) Then
      Response.write("No records returned")
   Else
      Response.write the fields here
   End If
Next

Reply With Quote
Reply

Viewing: ASP Free ForumsDatabaseMicrosoft SQL Server > Help writing SP to do search


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway