Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有个约会
1012009
我必须在这个日期取最后一个子字符串 2009。
我需要
2009
如何取最后四位数字。
另一个例子 :
1032009
如何取最后四个值 2009。
简单的字符串函数:
SELECT RIGHT(INC_DATE, 4);