Is `Delete From Join` Standard SQL?

前端 未结 6 1271
没有蜡笔的小新
没有蜡笔的小新 2021-01-18 02:15

Among other questions, this one asked how to delete from a join.

My question: How much of this is standard SQL? On which databases would this actually work (most not

6条回答
  •  执笔经年
    2021-01-18 03:07

    DELETE ... FROM .. Is not part of the ANSI standards, nor UPDATE ... FROM ... for that matter. This includes any join syntax, since the join can only be specified with a FROM.

    All vendors implement this though in one form or another.

提交回复
热议问题