码迷,mamicode.com
首页 > 数据库 > 详细

linux之SQL语句简明教程---SUBSTRING

时间:2017-04-16 18:56:22      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:str   span   sql语句   pad   head   适用于   graph   pos   语法   

SQL 中的 substring 函数是用来抓出一个栏位资料中的当中一部分。这个函数的名称在不同的资料库中不全然一样:

  • MySQL: SUBSTR( ), SUBSTRING( )
  • Oracle: SUBSTR( )
  • SQL Server: SUBSTRING( )

最经常使用到的方式例如以下 (在这里我们用 SUBSTR( ) 为例):

SUBSTR (str, pos)

由 <str> 中,选出全部从第 <pos> 位置開始的字元。请注意,这个语法不适用于 SQL Server 上。

SUBSTR (str, pos, len)

由 <str> 中的第 <pos> 位置開始,选出接下去的 <len> 个字元。

如果我们有下面的表格:

Geography 表格

Region_Name Store_Name
East Boston
East New York
West Los Angeles
West San Diego

例1

SELECT SUBSTR (Store_Name, 3) 
FROM Geography 
WHERE Store_Name = ‘Los Angeles‘;

结果:

‘s Angeles‘

例2

SELECT SUBSTR (Store_Name, 2, 4) 
FROM Geography 
WHERE Store_Name = ‘San Diego‘;

结果:

‘an D‘


Linux实測例如以下:
技术分享


转载请注明:小刘

linux之SQL语句简明教程---SUBSTRING

标签:str   span   sql语句   pad   head   适用于   graph   pos   语法   

原文地址:http://www.cnblogs.com/wzzkaifa/p/6719508.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!