Re: [SQL] how to use column name with Case-sensitive with out usig

2005-08-06 Thread Ragnar Hafstaư
On Sat, 2005-08-06 at 05:00 +, wisan watcharinporn wrote: > how can i use > > create table myName( >myColumnName varchar(32) > ); > > select myColumnName from myColumnName ; Assuming you meant 'from myName' here, this should work. On the other hand, this will NOT work: create table "

[SQL] how to use column name with Case-sensitive with out usig ""

2005-08-05 Thread wisan watcharinporn
how can i use create table myName( myColumnName varchar(32) ); select myColumnName from myColumnName ; instead create table "myName" ( "myColumnName" varchar(32) ); select "myColumnName" from "myColumnName" ; _ Express yours