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 を使用すると、複雑な 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])