On Thu, 31 Jan 2002, Charitha wrote:
>
> I want to know how to create a table with an autoincrement field in that
> along with a name field with the varchar datatype.
>
create table MySimpleTable (
id integer not null primary key auto_increment,
name varchar(32) not null
);
See:
http://www
Check out:
http://www.mysql.com/doc/C/R/CREATE_TABLE.html
Gurhan
-Original Message-
From: Charitha [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 30, 2002 10:51 PM
To: [EMAIL PROTECTED]
Subject: Help me to create a table with autoincrementing field
Hi all there,
I am a
Hi all there,
I am a fresher to mysql.
I want to know how to create a table with an autoincrement field in that
along with a name field with the varchar datatype.
Thank you.
Regards,
Charitha.
-
Before posting, please chec