Results 1 to 2 of 2

Thread: [RESOLVED] Missing keyword sql

  1. #1

    Thread Starter
    Lively Member networkmancer's Avatar
    Join Date
    Jan 2011
    Posts
    98

    Resolved [RESOLVED] Missing keyword sql

    Anyone?
    Got it ( - - )

    Code:
    Select TRANSACTION.TRANSACTION_ID,CUSTOMER.FNAME,CUSTOMER.LNAME,PET.PNAME
    from CUSTOMER
    FULL JOIN TRANSACTION
    ON CUSTOMER.CUSTOM_ID=TRANSACTION.CUSTOM_ID
    FULL JOIN PET
    ON CUSTOMER.PET_ID=PET.PET_ID
    order by CUSTOMER.FNAME
    Last edited by networkmancer; Feb 8th, 2012 at 09:51 PM.
    Requiscat En Pace

  2. #2
    Addicted Member
    Join Date
    Nov 2011
    Posts
    177

    Re: [RESOLVED] Missing keyword sql

    Code:
    Select T.Transaction_ID, C.Fname, C.Lname, P.Pname
    From Customer C, Transaction T, Pet P
    Where C.Custom_id = T.Custom_id and C.Pet_id = P.Pet_id
    order by C.Fname
    does this do the same?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width