是否可以为多个列创建一个索引?过冬

时间:2014-10-20 11:50:28

标签: java database hibernate collections hibernate-mapping

我想在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>

1 个答案:

答案 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可以让您更好地理解。希望这会有所帮助..