Comment trouver la table de table dans la procédure stockée SQL Server

SELECT Name
FROM sys.procedures
WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%TableNameOrWhatever%'
Healthy Hamster