我尝试使用正则表达式从表中选择行。模式是选择的结果。
我在使用 regexp_like 的选择上出现以下编译错误:
PLS-00428:此 SELECT 语句中应有一个 INTO 子句
declare
pattern varchar2;
begin
select columns
into pattern
from table a
where conditions;
select *
from table2
where regexp_like(column, pattern);
end;
我不明白为什么我应该使用 into 子句...