List of SQL Server Triggers created on Database Tables
SQL Server database administrators and T-SQL developers can query sys.triggers system catalog view for database table triggers and table names. This SQL tutorial shares the source codes of a SQL query that list all triggers created on database tables with the table names that they are created on.
SQL Server database administrator or T-SQL programmer can query sys.triggers system catalog to see the full list of SQL triggers created on that SQL database.
SQL Server sys.triggers catalog view to list all triggers created on that database
Let's modify the above SQL Select statement and add additional field for table name and remove unnecessary columns to simplfy the query.
All triggers and corresponding table names on a SQL Server database
You can add additional WHERE clause criteria list to filter for a specific database table name to return the list of triggers created on that specific sql table.