Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
调用 sp_send_dbmail:成功执行,但最后会出现一个额外的行,其中包含受查询影响的行。
有什么办法可以避免这条线?
谢谢!!!
cgsabari 所说的是真实但不完整的。您需要NOCOUNT在传递给@query参数的查询中进行设置。否则将无法正常工作
NOCOUNT
@query
试试下面的查询
SET NOCOUNT ON --some queries SET NOCOUNT OFF
它避免了行受影响的消息。