你說的是xp_sprintf吧?
沒有。但是oracle裡面有動態sql。

解决方案 »

  1.   

    to_char(number_value[,number_format])
    eg. to_char(money,'$9,999.99');
    to_char(datetime_value[,date_format])
    eg. to_char(sysdate,'dd-mm-yy hh24:mi:ss');
    对你有没有帮助?
      

  2.   

    不是楼上所说的那样。比如我要实现 : astring:=xp_printf('your name is %s','john')这样astring最后的串为: 'your name is john'有没有这样的函数?
      

  3.   

    concat('your name is ',john')
      

  4.   

    oracle在处理存储过程时是不是要比sql server灵活多了