On 07/06/2010 14:36, Brett Wooldridge wrote:
It is not valid in SQL to have column name (or other identifiers) that begin with a numeric character. You're going to have to code specifically for this case.
Quoted identifiers are (in standard SQL) permitted to be entirely numeric.
create table mytab ("393" decimal(3))
should work.
