oracle在写存储过程时怎样将变量和字符串进行连接?

2024-10-30 08:25:53
推荐回答(1个)
回答1:

变量直接写,要连接字符串的话,用  ||  这个符号,后面的字符串用单引号引。

变量 V_str    字符串' select  emp from table where '

连接后为:' select  emp from table where '  || V_str