MySQL SQL determines whether a string exists in another string

Source: Internet
Author: User
Tags mysql tutorial

MySQL Tutorial SQL determines whether a string exists in another string

Locate (Substr,str,pos)

Returns the substring substr the first occurrence of the string str, if SUBSTR is not inside STR, returns 0.

Mysql> Select locate (' Bar ', ' Foobarbar ');
-> 4
Mysql> Select locate (' Xbar ', ' foobar ');
-> 0

Locate (Substr,str,pos)
Returns the substring substr the position of the first occurrence of the string str, starting at the location POS. If SUBSTR is not inside STR, return 0.

Mysql> Select locate (' Bar ', ' Foobarbar ', 5);
-> 7

Take a look at the example below
*/

$cityid = 11;
$sql = "SELECT * from Tbname where locate (' $cityid ', Cityid)";

Cityid is the database tutorial field name that holds data such as 11,12,11,41,25,33. If we're going to take advantage of not in SQL in, that's not true.
Note that the original site reproduced in a tour note from the http://www.111cn.nethttp://www.111cn.net/database/database.html otherwise will be!

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.