• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "YASHR - Yet Another Access SQL Help Request"

Collapse

  • Spacecadet
    replied
    Originally posted by Sockpuppet View Post


    Many thanks. Legend.
    no probs

    Leave a comment:


  • Sockpuppet
    replied
    Originally posted by Spacecadet View Post
    try

    Code:
    SELECT Date_Lookup.Date,  PQuery.SumOfHours
    FROM Date_Lookup
    LEFT JOIN
    (
    SELECT Hours.Date, Sum(Hours.Hours) AS SumOfHours
    FROM Hours
    WHERE (((Hours.ActCode)<>"UNAA" Or (Hours.ActCode)<>"SICK" Or (Hours.ActCode)<>"HOLI") AND ((Hours.Shift)="DAY") AND ((Hours.Area)="HYDRO"))
    GROUP BY Hours.Date
    ) as PQuery
     ON Date_Lookup.Date = PQuery.Date
    WHERE (((Date_Lookup.Date_Year)=2008))
    not sure you need the as before the PQuery

    Code:
    ) as PQuery
    Code:
    ) PQuery




    Many thanks. Legend.

    Leave a comment:


  • Spacecadet
    replied
    try

    Code:
    SELECT Date_Lookup.Date,  PQuery.SumOfHours
    FROM Date_Lookup
    LEFT JOIN
    (
    SELECT Hours.Date, Sum(Hours.Hours) AS SumOfHours
    FROM Hours
    WHERE (((Hours.ActCode)<>"UNAA" Or (Hours.ActCode)<>"SICK" Or (Hours.ActCode)<>"HOLI") AND ((Hours.Shift)="DAY") AND ((Hours.Area)="HYDRO"))
    GROUP BY Hours.Date
    ) as PQuery
     ON Date_Lookup.Date = PQuery.Date
    WHERE (((Date_Lookup.Date_Year)=2008))
    not sure you need the as before the PQuery

    Code:
    ) as PQuery
    Code:
    ) PQuery

    Leave a comment:


  • Sockpuppet
    started a topic YASHR - Yet Another Access SQL Help Request

    YASHR - Yet Another Access SQL Help Request

    Code:
    SELECT Date_Lookup.Date,  PQuery.SumOfHours
    FROM Date_Lookup,
    (
    SELECT Hours.Date, Sum(Hours.Hours) AS SumOfHours
    FROM Hours
    WHERE (((Hours.ActCode)<>"UNAA" Or (Hours.ActCode)<>"SICK" Or (Hours.ActCode)<>"HOLI") AND ((Hours.Shift)="DAY") AND ((Hours.Area)="HYDRO"))
    GROUP BY Hours.Date
    ) as PQuery
    LEFT JOIN PQuery ON Date_Lookup.Date = PQuery.Date
    WHERE (((Date_Lookup.Date_Year)=2008))
    Any ideas on where the error is in this?

    I get "syntax error in JOIN operation".

    Thanks in advance,
    Sockpuppet

Working...
X