发布网友 发布时间:2022-04-11 17:19
共5个回答
热心网友 时间:2022-04-11 18:48
SQL中,取字符串从右边第2个字符到左边的所有字符可以参考下面的代码:
oracle
select substr('字符串',0,Len('字符串')-2) from al;
Sql Server
select substr('字符串',0,Len('字符串')-2)
扩展资料:
sql语句
更新:update table1 set field1=value1 where 范围
查找:select * from table1 where field1 like ’%value1%’ (所有包含‘value1’这个模式的字符串)
排序:select * from table1 order by field1,field2 [desc]
求和:select sum(field1) as sumvalue from table1
参考资料来源:百度百科-SQL语句大全
热心网友 时间:2022-04-11 20:06
print left('65448799',charindex(right('65448799',2),'65448799')-1)
热心网友 时间:2022-04-11 21:41
Sql Server:热心网友 时间:2022-04-11 23:32
oracle