Substr in MySQL and PHP

Source: Internet
Author: User

Substr: String truncation function. Substr ($ str, $ start, $ end)

If the substr function in MySQL needs to be truncated from the first character, the first parameter should be 1;

If the substr function in PHP needs to be truncated from the first character, the first parameter should be 0;

Note: MySQL 5.x supports substr. If MySQL is 4.x, you can use left ($ str, $ length)

Mysql 5.x => substr ("abc", 1, 1) =

Mysql 4.x => left ("abc", 1) =

PHP => substr ("abc", 0, 1) =

PS: View MySQL VERSION: select VERSION ()

Select SUBSTRING (cpcode, 2) from T_PROVINCE_MATERIAL where province_id = 5

Mid is also OK

There are also right (), left (), can be, respectively from the right and from the left

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.