sqlglot - 为什么无法正确解析 DELETE SQL 语句?

发布于 2025-01-09 12:52:43 字数 474 浏览 0 评论 0原文

为什么Python模块sqlglot无法正确解析DELETE SQL语句?

import sqlglot

sql="DELETE FROM MySchema.MyTable WHERE MyCol='MyValue'"

parsed=sqlglot.parse_one(sql)

结果:

parsed

(COMMAND this: DELETE, expression:
  (LITERAL this:  FROM MySchema.MyTable WHERE MyCol='MyValue', is_string: True))

为什么sqlglot能够解析其他DML命令(SELECT、INSERT、UPDATE)但不能解析DELETE?

我做错了什么吗?

谢谢。

Why Python module sqlglot is not able to parse correctly DELETE SQL Statement?

import sqlglot

sql="DELETE FROM MySchema.MyTable WHERE MyCol='MyValue'"

parsed=sqlglot.parse_one(sql)

Result:

parsed

(COMMAND this: DELETE, expression:
  (LITERAL this:  FROM MySchema.MyTable WHERE MyCol='MyValue', is_string: True))

Why sqlglot is capable of parsing the other DML commands (SELECT, INSERT, UPDATE) but not DELETE?

Am I doing something wrong?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧城烟雨 2025-01-16 12:52:43

自 v1.24.2 起仅部分支持 DELETE 解析。我们将其解释为命令并解析其余部分。我并没有真正需要解析 DELETE,因此支持功能不完整。

编辑:从 v1.24.3 开始,SQLGlot 现在支持 DELETE FROM

(DELETE this:
  (TABLE this:
    (IDENTIFIER this: MyTable, quoted: False), db:
    (IDENTIFIER this: MySchema, quoted: False)), where:
  (WHERE this:
    (EQ this:
      (COLUMN this:
        (IDENTIFIER this: MyCol, quoted: False)), expression:
      (LITERAL this: MyValue, is_string: True))))

DELETE parsing is only partially supported as of v1.24.2. We interpret it as a command and parse the rest. I haven't really had a need to parse DELETE and so support is not fully functional.

EDIT: As of v1.24.3, SQLGlot now supporst DELETE FROM

(DELETE this:
  (TABLE this:
    (IDENTIFIER this: MyTable, quoted: False), db:
    (IDENTIFIER this: MySchema, quoted: False)), where:
  (WHERE this:
    (EQ this:
      (COLUMN this:
        (IDENTIFIER this: MyCol, quoted: False)), expression:
      (LITERAL this: MyValue, is_string: True))))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文