vote up 2 vote down star
1

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.

flag

4 Answers

vote up 2 vote down check
SELECT Auto_increment 
FROM information_schema.tables 
WHERE table_name='the_table_you_want';
link|flag
vote up 3 vote down

try using the field name in the function

select LAST_INSERT_ID(field) from table limit 1;

but LAST_INSERT_ID() should have worked

link|flag
+1, best solution. – musicfreak Jun 1 at 4:43
I tried this and it just returns a list of all of the id's. – James Simpson Jun 1 at 5:55
add LIMIT 1, or it returns COUNT(*) lines; – Leonid Shevtsov Jun 11 at 13:09
good point. fixed. – Jonathan Fingland Jun 11 at 13:41
vote up 0 vote down

Next to the information_schema suggestion, this:

SELECT id FROM table ORDER BY id DESC LIMIT 1

should also be very fast, provided there's an index on the id field (which I believe must be the case with auto_increment)

link|flag
You should also add a LIMIT 1 at the end of that so it doesn't end up retrieving every single id just for that. – musicfreak Jun 1 at 4:43
this doesn't necessarily give you the last auto-increment value as you can insert/update specific values in the auto_increment'ed column – Jonathan Fingland Jun 1 at 4:46
@jonathan, completely forgot, thanks – Evert Jun 1 at 19:57
actually SELECT MAX(id) FROM table should use less memory – Leonid Shevtsov Jun 11 at 13:09
vote up 0 vote down

try this

Execute this SQL : SHOW TABLE STATUS LIKE ''

and fetch the value of the field "Auto_increment"

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.