View Single Post
  #7  
Old 06-12-2003, 09:01 AM
Muuss
Dragon
 
Join Date: May 2003
Posts: 539
Default

select max(id) from doors;

will give you only one row with the biggest value of the id field

select count(id) from doors;

will give you the number of records
Reply With Quote