0
を書いていないコマンドを実行し、それがエラーを思い付くパイソンSQLlite3は値
Traceback (most recent call last):
File "G:\documents\GCSE\Computing\Python Files\Databases\Database 1.py", line 15, in <module>
cursor.execute('''INSERT INTO Orders VALUES (first_name,last_name,number,date,order_value)''')
sqlite3.OperationalError: no such column: first_name
以下のとおりであるコード、高く評価されるだろう与えることができる任意のヘルプ; D
cursor.execute('''CREATE TABLE Orders4 (customer_first_name text,customer_second_name text,order_number text,order_date date,order_contents text)''')
first_name = input("What is the customer's first name: ")
last_name = input("What is the customer's last name: ")
number = input("What is the order number: ")
order_value = input("What is the order: ")
date = time.strftime("%d/%m/%Y")
cursor.execute('''INSERT INTO Orders VALUES(first_name,last_name,number,date,order_value)''')
あなたは 'Orders'としてそれを参照してみてください、その後、' Orders4'テーブルを呼び出してみてください – asongtoruin