Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个查询来获取具有 az 后缀的名称。我知道 regexp_like 可以做到这一点。但是我应该如何将 regexp_like 与占位符一起使用?
select id_name from name_table where regexp_like(name,'REM_45485[a-z]$');
我应该如何使用占位符?感谢所有的建议。
我认为你应该能够做到:
select id_name from name_table where regexp_like(name, ?);
如果只有部分正则表达式来自占位符,请使用字符串连接:
select id_name from name_table where regexp_like(name, ? || '[a-z]$');