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.
|
1
|
|
|
|
|
|
|
|||
|
|
|
|
try using the field name in the function
but LAST_INSERT_ID() should have worked |
||||||||
|
|
|
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) |
||||||||
|
|
|
try this Execute this SQL : SHOW TABLE STATUS LIKE '' and fetch the value of the field "Auto_increment" |
||
|
|
