在 SQL 中,可以使用 RIGHT()
函数来截取子字符串的后几位
SELECT RIGHT(column_name, number_of_characters) AS substring
FROM table_name;
其中:
column_name
是要从中截取子字符串的列名。number_of_characters
是要截取的字符数量。table_name
是包含该列的表名。例如,假设有一个名为 employees
的表,其中有一个名为 employee_id
的列,包含员工 ID,现在想要截取每个员工 ID 的后两位,可以使用以下查询:
SELECT RIGHT(employee_id, 2) AS last_two_digits
FROM employees;
这将返回一个结果集,其中包含 employee_id
列中每个值的后两位。