Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么我收到以下行的语法错误?
statement = self.sql.execute("DESCRIBE TEST")
我收到以下错误:
sqlite3.OperationalError:在“DESCRIBE”附近:语法错误
DESCRIBE不是有效的 sqlite3 命令,请使用.schema TEST
DESCRIBE
.schema TEST