gpt4 book ai didi

mysql - 更新数据库中某些大写字段的简单方法?

转载 作者:行者123 更新时间:2023-11-29 14:50:36 26 4
gpt4 key购买 nike

我希望更新类(class)表中的“前缀”字段,仅将第一个字母大写,而不是整个前缀。

有什么简单的方法可以用 SQL 来做到这一点吗?示例输出可能类似于数据库中“前缀”的“Aadm”。

我的 table 看起来像: enter image description here

示例行如下所示: enter image description here

我的 SQL 如下所示:

WHERE CONCAT(prefix,code) LIKE '%".  $keywords . "%'");

是否可以在此处使用 LOWER 前缀?

最佳答案

select prefix,
concat(upper(substring(prefix,1,1)),substring(lower(prefix) from 2)) as initcap
from course

在更新字段之前尝试选择表单

如果您要查找所有字符均为大写的前缀,请使用正则表达式

where binary(prefix) regexp '^[A-Z]+$' 

编辑。更新查询

update course 
set prefix =
concat(upper(substring(prefix,1,1)),substring(lower(prefix) from 2))

关于mysql - 更新数据库中某些大写字段的简单方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5812178/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com