Re: SV: Spaces

2001-02-18 Thread Fred van Engen
On Sun, Feb 18, 2001 at 03:06:08PM +0100, Jarmo Paavilainen wrote: > Hi, > > ... > > > Is there a way to create column names with spaces ? > > > > > > > Yes you can use backquotes for this: > > > > create table `a b` ( `x y` int ); > > Doesnt the normal (SQL9?) double quote do the trick? : >

SV: Spaces

2001-02-18 Thread Jarmo Paavilainen
Hi, ... > > Is there a way to create column names with spaces ? > > > > Yes you can use backquotes for this: > > create table `a b` ( `x y` int ); Doesnt the normal (SQL9?) double quote do the trick? : create table "a b" ( "x y" int ); // Jarmo