sqlite3.OperationalError: no such column: 李四
时间: 2024-06-04 11:11:56 浏览: 197
sqlite3.lib
This error occurs because the SQL query is trying to access a column named "李四" which does not exist in the database table. The column name may be misspelled or missing from the table schema. To resolve this error, check the table schema and ensure that the column name is correct and exists in the table.
阅读全文