SQL Server 2012 Results Grid
2 answers
I am assuming by the results grid, you mean what you get when you do a select query like "SELECT * FROM TABLE" in SQL Management Studio. If so, then no, you cannot.
The best you can do is use one of the aggregate functions on the columns (s) you want to execute, for example "SELECT SUM (ColumnName) FROM TABLE" will give you the sum of the values ββin that column.
List of SQL aggregate functions: https://technet.microsoft.com/en-us/library/ms173454(v=sql.110).aspx
+1
source to share