I have this. \"Detail all films shown by the club between any two given dates, inputted by the user. For example a club member must be able to input a start date and an end
CREATE PROCEDURE SomeName(@UserStart DATETIME, @UserEnd DATETIME)
AS BEGIN
SELECT somestuff
FROM sometable
WHERE somedate BETWEEN @UserStart AND @UserEnd
END