我们有可编辑的实体。如果未使用实体,则可以对其进行完全编辑。如果在其他地方使用的是系统(例如,在DB中有行的引用),则可以对其进行部分编辑并禁止删除。这在后端验证,但也应通过禁用编辑形式的控件反映在前端。
我有一个想法在MyBatis映射中动态填充isInUse
字段。但它看起来有点难看。
这是SQL Fiddle。以下是小提琴的副本
数据库架构
create table relation_type (
rt_id bigint primary key,
rt_code varchar);
create table entity_type (
et_id bigint primary key,
et_code varchar);
create table entity(
e_id bigint primary key,
et_id bigint references entity_type,
et_name varchar);
create table entity_relation (
er_id bigint primary key,
er_type bigint references relation_type,
er_source bigint references entity,
er_target bigint references entity);
insert into entity_type(et_id, et_code) values (1, 'USER'), (2, 'ORDER');
insert into relation_type(rt_id, rt_code) values (1, 'OWNER'), (2, 'LINK');
insert into entity(e_id, et_id, et_name) values (1, 1, 'user1'), (2, 2, 'Order1'), (3, 2, 'Order2');
insert into entity_relation(er_id, er_type, er_source, er_target) values (1, 1, 1, 2), (2, 1, 1, 3);
一种可能的解决方案
select
rt_id,
rt_code,
exists (select 1 from entity_relation where er_type = rt_id limit 1) as rt_is_in_use
from relation_type;
和另一个
select distinct
rt_id,
rt_code,
(er_id is not null) as rt_is_in_use
from relation_type
left join entity_relation
on er_type = rt_id;
相关问题,建议使用我用过的东西
找到this question但这应该在MyBatis映射中完成,并作为字段发送到前端。
使用select in select clause
和postgres check if column used
等搜索谷歌搜索,但结果与我的情况无关。
is_in_use
不是一个好的选择join
)。在这种情况下,检查使用情况的真实查询类似于
SELECT EXISTS (
SELECT 1
FROM relation_type
JOIN entity_relation
ON er_type = rt_id
WHERE rt_id = #{id}
UNION
SELECT 1
FROM relation_type
JOIN another_table
ON at_type = rt_id
WHERE rt_id = #{id}
UNION
SELECT 1
FROM relation_type
JOIN yet_another_table
ON yat_type = rt_id
WHERE rt_id = #{id}
)
答案 0 :(得分:0)
我提出的最好的方法是略微修改第一个解决方案。由于可以从几个表中引用,不良的第一个解决方案(select子句中的子查询)听起来很糟糕。我在参数中使用了MyBatis sql
tag。
此元素可用于定义SQL代码的可重用片段 可以包含在其他陈述中。 它可以是静态的 (在加载阶段)参数化。不同的属性值可以变化 在包含实例
<sql id="columns">
rt_id,
rt_code,
(<include refid="isInUse"><property name="id" value="rt_id"/></include>) AS rt_is_in_use
</sql>
<sql id="baseSelect">
select
<include refid="columns"/>
from relation_type
</sql>
<sql id="isInUse">
select exists (
select 1 from entity_relation where er_type = ${id} limit 1
)
</sql>
<select id="findAll" resultMap="relationTypeMap">
<include refid="baseSelect"/>
</select>
isInUse
sql chunk也可以接受MyBatis方法参数。所以可以编写选择
<select id="isInUse" resultType="boolean">
<include refid="isInUse">
<property name="id" value="#{id}"/>
</include>
</select>