我想在xml文件中为集合的多个列创建一个索引或复合索引。有没有正确的方法呢?我找不到任何相关的东西。我看到它可以在sql上使用。
这是我的例子;
<set name="properties" fetch="join" lazy="false" table="PLN_DEMAND_ORDER_ITM_PROPERTY">
<key>
<column name="ORDER_ID" index="IDX_PLN_DOIP_ORDER_ID"/> <=
<column name="LINE_NO" index="IDX_PLN_DOIP_ORDER_ID"/> <= for both column only one index is needed
</key>
.
.
.
</set>
答案 0 :(得分:0)
Multiple columns can be grouped by simply **specifying the same index name** into the same index as you have clearly done it.
这link可以让您更好地理解。希望这会有所帮助..