G
Guest
Hi there,
I have an Approval Table which records whenever a quote gets printing
approval or has it taken away. There are 3 levels of approval which get
stored as numbers 1,2 or 3.
In the main management screen for that particular project I want to be able
to display the most recent approval records for each of the 3 approval levels.
My SQL is still at the baby stage so if someone could help me through this I
would really appreciate it.
Something Like
SELECT Distinct Approval.Approval_Level, Approval.Date_App, Employee.Last_Name
FROM Approval INNER JOIN Employee ON Approval.Approval_Emp_ID =
Employee.Employee_ID
ORDER BY Approval.Date_App
????? Help ! =)
I have an Approval Table which records whenever a quote gets printing
approval or has it taken away. There are 3 levels of approval which get
stored as numbers 1,2 or 3.
In the main management screen for that particular project I want to be able
to display the most recent approval records for each of the 3 approval levels.
My SQL is still at the baby stage so if someone could help me through this I
would really appreciate it.
Something Like
SELECT Distinct Approval.Approval_Level, Approval.Date_App, Employee.Last_Name
FROM Approval INNER JOIN Employee ON Approval.Approval_Emp_ID =
Employee.Employee_ID
ORDER BY Approval.Date_App
????? Help ! =)