how to count rows of a displayed query code example
Example 1: how to count number of rows in sql
SELECT COUNT(*)
FROM dbo.bigTransactionHistory;
Example 2: how to get row count
Get the row count of the ResultSet
Move the pointer to the last row and get the row number
rs.last();
int rowCount = rs.getRow();
System.out.println(rowCount);