0
votes
Whats the best way to get total # of records in a mysql table with php?
MyISAM tables already store the row count, so "SELECT COUNT(*) FROM table" on a MyISAM table simply reads that value. It doesn't scan the table or the index(es). So, it's just as fast or faster tha …
0
votes
How do I split the output from mysqldump into smaller files?
You can dump individual tables with mysqldump by running mysqldump database table1 table2 ... tableN
If none of the tables are too large, that will be enough. Otherwise, you'll …
