Oracle uses InStr or like methods to determine whether to include strings _oracle

Source: Internet
Author: User

The first thing that comes to mind is contains,contains usage as follows:

SELECT * from students where contains (address, ' Beijing ')

However, using the CONTAINS predicate has the condition that the column is indexed, that is, if the address column of the students table in the preceding statement does not have an index, an error is presented.

Fortunately, there is another way to use INSTR,INSTR:

SELECT * FROM students where InStr (address, ' Beijing ') > 0

In addition, there is a stupid way, that is to use like, said here everyone should know how to do it:

SELECT * from students where address like '%beijing% '

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.