Mysql multi-field keyword fuzzy query method

Source: Internet
Author: User
Tags mysql tutorial

Mysql tutorial multi-field keyword fuzzy query method

To query several fields in a mysql SQL statement, we need to use the concat () function of the string join function,

String concat (string, string, string *)


The following function call returns "abcdefg ":

Copy concat ("abc", "d", "ef", "g ")
The following function call returns "abc3efg ":

Copy concat ("abc", 3, "ef", "g ")

At the same time, we will also use like %. below is the SQL statement we want.

 

Select * from 'magazine' where concat ('title', 'tag', 'description') like '% keyword %'

The principle is to use concat to join several fields and then use like to query ko.

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.