How to find original row count in MySQL?
Database
2
Posts
2
Posters
0
Views
1
Watching
-
The following query returning the following result: SELECT count(*) FROM `table1`; -------------------- Resilt 2000 But the following Query returning different result SELECT table_name, table_rows AS rows FROM information_schema.tables WHERE table_schema = 'bakrol14' and table_name = `table1` Order by table_name; -------------------- Result 2143 What is the reason?
-
The following query returning the following result: SELECT count(*) FROM `table1`; -------------------- Resilt 2000 But the following Query returning different result SELECT table_name, table_rows AS rows FROM information_schema.tables WHERE table_schema = 'bakrol14' and table_name = `table1` Order by table_name; -------------------- Result 2143 What is the reason?