SQL 手册SQL 函数字符串函数left本页总览leftleftdescriptionSyntaxVARCHAR left(VARCHAR str, INT len)它返回具有指定长度的字符串的左边部分,长度的单位为utf8字符,此函数的另一个别名为strleft。examplemysql> select left("Hello doris",5);+------------------------+| left('Hello doris', 5) |+------------------------+| Hello |+------------------------+keywordsLEFT