pietermartin / sqlg

TinkerPop graph over sql

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Postgresql delete sql optimization

pietermartin opened this issue · comments

postgresql delete sql should rather use the following pattern

delete from table a using
(values()) as tmp(within)
where a.ID = tmp.within