Results 1 to 4 of 4

Thread: Multi-part Identifier could not be found

  1. #1
    Join Date
    Feb 2009
    Posts
    64

    Multi-part Identifier could not be found

    hello everyone,

    Please consider the following SQL script -

    Code:
    use PatientCare
    go
    select pr.PatientId, p.FirstName,p.LastName, m.Name 
    from Prescription as pr inner join Patient as p inner join Medicine as m
    on p.PatientId = pr.PatientId 
    on pr.MedicineCode = m.MedicineCode;
    For this SQL script, I get the error messages - "multi-part identifier could not be found"

    Please help,,,,,,,

  2. #2
    Join Date
    Jan 2008
    Posts
    1,521

    Re: Multi-part Identifier could not be found

    Do it this way -

    Code:
    SELECT pr.PatientID, p.FirstName, p.LastName, m.Name
    FROM Prescription pr 
    JOIN Patient p ON p.PatientID = pr.PatientID
    JOIN Medicine m ON pr.MedicineCode = m.MedicineCode
    or you can do it this way -

    Code:
    SELECT pr.PatientID, p.FirstName, p.LastName, mName
    FROM Prescription pr, Patient p, Medicine m
    WHERE p.PatientID = pr.PatientID AND pr.MedicineCode = m.MedicineCode

  3. #3
    Join Date
    May 2008
    Posts
    2,012

    Re: Multi-part Identifier could not be found

    hey Ananias,

    I think there was some minor syntax error and the script given by Modifier is correct. Try it....

  4. #4
    Join Date
    Feb 2009
    Posts
    64

    Re: Multi-part Identifier could not be found

    I would really like to thank you guys......the problem is solved.....the script provided by Modifier worked nicely !!!!

    Thanks a lot once again.......bye

Similar Threads

  1. Replies: 5
    Last Post: 18-08-2011, 12:11 AM
  2. What does at @ identifier means in C#
    By Shaan12 in forum Software Development
    Replies: 3
    Last Post: 17-11-2009, 01:29 AM
  3. How to Extract abc.part.001 abc.part.002 files
    By Jinendra in forum Windows Software
    Replies: 3
    Last Post: 05-03-2009, 11:43 AM
  4. TrIDNET - File Identifier
    By Spykar in forum Reviews
    Replies: 2
    Last Post: 02-12-2008, 07:07 PM
  5. Multi Speakers/multi Sound Cards
    By PeterAGASSI in forum Hardware Peripherals
    Replies: 5
    Last Post: 12-11-2008, 11:40 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,750,698,671.02757 seconds with 16 queries