Oracle的索引的名字是区分大小写的
select count(*) into index_count from user_indexes where lower(index_name) = 'xxx';
因为使用了lower,那么xxx必须是小写。
探讨Oracle数据库中索引名称的大小写敏感性,强调在进行索引操作时,索引名应遵循的大小写规则,特别是使用lower函数进行匹配时,索引名必须为小写。
Oracle的索引的名字是区分大小写的
select count(*) into index_count from user_indexes where lower(index_name) = 'xxx';
因为使用了lower,那么xxx必须是小写。
239

被折叠的 条评论
为什么被折叠?