query to count number of rows in a table code example
Example 1: sql query to get the number of rows in a table
SELECT COUNT(*) FROM tablename
Example 2: To count number of rows in SQL table
SELECT count(*)
FROM information_schema.columns
WHERE table_name = 'Your_table_nale';
Example 3: how to count number of rows in sql
SELECT COUNT(*)
FROM dbo.bigTransactionHistory;