Hello, I'm getting an error when trying to create a table that starts with a numerical character, with the following SQL statement:
I get the following error: Incorrect syntax near '2004'. I've tried everything, putting half quotes around it, putting brackets but it won't work.
works great, no errors because the first character is alpha I guess:
I can manually do it but that defeats the purpose. Any thought would be helpful. Thanks. (asp sql2000)
Code:
CREATE TABLE 2004apr25
Code:
CREATE TABLE test
I can manually do it but that defeats the purpose. Any thought would be helpful. Thanks. (asp sql2000)