My company is about to update our SQL server to 2016. Therefore I am looking through all our triggers (there's a lot!) locating the ones, which return result sets.
So far I have checked for "select" (not part of insert, delete, update and variable assignment), "exec" of stored procedures, "return", and "fetch", which doesn't "fetch into @someVar".
What are the other SQL statements, which can result in a trigger returning a result set?