What is the purpose of the SQL Server SET NOCOUNT ON statement?
A. Count the number of rows affected by a query
B. Suppress the count of the number of rows affected by a query
C. Count the total number of rows in a table
D. Disable the use of COUNT function
'SET NOCOUNT ON' is used to suppress the count of the number of rows affected by a query in SQL Server.