Viewing 15 posts - 1,081 through 1,095 (of 3,489 total)
Yes, it does.
SELECT dbo.mdhomadm.Patient_Number, dbo.mdhomadm.Diagnosis9_1, dbo.mdhomadm.Diagnosis9_2, dbo.mdhomadm.Diagnosis9_3, dbo.mdhomadm.Diagnosis9_4, dbo.mdhomadm.Diagnosis9_5,
dbo.mdhomadm.Diagnosis9_6, dbo.mdhomadm.Diagnosis9_7, dbo.mdhomadm.Diagnosis9_8, dbo.mdhomadm.Diagnosis9_9, dbo.mdicdcde.ICD_Code_Description
FROM dbo.mdhomadm LEFT OUTER JOIN
dbo.mdicdcde ON dbo.mdhomadm.Diagnosis9_1 = dbo.mdicdcde.ICD_Code
The problem is...
January 28, 2019 at 2:06 pm
January 28, 2019 at 1:57 pm
In that case, hit the stairways...
January 28, 2019 at 1:34 pm
SELECT EmpID, ReportingDate, CASE WHEN [Days] IS null AND EXISTS (SELECT ...January 26, 2019 at 1:57 am
Can you post a CREATE TABLE script and the INSERT scripts for this?
And maybe fix up your SQL so we can read it?
January 25, 2019 at 8:34 pm
January 24, 2019 at 8:46 pm
This should get you started. Since you're new here, I created your table and added some data. If you want a tested answer, you should provide this.CREATE...
January 24, 2019 at 9:18 am
Okay, thanks! (Finally got the e-mail from my database!... where do they go when they get lost between my computer and gmail?) So I know the code works...
Guess...
January 24, 2019 at 9:07 am
I'll have a read. From a quick scan, I'd basically have to use a unique subject and search for that and the recipient's e-mail in the table, and if not...
January 24, 2019 at 12:04 am
like this?CREATE TABLE [dbo].[ProductCodes](
[F_Product] [char](1) NOT NULL,
[F_TextCode] [char](7) NOT NULL,
[F_Phrase] [varchar](5) NOT NULL
);
GO
INSERT INTO ProductCodes VALUES
('A','MANU001','TEST1'),
('A','MANU002','TEST2'), ...
January 24, 2019 at 12:01 am
no. my requirement was super simple. Essentially, when an employee is assigned a task/drug protocol/whatever, send him an e-mail advising him of it. I had asked about this maybe pre-Service...
January 22, 2019 at 7:28 pm
Maybe they're waiting for you to post your plan for them to comment on?
January 21, 2019 at 10:01 pm
Oh, okay. That's what I was wondering. Thanks for the explanation. I was reading the documentation and it wasn't totally clear.
Thanks, Lowell (and everybody). That answers my question.
January 21, 2019 at 5:28 pm
There query appears to be missing an alias:SELECT o2a.SOURCE_ID source_id, o2a.VALUE
FROM CR2Copy..OBJECT_TO_ATTRIBUTE
should beSELECT o2a.SOURCE_ID source_id, o2a.VALUE
FROM CR2Copy..OBJECT_TO_ATTRIBUTE AS o2a
January 21, 2019 at 8:42 am
Viewing 15 posts - 1,081 through 1,095 (of 3,489 total)