Skip to content

Latest commit

 

History

History
84 lines (53 loc) · 4.29 KB

count-rows-in-a-table-visual-database-tools.md

File metadata and controls

84 lines (53 loc) · 4.29 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords
Count Rows in a Table
Count Rows in a Table (Visual Database Tools)
markingmyname
maghan
01/19/2017
sql
ssms
conceptual
totals [SQL Server], row counts
row counts [SQL Server]
column values [SQL Server]
number of rows
number of values
counting rows

Count Rows in a Table (Visual Database Tools)

[!INCLUDESQL Server] You can count rows in a table to determine:

  • The total number of rows in a table, for example, a count of all the books in a titles table.

  • The number of rows in a table that meet a specific condition, for example, the number of books by one publisher in a titles table.

  • The number of values in a particular column.

When you count values in a column, nulls are not included in the count. For example, you might count the number of books in a titles table that have values in the advance column. By default, the count includes all values, not just unique values.

The procedures for all three types of counts are similar.

To count all the rows in a table

  1. Be sure the table you want to summarize is already present in the Diagram pane.

  2. Right-click the background of the Diagram pane, then choose Add Group By from the shortcut menu. The Query and View Designer adds a Group By column to the grid in the Criteria pane.

  3. Select * (All Columns) in the rectangle representing the table or table-valued object.

    The Query and View Designer automatically fills the term Count into the Group By column in the Criteria pane and assigns a column alias to the column you are summarizing. You can replace this automatically generated alias with a more meaningful one. For more details, see Create Column Aliases (Visual Database Tools).

  4. Run the query.

To count all the rows that meet a condition

  1. Be sure the table you want to summarize is already present in the Diagram pane.

  2. Right-click the background of the Diagram pane, then choose Add Group By from the shortcut menu. The Query and View Designer adds a Group By column to the grid in the Criteria pane.

  3. Select *(All Columns) in the rectangle representing the table or table-structured object.

    The Query and View Designer automatically fills the term Count into the Group By column in the Criteria pane and assigns a column alias to the column you are summarizing. To create a more useful column heading in query output, see Create Column Aliases (Visual Database Tools).

  4. Add the data column that you want to search, and then clear the check box in the Output column.

    The Query and View Designer automatically fills the term Group By into the Group By column of the grid.

  5. Change Group By in the Group By column to Where.

  6. In the Filter column for the data column to search, enter the search condition.

  7. Run the query.

To count the values in a column

  1. Be sure the table you want to summarize is already present in the Diagram pane.

  2. Right-click the background of the Diagram pane, then choose Add Group By from the shortcut menu. The Query and View Designer adds a Group By column to the grid in the Criteria pane.

  3. Add the column that you want to count to the Criteria pane.

    The Query and View Designer automatically fills the term Group By into the Group By column of the grid.

  4. Change Group By in the Group By column to Count.

    [!NOTE]
    To count only unique values, choose Count Distinct.

  5. Run the query.

See Also

Sort and Group Query Results (Visual Database Tools)
Summarize Query Results (Visual Database Tools)