MySQL Select查询-仅获取值的前10个字符 [英] MySQL Select Query - Get only first 10 characters of a value

查看:528
本文介绍了MySQL Select查询-仅获取值的前10个字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

好的,这就是问题所在.

Ok, so here is the issue.

我有一个带有一些列的表,而主题"是其中的一列. 无论主题"字段包含一个包含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 . 列-idsubjectvalue.

Table - tbl. Columns - id, subject, value.

SQL查询:

SELECT subject FROM tbl WHERE id ='$id';

例如,我得到的结果是

你好,这是我的主题,你好吗

Hello, this is my subject and how are you

我只需要前10个字符

你好,

我知道我可以使用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查询-仅获取值的前10个字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆