码迷,mamicode.com
首页 > 其他好文 > 详细

字付串函数 substring(ex,star,end)

时间:2017-04-18 22:03:38      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:bst   ice   price   pre   from   div   rod   code   end   

 1 --substring(ex,star,end)
 2 SELECT SUBSTRING(Name, 1, 2) AS ProductName, ListPrice  
 3 FROM Production.Product order by ProductName
 4 
 5 SELECT Name FROM Production.Product order by Name
 6 
 7 select * from Production.Product
 8 
 9 
10 SELECT SUBSTRING(Name, 1, 6) AS ProductName, ListPrice  
11 FROM Production.Product 
12 WHERE  ListPrice LIKE 3%;  
13  
14 
15 SELECT SUBSTRING(Name, 1, 30) AS ProductName, ListPrice  
16 FROM Production.Product  
17 WHERE CONVERT(int, ListPrice) LIKE 3%;  

 

字付串函数 substring(ex,star,end)

标签:bst   ice   price   pre   from   div   rod   code   end   

原文地址:http://www.cnblogs.com/ailanglang/p/6730625.html

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