Is there any optimization possible in the select query below?
    SELECT 
    AwardAction.strActionName, AwardType.strAwardName, 
    Award.strStudentId,Award.iCount
    FROM
    [dbo].[Awards] Award, [dbo].[AwardAction] AwardAction,
    [dbo].[AwardTypes] AwardType
    WHERE
    AwardType.ApplicationId=@ApplicationId and 
    Award.ID=@ID and 
    AwardAction.Action=Award.Action and 
    AwardType.Type=Award.Type
The design of the table is something like this

Sorry I couldn't move the question to codereview as it already has answers