http://www.postgresql.org/docs/9.0/static/hstore.html
Oracle (数据库)模块是否像(PostgreSQL) hstore一样可用?
发布于 2011-07-28 03:18:48
不,Oracle没有这样的东西可用。
唯一可能接近该特性的方法是使用XML列,该列只存储键/值对,如下所示:
<data>
<entry key="key_1">value_1</entry>
<entry key="key_2">value_2</entry>
<entry key="key_3">value_3</entry>
</data>但它的效率不如PostgreSQL的hstore,索引也要复杂得多
https://stackoverflow.com/questions/6849170
复制相似问题