Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个类型字符数组。
例如:{AA,BB,CC,DD,EE,FF,GG, hh, II, jj,KK}
{AA,BB,CC,DD,EE,FF,GG, hh, II, jj,KK}
从上面的数组中我需要提取例如:从第 3 个位置到第 7 个位置,即{CC,DD,EE,FF,GG}
{CC,DD,EE,FF,GG}
请让我知道如何实现这一目标。
如果您知道职位,您可以简单地执行以下操作:
SELECT myarray[3:7] FROM mytable ...;