AttributeError: module 'sqlparse.sql' has no attribute 'From'
时间: 2023-10-18 07:05:14 浏览: 158
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常表示你正在调用 `From` 属性,但是在 `sqlparse.sql` 模块中并没有这个属性。可能的原因是你导入的 `sqlparse` 版本不支持 `From` 属性,或者你调用 `From` 属性的方式有误。
你可以尝试更新 `sqlparse` 模块,或者检查你的代码中是否存在拼写错误或其他语法错误。如果问题仍然存在,请提供更多的上下文和代码细节以便我给出更具体的解决方案。
阅读全文