Question: Which command will return a list of triggers in the current database?
- `DISPLAY TRIGGERS;`
 - `SHOW TRIGGERS;`
 - `SELECT ALL TRIGGERS;`
 - `SELECT * FROM information_schema.triggers;`
 
Answer: The correct answer of the above question is Option B:`SHOW TRIGGERS;`