t sql count records in table code example
Example: To count number of rows in SQL table
SELECT count(*)
FROM information_schema.columns
WHERE table_name = 'Your_table_nale';
SELECT count(*)
FROM information_schema.columns
WHERE table_name = 'Your_table_nale';