T_Sql补充



--调用Dos命令查看文件夹
exec xp_cmdshell 'dir 本地磁盘:\\文件夹'

--让sqlserver可以执行'xp_cmdshell'
EXEC sp_configure 'show advanced options', 1
GO
-- To update the currently configured value for advanced options.
RECONFIGURE
GO
-- To enable the feature.
EXEC sp_configure 'xp_cmdshell', 1
GO
-- To update the currently configured value for this feature.
RECONFIGURE
GO

--调用Dos命令创建文件夹
exec xp_cmdshell 'mkdir(md) 本地磁盘:\\文件夹'

--设置是否显示影响行数
set nocount on

--删除登录用户
1-window exec sp_revokelogin
2-Sql    exec sp_droplogin
--删除数据库用户
revokedbaccess


--给表中添加新列:
alter table 表名
add 列名 数据类型
--删除列:
alter table 表名
drop column 列名

注意:查找的数值必须转换为字符串输出
convert(varchar(字符串长度),变量)

--变量叠加:
declare @sum int
declare @count int
set @sum=0
set @count=0
while(1=1)
begin
set @count=@count+1
set @sum=@sum+@count
if(@count>=10)
break
end
print 'sum:='+Convert(varchar(20),@sum)

--事务的属性-ACID
》A—atomicity   原子性
》C—consistency 一致性
》I—isolation   隔离性         
》D—durability  永久性

调试(逐步):print 变量名(输出变量值)

--创建事务:
》开始事务-begin transaction
》提交事务-commit transaction
》回滚(撤销)事务-rollback transaction
*****创建索引:
if exists(select * from sysindexes where name='ix_**)
drop index 表名.ix_**
create [unique][clustered|nonclustered]index index_name
on table _name (column_name[,column_name]...)
[with fillfactor=x]
--fillfactor:填充因子  X:为1-100的值
*****按索引查询
select * from 表名 with(index=索引名) [where<条件>]
*****创建视图:
if exists(select * from sysobjects where name='view_name')
drop view view_name
create view view_name  as   <select语句>
*****使用视图查询
select * from 视图名

你可能感兴趣的:(sql,c,XP,dos,Go)