如何从某个索引子串到 SQL 中的末尾

How to substring from a certian index to the end in SQL

我想从例如START=3 到字符串结尾。

Str
stringExample
anotherStringExample

我需要这样的东西:

SUBSTR(str, 3, `**end**`)

输出应该是:

Str
ringExample
otherStringExample

您可以试试这个查询

select SUBSTR(Str,3,LENGTH(Str)-3+1) as Str;

select SUBSTR(Str,3) as Str;

substr function w3schools link