在SQL中,可以使用SUBSTRING函数来从字符串中获取子字符串。语法如下:
SELECT SUBSTRING(column_name, start_position, length)
FROM table_name
其中,column_name为要提取子字符串的列名,start_position为开始提取的位置(从1开始计数),length为要提取的子字符串的长度。例如,要从一个名为"customers"的表中的"first_name"列中获取前3个字符,可以使用以下SQL语句:
SELECT SUBSTRING(first_name, 1, 3)
FROM customers