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.
在 clojure 中使用 java.jdbc 时,可以将 delete-rows 与复杂的 WHERE 语句一起使用。例子是
(delete-rows :blogs ["id=?" id])
我想要这样的东西:
(delete-rows :blogs ["id=?" id "user_id=?" user_id])
(delete-rows :blogs ["id=? and user_id=?" id user_id])