Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 3,480 total)

  • RE: How to insert multiple records from fields in select record

    step 1: find all the names that are not null 
    step 2: union them together.
    insert the result from step 2 into your final table.
    return results from final table....

  • RE: Calculate daily meeting times for each employee

    How about
    CREATE TABLE Meeting (
        MeetingID INT IDENTITY PRIMARY KEY,
        MeetingType VARCHAR(20) NOT NULL,
        StartDateTime DATETIME,
        EndDateTime DATETIME...)

    And then...

  • RE: Calculate daily meeting times for each employee

    A little normalization goes a long way. If a single record describes ONE meeting, then this is trivial.

  • RE: Query Question

    Oh, right... funny, I totally forgot about Kenneth Fisher's example of using CROSS APPLY to unpivot. (See me still thinking in terms of Access??!! BLECH!!)

  • RE: Query Question

    One way of doing it is like this:
    (this is a sample bad table)
    CREATE TABLE DiagnosesBad (
        PatientID INT NOT NULL,
        Cycle TINYINT NOT NULL,
        Diagnosis9_1 VARCHAR(20),

  • RE: Query Question

    dougsto - Monday, January 28, 2019 2:04 PM

    Unfortunately, I cannot make changes to the database. We did not develop it.

    You might have...

  • RE: Query Question

    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...

  • RE: Query Question

    dougsto - Monday, January 28, 2019 1:43 PM

    I have a table that contains multiple fields:
    Diagnosis1
    Diagnosis2
    Diagnosis3
    Diagnosis4
    Diagnosis5
    Diagnosis6
    Diagnosis7
    Diagnosis8
    Diagnosis9
    each field only contain codes, the descriptions are...

  • RE: trying to learn SQL development

    Grant Fritchey - Monday, January 28, 2019 9:15 AM

    Glad to hear the book was useful. Thank you!

    In that case, hit the stairways...

  • RE: How sql query use in Pivot table ?

    akhterhussain80 - Friday, January 25, 2019 7:52 PM

    SELECT  EmpID, ReportingDate, CASE WHEN [Days] IS null AND EXISTS         (SELECT ...

  • RE: How sql query use in Pivot table ?

    Can you post a CREATE TABLE script and the INSERT scripts for this?
    And maybe fix up your SQL so we can read it?

  • RE: Combining Two Queries into Single Query

    jkramprakash - Thursday, January 24, 2019 10:01 AM

    It is working fine.But it is also required two queries.Instead of ProductCodes table i am using...

  • RE: pick random (shuffle by dept) employees from employees table and update main table with employee name

    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...

  • RE: Is sp_send_dbmail Asynchronous?

    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...

  • RE: Is sp_send_dbmail Asynchronous?

    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...

Viewing 15 posts - 1,066 through 1,080 (of 3,480 total)