RE: A space is contained in colum??

2001-10-31 Thread Jay Fesco
> When I create a table, one colum contains a space, how can I caeate it > correctly? > > like: > > CREATE TABLE mytable( > name CHAR(60) NOT NULL, > Email VARCHAR(50) NOT NULL, > Thrid colum CHAR(60), ///Here there is a > space? > PRIMARY KEY (Email)

RE: A space is contained in colum??

2001-10-31 Thread Rick Emery
: I. TS [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 31, 2001 12:19 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: A space is contained in colum?? I am a newbie. When I create a table, one colum contains a space, how can I caeate it correctly? like: CREATE TABLE mytable( name CHAR

A space is contained in colum??

2001-10-31 Thread Christopher Book
You use the ` char as a quote. (the backwards quote, right below the ESC key on your keyboard with ~) Chris When I create a table, one colum contains a space, how can I caeate it correctly? - Before posting, please check:

A space is contained in colum??

2001-10-31 Thread I. TS
I am a newbie. When I create a table, one colum contains a space, how can I caeate it correctly? like: CREATE TABLE mytable( name CHAR(60) NOT NULL, Email VARCHAR(50) NOT NULL, Thrid colum CHAR(60), ///Here there is a space? PRIMARY KEY (Email) ); W