当前位置: 代码迷 >> Oracle管理 >> extend用法解决方案
  详细解决方案

extend用法解决方案

热度:67   发布时间:2016-04-24 06:12:43.0
extend用法
请问:我想在一可变数组最后加一个元素 "ball ",   用extend应该怎么写啊?
exists怎么用?

------解决方案--------------------
1.Never used extend before. Below method is OK.
select CONCAT(RTRIM( 'aa ', ' ' ' '), 'ball ') from dual
2. Simple sample for exists method.
select ID from tablename
where exists( select id from tablename where id > 10)


  相关解决方案