I want to create a table as below:
import sqlite3 as sql
con = sql.connect('test.db')
cur = con.cursour()
sql_command = "create table test(dose float, Dose float, DOSE float)"
cur.execute(sql_command)
But i got an error: OperationalError: duplicate column name: Dose. I wonder how to make the table title case-sensitive?