PARAMETERS Declaration Example

This example requires the user to provide a job title and then uses that job title as the criteria for the query.

PARAMETERS [Employee Title] TEXT;
SELECT LastName, FirstName, EmployeeID FROM Employees WHERE Title =[Employee Title];