Python Sqlite3 添加列到 table 以数字开头

Python Sqlite3 Add column to table starting with digit

我正在尝试使用 ALTER TABLE 命令向现有 table 添加一列。由于列名称的前导数字,我还没有找到解决无法识别的令牌错误的解决方案。

列名示例:column = 1abc

到目前为止,我已经尝试了以下方法,但没有成功。

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)

我知道我需要参数化查询,但我不确定如何让它与 ALTER TABLE 命令一起工作。

我得到的错误输出:

unrecognized token: "1abc"

列名称必须是 quoted 并带有 双引号 *:

>>> conn = sqlite3.connect(':memory:')
>>> DDL1 = """CREATE TABLE test ("col1" TEXT);"""
>>> cur.execute(DDL1)
<sqlite3.Cursor object at 0x7f98a67ead50>
>>> conn.commit()
>>> DDL2 = """ALTER TABLE test ADD COLUMN "{}" TEXT"""
>>> cur.execute(DDL2.format('1abc'))
<sqlite3.Cursor object at 0x7f98a67ead50>
>>> conn.commit()
>>> cur.execute("""SELECT * FROM test;""")
<sqlite3.Cursor object at 0x7f98a67ead50>
>>> cur.description
(('col1', None, None, None, None, None, None), ('1abc', None, None, None, None, None, None))

* 反引号 (``) 和方括号 [] 也可用于引用,但文档将这些描述为 non-standard 方法。