在 SQL 中,可以使用 RIGHT()
函數(shù)來截取子字符串的后幾位
SELECT RIGHT(column_name, number_of_characters) AS substring
FROM table_name;
其中:
column_name
是要從中截取子字符串的列名。number_of_characters
是要截取的字符數(shù)量。table_name
是包含該列的表名。例如,假設有一個名為 employees
的表,其中有一個名為 employee_id
的列,包含員工 ID,現(xiàn)在想要截取每個員工 ID 的后兩位,可以使用以下查詢:
SELECT RIGHT(employee_id, 2) AS last_two_digits
FROM employees;
這將返回一個結果集,其中包含 employee_id
列中每個值的后兩位。