程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> SQL MID() 使用實例教程

SQL MID() 使用實例教程

編輯:MySQL綜合教程

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved