select * from table;
select substring_index(column,":",2) from table;
select position(':' in column) from table;
select substring(column,position(':' in column),5) from table;
mysql substring_index
最新推荐文章于 2025-09-19 13:38:27 发布
本文介绍了如何使用SQL进行字符串操作,包括获取字段中的子串、定位特定字符的位置等实用技巧。
1344

被折叠的 条评论
为什么被折叠?



