sql 查找字符串右边第一个字母

2025-03-21 12:38:16
推荐回答(1个)
回答1:

--示例:查找字符串右边第一个字母为A的
select * from Table_name where right(Col_name,1)='A'