Home > Common Problem > body text

How to use instr function in oracle

小老鼠
Release: 2023-12-06 15:08:52
Original
1429 people have browsed it

The instr function in oracle is used to find the position of a string in another string. The basic syntax of the INSTR function is "INSTR(string1, string2, start_position, occurrence)".

In Oracle database, the INSTR function is used to find the position of a string in another string. The basic syntax of the INSTR function is as follows:

INSTR(string1, string2, start_position, occurrence)
Copy after login

Where:

string1 is the string to be searched

string2 is the substring to be found

start_position is the position where the search starts, the default is 1

occurrence is the number of occurrences of the substring to be found in the main string, the default is 1

For example, suppose we There is a table employees, in which a field full_name stores the full name of the employee. We want to find employees that contain "Smith". We can use the INSTR function to achieve this:

SELECT full_name
FROM employees
WHERE INSTR(full_name, 'Smith') > 0;
Copy after login

This will return all employees whose full_name contains "Smith".

In addition, the INSTR function can also be used to find the position of a specific character in a string, for example:

SELECT INSTR('Hello, World', ',') AS position
FROM dual;
Copy after login

This will return the position of the comma in the string "Hello, World".

The above is the detailed content of How to use instr function in oracle. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!