zoukankan      html  css  js  c++  java
  • mysql locate()函数

    mysql> select * from test;
    +----+------------+-------+-----------+
    | id | name       | score | subject   |
    +----+------------+-------+-----------+
    |  1 | xiaoming   |    89 | shuxue    |
    |  2 | xiaohong   |    89 | shuxue    |
    |  3 | xiaohong   |    80 | english   |
    |  4 | xiaohong   |    80 | physics   |
    |  5 | xiaohong   |    80 | astronaut |
    |  6 | xiaoming   |    80 | physics   |
    |  7 | xiaoming   |    80 | astronaut |
    |  8 | xiaoming   |    80 | english   |
    |  9 | xiaobai    |    80 | astronaut |
    | 10 | 1.2xiaobai |    80 | english   |
    | 11 | 2.2xiaobai |    80 | physics   |
    | 12 | 3xiaobai   |    80 | shuxue    |
    | 13 | 123xiaohei |    80 | astronaut |
    | 14 | xiaohei    |    80 | shuxue    |
    | 15 | xiaohei    |    80 | physics   |
    | 16 | .12xiaohei |    80 | english   |
    +----+------------+-------+-----------+
    16 rows in set (0.00 sec)
    
    
    mysql> select locate("xiao",name) from test where id=3;
    +---------------------+
    | locate("xiao",name) |
    +---------------------+
    |                   1 |
    +---------------------+
    1 row in set (0.00 sec)
    
    
    mysql> select locate("iao",name) from test where id=3;
    +--------------------+
    | locate("iao",name) |
    +--------------------+
    |                  2 |
    +--------------------+
    1 row in set (0.00 sec)
    
    
    mysql> select locate("o",name) from test where id=3;
    +------------------+
    | locate("o",name) |
    +------------------+
    |                4 |
    +------------------+
    1 row in set (0.00 sec)
    
    
    mysql> select locate("o",name,5) from test where id=3;
    +--------------------+
    | locate("o",name,5) |
    +--------------------+
    |                  6 |
    +--------------------+
    1 row in set (0.00 sec)

  • 相关阅读:
    (8)设计模式-桥接模式
    (6)设计模式-原型模式
    (5)设计模式-原型模式
    hdu4714树形DP+贪心(乱搞)
    hdu1059(背包dp二进制优化)
    uva12558 Egyptian Fractions (HARD version)(迭代深搜)
    hdu4135 Co-prime【容斥原理】
    BZOJ 1509[NOI 2003]逃学的小孩 树形dp
    bzoj1812 [Ioi2005]riv
    bzoj 2243 [SDOI2011]染色(树链剖分+线段树合并)
  • 原文地址:https://www.cnblogs.com/sea-stream/p/11307988.html
Copyright © 2011-2022 走看看