oracle的substrb(str2||str1,1+lengthb(str1),6)如何在tidb中实现

SELECT SUBSTRING(CONCAT(str2, str1), LENGTH(str1) + 1, 6) FROM your_table;

1 个赞