Perform case-insensitive search in Oracle database
Comparison operators (such as LIKE, =, etc.) in Oracle database are case-sensitive by default. This can present a challenge when you need to search data without regard to case. To solve this problem, Oracle provides several ways to perform case-insensitive searches without relying on full-text indexes.
Method 1: Case conversion
You can use the UPPER() or LOWER() function to force all data to be in the same case. For example:
select * from my_table where upper(column_1) = upper('my_string');
or
select * from my_table where lower(column_1) = lower('my_string');
This may require a full table scan if column_1
is not indexed on upper(column_1)
or lower(column_1)
respectively. To avoid this, create a function-based index:
create index my_index on my_table ( lower(column_1) );
For the LIKE operator, add % around the search string:
select * from my_table where lower(column_1) LIKE lower('my_string') || '%';
Method 2: Regular expression
The REGEXP_LIKE() function introduced starting with Oracle 10g provides case-insensitive search by specifying the 'i' match parameter:
select * from my_table where regexp_like(column_1, '^my_string$', 'i');
To use this as an equality operator, specify the beginning and end of the string (using ^ and $):
select * from my_table where regexp_like(column_1, '^my_string$', 'i');
For LIKE equivalent search, remove ^ and $. Note that the search string may contain characters that are interpreted differently by the regular expression engine.
Method 3: Session-level configuration
The NLS_SORT parameter defines the sort order of comparisons, including = and LIKE. You can enable case-insensitive sorting for all queries in a session by setting it to BINARY_CI:
alter session set nls_sort=BINARY_CI;
You may also want to set NLS_COMP to LINGUISTIC to force language comparison:
alter session set nls_comp=LINGUISTIC;
To improve performance, you can create a language index:
create index my_linguistc_index on my_table (NLSSORT(column_1, 'NLS_SORT = BINARY_CI'));
The above is the detailed content of How to Perform Case-Insensitive Searches in Oracle?. For more information, please follow other related articles on the PHP Chinese website!

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
