MySQL中find_in_set函数如何替换成Oracle写法下⾯sql语句是MySQL写法js代码写在哪里
select count(*) from sys_dept where status = 0 and del_flag = '0' and
find_in_set(#{deptId}, ancestors)
find_in_set 函数的功能就是查询前⼀个字符串在后⼀个字符串中是否存在,mysql语句转oracle
菜鸟教程网python3
如果存在就返回空,如果存在就返回,前⼀个字符串在后⼀个字符串所在的位置
电脑运行快捷键ctrl加什么在Oracle环境下运⾏则会出现这样的错误
ORA-00920:⽆效的关系运算符
browserapp下载
Oracle中的instr函数跟find_in_set函数的功能类似,⽤之替换
在Oracle中的正确写法为
select count(*) from sys_dept where status = 0 and del_flag = '0'
编辑文件linux命令and instr(#{deptId}, ancestors)>0

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。