I have several stored procedures that currently accept the parameters 'year' and 'department'. Instead of using a parameter for 'department', I would like to determine the department based on the user's login. For instance, if John logs in, the stored procedure should only retrieve data from table1 where table2.department = English, but when Alice logs in, it should only retrieve data from table1 where table2.department=French. Is there any way to do this without creating different stored procedures for different departments?