On Fri, 11 Jan 2002 17:21:28 -0800
Jerry Leonard "Jerry Leonard" <[EMAIL PROTECTED]> wrote:

> Okay this is the way I understand the statement below. The uid
> will be a
> number from 1 to 10, max length of ten digits say starting at 1
> then as the
> next user registers it will automatically make that user number 2.
> 
> Am I correct?
> 
> CREATE TABLE users (
>   uid int(10) unsigned NOT NULL auto_increment,

You are correct that it will automatically increment the 'uid' of
each new record beginning with '1', using the digits 0 - 9 (1 to
9999999999).

Check out the manual for "Create Table".

-- 
Raquel
============================================================
Nothing happens in consequence to nature, only in consequence to
what we know of it.
  --Scully, "X-Files"

                              
                              

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to