I currently have a database with over 6 million rows and growing. I currently do SELECT COUNT(id) FROM table; in order to display the number to my users, but the database is getting large and I have no need to store all of those rows except to be able to show the number. Is there a way to select the auto_increment value to display so that I can clear out most of the rows in the database? Using LAST_INSERT_ID() doesn't seem to work.
|
|
|||||||||||
|
|
If it's only about getting the number of records (rows) I'd suggest using:
(at least for MySQL) instead. |
|||||||||||||||||
|
This solution is quick even on databases housing millions of tables, because it does not require querying the incredible large |
|||||||||||||||||
|
|
try this Execute this SQL:
and fetch the value of the field |
||||
|
|
|
if you directly get get max number by writing select query then there may chance that your query will give wrong value. e.g. if your table has 5 records so your increment id will be 6 and if I delete record no 5 the your table has 4 records with max id is 4 in this case you will get 5 as next increment id. insted to that you can get info from mysql defination itself. by writing following code in php
|
|||
|
|
|
Next to the information_schema suggestion, this:
should also be very fast, provided there's an index on the id field (which I believe must be the case with auto_increment) |
|||||||||||||||||||
|
|
|
||||
|
|
|
If you do not have privilege for "Show Status" then, The best option is to, create two triggers and a new table which keeps the row count of your billion records table. Example: TableA >> Billion Records Whenever there is insert query on TableA(InsertTrigger), Increment the row value by 1 TableB |
|||
|
|
hope it helpful :) |
|||
|
|
|
Controller
MODEL
|
|||
|
|
|
Couldn't you just create a record in a separate table or whatever with a column called Users and UPDATE it with the last inserted id on User Registration? Then you would just check this field with a simple query. It might be rough but it would work perfectly. |
|||
|
|

