请问:我想在一可变数组最后加一个元素"ball", 用extend应该怎么写啊?
exists怎么用?

解决方案 »

  1.   

    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)
      

  2.   

    Sorry, I recorrect it.
    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)