MySQL Select Query - Get only first 10 characters of a value(MySQL Select Query - 仅获取值的前 10 个字符)
问题描述
好的,问题来了.
我有一个包含一些列的表格,主题"是其中的一列.无论主题"字段包含一个包含 100 个字母的字符串,我都需要从主题"字段中获取前 10 个字母.
I have a table with some columns and 'subject' is one of the columns. I need to get the first 10 letters from the 'subject' field no matter the 'subject' field contains a string with 100 letters.
例如
表格 - tbl.列 - id、subject、value.
SQL 查询:
SELECT subject FROM tbl WHERE id ='$id';
我得到的结果是,例如
你好,这是我的主题,你好吗
Hello, this is my subject and how are you
我只需要前 10 个字符
I only require the first 10 characters
你好,这个
我可以理解我可以使用 php substr() 删除其余的字符,但在我的情况下这是不可能的.我需要让 MySQL 删除多余的字符.这怎么办?
I can understand that I can remove the rest of the characters using php substr() but that's not possible in my case. I need to get the excess characters removed by MySQL. How can this be done?
推荐答案
使用下面一行
SELECT LEFT(subject , 10) FROM tbl
MySQL 文档.
这篇关于MySQL Select Query - 仅获取值的前 10 个字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL Select Query - 仅获取值的前 10 个字符
基础教程推荐
- 在 SQL 中连接多个表 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 无法解决整理冲突 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
