萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> mysql教程 >> SQL MID() 使用實例教程

SQL MID() 使用實例教程

SQL MID() 使用實例教程

mid( )函數
mid( )函數是用來提取字符的文本字段。

數據庫mid( )語法

SELECT MID(column_name,start[,length]) FROM table_name
ParameterDescriptioncolumn_nameRequired. The field to extract characters from.startRequired. Specifies the starting position (starts at 1).lengthOptional. The number of characters to return. If omitted, the MID() function returns the rest of the text.
來看個實例吧.
 LastNameFirstNameAddressCity1HansenOlaTimoteivn 10Sandnes2SvendsonToveBorgvn 23Sandnes3PettersenKariStorgt 20Stavanger

現在,我們要提取的前四個字符的“城市”專欄以上。

我們使用下面的SELECT語句:

SELECT MID(City,1,4) as SmallCity FROM Persons
結果.
SmallCitySandSandStav
copyright © 萬盛學電腦網 all rights reserved