Viewing 15 posts - 61 through 75 (of 115 total)
Ok, apparently a prob with the inner join......
thx for the help guys, i really appreciate it.
August 22, 2007 at 2:04 pm
select
distinct P.KPAIDS_NO,P.FirstName,P.LastName
,'Age'=
August 22, 2007 at 1:39 pm
Ok, srry if i didn't make myself clear in initial posting.
What is happening with the resultset of this query is that Clients are missing from the list when i filtered...
August 22, 2007 at 1:21 pm
nope didn't work........... i want it to look somtin like the following
KP cat1 cat2 cat3 cat4
1 y no y no
2 y no y no
3 no no no no
August 22, 2007 at 12:59 pm
i already did try but got the following error, i forget to mention that the index was created on a primary key.
Cannot recreate index 'PK_Patient_Info'. The new index...
July 23, 2007 at 12:19 pm
oooh srry....
i'm using SQL Express, i want to create a TSQL script that will dynamicaly generate reports example.
1.
Month missed appoint
january, 2007 24
feb,2007 9
2.
Week missed appoint
jan-14-2007 3
jan-21-2007 4
etc
etc
thx again
July 10, 2007 at 5:25 am
dang.... i wish there was an update-insert of sort.
anyway thx man
July 4, 2007 at 1:36 pm
if these guys here say it's a bad idea.....then i really don't think you should be doing it. Unless u have some very good reason to
June 20, 2007 at 10:39 am
Select distinct Patient_Demographics.KPAIDS_NO, Patient_Demographics.LastName,Patient_Demographics.FirstName
,
Case when (dbo.CDC_Clinical_Diagnosis_lookup.Clinical_Diagnosis like 'Lymphadenopathy %' or dbo.CDC_Clinical_Diagnosis_lookup.Clinical_Diagnosis = 'Lymphadenopathy' ) then 'Yes' end as 'Lymphadenopathy',
Case when (dbo.CDC_Clinical_Diagnosis_lookup.Clinical_Diagnosis like 'Candidiasis %' or dbo.CDC_Clinical_Diagnosis_lookup.Clinical_Diagnosis = 'Candidiasis') then...
June 11, 2007 at 9:58 pm
TestKing materials are brainDumps..
Also this they(TestKing) are presently being sued by Microsoft for distributing exact copies of microsoft exams.
>>BrainDumps are for losers, and should not be endorsed on this site
June 9, 2007 at 7:53 am
what i basically want to do, is to create a sub-join so to speak.
I have multiple join in the from clause, but there's a table already joined i want to rejoin to...
May 30, 2007 at 3:43 pm
Viewing 15 posts - 61 through 75 (of 115 total)