Answers for "sql query to get row count"

SQL
7

how to count number of rows in sql

SELECT COUNT(*)
FROM dbo.bigTransactionHistory;
Posted by: Guest on March-05-2020
0

sql query to get the number of rows in a table

select count(*) from tablename
Posted by: Guest on May-01-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language