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

SQL变量、Substring、charindex、case函数、去除重复

时间:2016-01-07 16:44:37      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:

 

 

 

isnull(aa,0)
删除表数据:

truncate table aaa
 
添加字段:

ALTER TABLE table1 ADD col1 varchar(200) DEFAULT ‘2008-05-22‘

修改字段名:

alter table table1 rename column col1 to col2;

修改字段属性:

alter table table1 alter column col1 varchar(200) not null;

修改默认值

alter table table1 add constraint df default(‘嘿嘿‘) for col1;
 

insert into table1(col1,col2)

 

  select col1,col2

  from table2 where table2.id=1

 

update t
   set t.col1 = o.col1
  from table1 AS t
         inner join
       table1 AS o 
         on t.id = o.id

//第一个参数是要截取的对象,第二个参数是截取的起始位置(从1开始),第三个参数是截取的长度

select Substring(‘1234567890‘,-1,3)

 

//第一个参数是要查找的字符,第二个参数是查找的对象,字符串的索引是从1开始的

select charindex(‘.‘,‘132.12.3‘)

 

//获取字符串的长度,参数为要查找的对象

len(‘123456‘)

 

//将一个字符串反转

select reverse(‘hello,world‘) 

将得到如下的输出:dlrow,olleh 

 

//获取最后一次”-“出现的位置

charindex(‘-‘,reverse(@str)) 

//获取最后一个”-“后面的字符 

reverse(substring(reverse(@str),1,charindex(‘-‘,reverse(@str))-1))

 

//类型转换

CAST(@XX AS char(20))

CONVERT(char(20), @XX)

cast(0 as bit)

 

--简单case函数

case sex

              when   ‘1‘   then  ‘男‘

              when   ‘2‘   then  ‘女‘

              else     ‘其他‘   end

 

--case搜索函数

case      when  sex = ‘1‘   then  ‘男‘

              when  sex = ‘2‘   then  ‘女‘

              else    ‘其他‘   end

 

//申明及使用变量

declare @OldItemPath nvarchar(500);

select @OldItemPath=‘123’;

//申明及使用表变量

declare @table1 table (Id int);

insert into @table1

select Id from table1;

select * from @table1;

 

//关键字distinct,去除重复项

select distinct ip,city from table2//关键字distinct,去除重复项

SQL变量、Substring、charindex、case函数、去除重复

标签:

原文地址:http://www.cnblogs.com/deep-blue/p/5110039.html

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