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-10 20:20:06 发布

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;