This article is tagged with:
Sql query to get the number of rows in a table
and mysql
sql query to get the number of rows in a table
SELECT COUNT(*) FROM tablename
To count number of rows in SQL table
SELECT count(*)
FROM information_schema.columns
WHERE table_name = 'Your_table_nale';