Oracle fuzzy inquery, using ignore case.

Source: Internet
Author: User

Here is an example:

 

Prepare data:

Create Table fruit

(

ID number (4) primary key,

Name varchar2 (150)

);

 

Insert into fruit (ID, name) values (1, 'apple ');
Insert into fruit (ID, name) values (2, 'bana ');
Insert into fruit (ID, name) values (3, 'pear ');
Insert into fruit (ID, name) values (4, null );

 

Commit;

 

Select ID, name from fruit;

 

Here is the output:

 

ID name

1PPle

2 banana

3PEar

4 null

 

Select ID, name from fruit where lower (name) like '% P %'; ('% P %', P isminuscule here .)

Or

Select ID, name from fruit where upper (name) like '% P %'; ('% P %', P is capitalized here .)

 

Here is the output:

 

ID name

1PPle

3PEar

 

From the result, you can see if the value of name column containscharacter 'P', No matter 'P' is
Minuscule or capitalized,

That record will be listed in the query result.

 

 

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.