I am trying to use the ALTER TABLE command to add a column to an existing table. I have not found a solution to get around an unrecognized token error because of the leading digit for the column name.
Column name example: column = 1abc
So far I have tried the following with no luck.
sql = '''ALTER TABLE {table} ADD COLUMN {column} {data_type};'''.format(table=table, column=column, data_type=data_type)
self.cursor.execute(sql)
sql = '''ALTER TABLE ? ADD COLUMN ? ?;'''
self.cursor.execute(sql, (table, column, data_type))
sql = '''ALTER TABLE %s ADD COLUMN %s %s;''' % (table, column, data_type)
self.cursor.execute(sql)
I understand I need to parametize the query, but I am unsure how to get it to work with the ALTER TABLE command.
The error output I am getting:
unrecognized token: "1abc"
The column name must be quoted with double quotes*:
* Backticks (``) and square brackets
[]
may also be used for quoting, but the docs describe these as non-standard methods.