温馨提示×

mysql中怎么读取一个字符串长度

小新
227
2021-01-27 08:28:40
栏目: 云计算
亿速云mysql数据库,读写分离,安全稳定,弹性扩容,低至0.3元/天!! 点击查看>>

mysql中怎么读取一个字符串长度

mysql中读取一个字符串长度的示例:

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 length(name) from test where id=3;(查询id为3的name字符串长度)

+--------------+

| length(name) |

+--------------+

| 8 |

+--------------+

1 row in set (0.00 sec)

亿速云「云数据库 MySQL」免部署即开即用,比自行安装部署数据库高出1倍以上的性能,双节点冗余防止单节点故障,数据自动定期备份随时恢复。点击查看>>

推荐阅读:java如何定义一个字符串

0