目录

MS Access Mid() 函数

示例

从字符串中提取字符,从位置 3 开始:

SELECT Mid("SQL Tutorial", 3) AS ExtractString;
亲自试一试 »

定义和用法

Mid() 函数从字符串中提取一些字符(从任意位置开始)。

语法

Mid( string, start, length)

参数值

Parameter Description
string Required. The string to extract from
start Required. The start position
length Optional. The number of characters to extract. If omitted, this function returns all characters from the start position

技术细节

工作于: 从 Access 2000

更多示例

示例

从一列文本中提取字符(从位置 4 开始,提取 6 个字符):

SELECT Mid(CustomerName, 4, 6) AS ExtractString
FROM Customers;
亲自试一试 »