SQL MID() 函數(shù)


 MID() 函數(shù)用于從文本字段中提取字符。

SQL MID() 語法

SELECT MID(column_name,start[,length]) FROM table_name;       

參數(shù) 描述
column_name 必需。要提取字符的字段。
start 必需。規(guī)定開始位置(起始值是 1)。
length 可選。要返回的字符數(shù)。如果省略,則 MID() 函數(shù)返回剩余文本。

演示數(shù)據(jù)庫


 在本教程中,我們將使用眾所周知的 Northwind 樣本數(shù)據(jù)庫。

 下面是選自 "Customers" 表的數(shù)據(jù):

CustomerID CustomerName ContactName Address City PostalCode Country
1

Alfreds Futterkiste Maria Anders Obere Str. 57 Berlin 12209 Germany
2 Ana Trujillo Emparedados y helados Ana Trujillo Avda. de la Constitución 2222 México D.F. 05021 Mexico
3 Antonio Moreno Taquería Antonio Moreno Mataderos 2312 México D.F. 05023 Mexico
4

Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK
5 Berglunds snabbk?p Christina Berglund Berguvsv?gen 8 Lule? S-958 22 Sweden

SQL MID() 實(shí)例


 下面的 SQL 語句從 "Customers" 表的 "City" 列中提取前 4 個字符:

實(shí)例

SELECT MID(City,1,4) AS ShortCity
FROM Customers;