Fuzzy query for SQL

Source: Internet
Author: User
Tags sql server query

In the database query, there is a complete query and fuzzy query points.
General Fuzzy query statements are as follows:

SELECT field from table WHERE a field like condition

With regard to the conditions, SQL provides four matching modes:
1,%: Represents any 0 or more characters. Can match any type and length of the character, in some cases, if Chinese, please use two percent sign (%).
For example SELECT * from [user] WHERE u_name like '% three '
will be u_name for "Zhang San", "Zhang Cat Three", "three-legged Cat", "Tang Sanzang" and so on Have "three" records all find out.
Also, if you need to find records in U_name that have "three" and "cat", use the and condition select * FROM [user] WHERE u_name like '% three ' and u_name like '% Cat '
If you use SELECT * from [user] WHERE u_name like '% cat% ' Although you can search for "three-legged cat", but can not search out the eligible "Zhang Cat three."
2,_: Represents any single character. Matches a single arbitrary character, which is commonly used to restrict the expression's character-length statement:
For example, select * from [user] WHERE u_name like ' _ three _ ' Only find "Tang Sanzang" so u_name for three words and the middle one word is "three";
Another example is SELECT * from [user] WHERE u_name like ' three __ '; Just find out "three-legged cat" this name is three words and the first word is "three";
3,[]: represents one of the characters listed in parentheses (similar to a regular expression). Specifies a character, string, or range that requires matching objects to be any of them.
For example select * from [user] WHERE u_name like ' [Zhang Li Wang] Three ' will find "Zhang San", "Lie Triple", "Wang San" (instead of "Zhangli Kang");
such as [] a series of characters (01234, ABCDE, etc.) can be slightly written as "0-4", "A-E" select * from [user] WHERE u_name like ' old [1-9] ' will find "Old 1", "Old 2" 、......、 "Old 9";
4,[^]: Represents a single character that is not listed within the parentheses. The value is the same as [], but it requires that the matched object be any character other than the specified character.
For example, select * from [user] WHERE u_name like ' [^ Zhang Li Wang] Three ' will find the surname "Zhang", "Li", "King" of the "Zhao three", "Magozo" and so on;
SELECT * FROM [user] WHERE u_name like ' old [^1-4] '; Will exclude "old 1" to "Old 4", Looking for "old 5", "Old 6" 、......
5, when the query contains a wildcard character
Because of the wildcard character, which causes us to query the special characters "%", "_", "[" the statement can not be implemented normally, and the special characters with "[]" in the normal query. Thus we write the following function:

function Sqlencode (str) str=replace (str, "[", "[[]") ' This sentence must be in the first str=replace (str, "_", "[_]") Str=replace (str, "%", "[%]") Sqlencode=str End Function

The unknown origin string is processed by the function before the query, and it is important to note that when a database is connected to a Web page using this type of query statement:

such as SELECT * from user Where name is like ' old [^1-4] '; above "old [^1-4]" ' "is to have single quotation marks, do not forget, I often forget!

Access

In the recent writing Web program used the fuzzy query of access, write code in acces how can not find records, then up to the original acess and SQL Server fuzzy query is a special condition: Look up table A in the Name field includes "B" in the record Code in Access:

1 SELECT * from a where name like ' *b* ' SQL Server Query Analyzer code Select * from a where name like '%b% ' then you will find that access can find relevant records, but put ' * '% ' will not be found, because the fuzzy query of Access is '? ', ' * ' and SQL Server is not the same as the code in the database, if you want to write in the program can not be used. * ', or to use the '% ' program: strsql= "SELECT * from a where name like '%b% '" so if you have friends and I love to first in the database code testing, it is necessary to pay attention!!

----------------------------------------------------------------------------------------------------------

SQL Fuzzy Query, using the LIKE keyword, plus the wildcard character in SQL, please refer to the following: 1, like ' mc% ' will search for all strings starting with the letter Mc (such as McBadden). 2. Like '%inger ' will search for all strings ending with the letter inger (such as Ringer, Stringer). 3. Like '%en% ' will search all strings containing the letter en in any location (e.g. Bennet, Green, McBadden). 4. Like ' _heryl ' will search for all six-letter names (such as Cheryl, Sheryl) ending with the letter heryl. 5. Like ' [Ck]ars[eo]n ' will search for the following strings: Carsen, Karsen, Carson, and Karson (such as Carson). 6. Like ' [M-z]inger ' will search for all names (such as Ringer) ending with the string inger, starting with any single letter from M to Z. 7, like ' m[^c]% ' will search starts with the letter M, and the second letter is not all names of C (such as Macfeather). -------------------------------------------------The following query string is my previous write, according to the variable Zipcode_key in the ZIP Code table zipcode Query the corresponding data, this sentence is the judgment variable Zipcode_key is a non-numeric query statement, with% to match any length of the string, from the table address, city, province three columns to query all data items containing the keyword, and sorted by province, city, address. This is a simple example, so you can write more complex query statements as long as you understand the method.  
sql = "SELECT * from ZipCode where (address like '%" & zipcode_key & "% ') or (city like '% ' & Zipcode_k EY & "%") or (province like '% ' & zipcode_key & "% ') Order by province,city,address

Examples of using fuzzy queries in stored procedures: SELECT * from Questions where qtitle like '% [' + @KeyWord + ']% ' and isfinish = @IsFinsih The pairs of brackets in the statement are The key to the writing format. -----------for reference only---------

Fuzzy query for SQL

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.