Re: Help me to create a table with autoincrementing field

2002-01-30 Thread j.urban
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

RE: Help me to create a table with autoincrementing field

2002-01-30 Thread Gurhan Ozen
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

Help me to create a table with autoincrementing field

2002-01-30 Thread Charitha
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