在sql中有类似
的东西INSERT INTO customers (customer_id, city)
VALUES (10, 'London5')
WHERE NOT EXISTS (
SELECT sum(customer_id)
FROM customers
HAVING sum(customer_id) > 20
);
这不是一个有效的例子,但仍然包含我想要实现的逻辑。 我正在使用spring和hibernate,并为同一个应用程序使用2个不同的数据库。所以我需要像jpql或hql这样的自定义@Query,所以它能够在两个DB上运行。你知道这是否可以实现吗?提前致谢。