in reply to Static Data, SQL::Parser
Does quoting the column name help? It does in MySQL
create table t ( id integer auto_increment primary key, `1` text );
works fine here but didn't without the quoting.
Edit: Clarification
Edit^2: Quoting with " works with SQL::Statement
Edit^3: Sorry, I've misunderstood your problem
|
|---|