Summary of usage of Contains function in Oracle
This article mainly introduces the usage of the Contains function in Oracle. To query students whose address is in a certain city, the sql statement is introduced to you in great detail. Friends who need it can refer to it. I hope it can help everyone.
1. Query students whose address is in Beijing
SELECT student_id,student_name FROM students WHERE CONTAINS( address, 'beijing' )
#remark: beijing is a word, use single quotes bracketed.
2. Query students whose address is in Hebei Province
SELECT student_id,student_nameFROM students WHERE CONTAINS( address, '"HEIBEI province"' )
#remark: HEBEI province is a phrase, in a single word Also use double quotes within quotation marks.
3. Query students whose addresses are in Hebei Province or Beijing
SELECT student_id,student_nameFROM students WHERE CONTAINS( address, '"HEIBEI province" OR beijing' )
remark: Logical operators can be specified ( Including AND, AND NOT, OR).
4. Query the address with the words 'Nanjing Road'
SELECT student_id,student_name FROM students WHERE CONTAINS( address, 'nanjing NEAR road' )
remark: The above query will return the address containing Addresses with the words 'nanjing road', 'nanjing east road', 'nanjing west road', etc.
A NEAR B means the condition: A is close to B.
5. Query for addresses starting with 'lake'
SELECT student_id,student_name FROM students WHERE CONTAINS( address, '"hu*"' )
#remark: The above query will return addresses containing ' hubei', 'hunan', etc. addresses.
Remember it’s *, not %.
6. Similar weighted queries
SELECT student_id,student_name FROM students WHERE CONTAINS( address, 'ISABOUT (city weight (.8), county wright (.4))' )
remark: ISABOUT is the keyword for this kind of query, weight is specified A number between 0 and 1, similar to a coefficient (my understanding). Indicates that different conditions have different emphasis.
7. Polymorphic query for words
SELECT student_id,student_name FROM students WHERE CONTAINS( address, 'FORMSOF (INFLECTIONAL,street)' )
remark: The query will return items containing 'street', 'streets' ' and other words in the address.
For the verb will return to its different tense, such as: DRY, it will return to DRY, DRIED, DRYING and so on.
8. Word query example
A word query is a query for the exact word or phrase entered into the CONTAINS operator between single quotes. In the following example, we will find all documents that contain the word oracle in the text column. The score for each row is selected by the SCORE operator using tag 1:
SELECT SCORE(1) title from news WHERE CONTAINS(text,'oracle',1)> 0;
In query expressions, you can use textual operators such as AND and OR to obtain different results. You can also add structural predicates to the WHERE clause. You can use count(*), CTX_QUERY.COUNT_HITS, or CTX_QUERY.EXPLAIN to count the number of hits (matches) for a query.
9 ABOUT Query Example
In all languages, the ABOUT query increases the number of related documents returned by a query. In English, ABOUT queries can use the subject heading component of the index, which is created by default. This way, the operator returns documents based on the concept of the query, rather than just the exact word or phrase you specified. For example, the following query will find all documents in the text column on the topic politics, rather than documents containing just the word politics:
SELECT SCORE(1) title from news WHERE CONTAINS(text, 'about(politics)', 1) > 0;
Did you learn it? Hurry up and try it yourself.
Related recommendations:
Full text index—CONTAINS syntax
JQuery contains selector_jquery
The above is the detailed content of Summary of usage of Contains function in Oracle. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Solutions to Oracle cannot be opened include: 1. Start the database service; 2. Start the listener; 3. Check port conflicts; 4. Set environment variables correctly; 5. Make sure the firewall or antivirus software does not block the connection; 6. Check whether the server is closed; 7. Use RMAN to recover corrupt files; 8. Check whether the TNS service name is correct; 9. Check network connection; 10. Reinstall Oracle software.

The method to solve the Oracle cursor closure problem includes: explicitly closing the cursor using the CLOSE statement. Declare the cursor in the FOR UPDATE clause so that it automatically closes after the scope is ended. Declare the cursor in the USING clause so that it automatically closes when the associated PL/SQL variable is closed. Use exception handling to ensure that the cursor is closed in any exception situation. Use the connection pool to automatically close the cursor. Disable automatic submission and delay cursor closing.

In Oracle, the FOR LOOP loop can create cursors dynamically. The steps are: 1. Define the cursor type; 2. Create the loop; 3. Create the cursor dynamically; 4. Execute the cursor; 5. Close the cursor. Example: A cursor can be created cycle-by-circuit to display the names and salaries of the top 10 employees.

To stop an Oracle database, perform the following steps: 1. Connect to the database; 2. Shutdown immediately; 3. Shutdown abort completely.

Oracle database paging uses ROWNUM pseudo-columns or FETCH statements to implement: ROWNUM pseudo-columns are used to filter results by row numbers and are suitable for complex queries. The FETCH statement is used to get the specified number of first rows and is suitable for simple queries.

Building a Hadoop Distributed File System (HDFS) on a CentOS system requires multiple steps. This article provides a brief configuration guide. 1. Prepare to install JDK in the early stage: Install JavaDevelopmentKit (JDK) on all nodes, and the version must be compatible with Hadoop. The installation package can be downloaded from the Oracle official website. Environment variable configuration: Edit /etc/profile file, set Java and Hadoop environment variables, so that the system can find the installation path of JDK and Hadoop. 2. Security configuration: SSH password-free login to generate SSH key: Use the ssh-keygen command on each node

SQL statements can be created and executed based on runtime input by using Oracle's dynamic SQL. The steps include: preparing an empty string variable to store dynamically generated SQL statements. Use the EXECUTE IMMEDIATE or PREPARE statement to compile and execute dynamic SQL statements. Use bind variable to pass user input or other dynamic values to dynamic SQL. Use EXECUTE IMMEDIATE or EXECUTE to execute dynamic SQL statements.

When Oracle log files are full, the following solutions can be adopted: 1) Clean old log files; 2) Increase the log file size; 3) Increase the log file group; 4) Set up automatic log management; 5) Reinitialize the database. Before implementing any solution, it is recommended to back up the database to prevent data loss.
