Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从一列中选择有限数量的字符。我试过了 :
SELECT substring_index(COLUMN_NAME, 250);
但是列名将被识别为普通文本字符串。
示例:我有“描述”列,我想检索描述的前 250 个字符以放入 php 变量中。
它在使用子字符串而不是 substring_index 时有效。
随着海报的更多澄清,将答案放在这里,以防他/她选择接受它。
substring(description,1,250)
您是否只需要在子字符串函数调用之后添加“AS 描述”,以便在您的 PHP 结果数组中将该列重命名为仅描述?