sql server一些冷知识

cs 复制代码
1.	Sql Server冷知识
(1)	删除表内容的方法
truncate table 表名 (清除表记录,这个快)
(2)	列出所有数据库
sp_redatabases
(3)	存储过程的参数命名
参数一定要以@开头,以下三个命令皆有效。
alter procedure pro_select_customers @sid int as select * from customers where id=@sid  alter procedure pro_select_customers @id int as select * from customers where id=@id  alter procedure pro_select_customers @@id int as select * from customers where id=@@id
--参数命名无效-- alter procedure pro_select_customers sid int as select * from customers where id=sid
(4)	更改表名
sp_rename 't_Entity','t_1'
(5)	查看表字段
select * from sys.syscolumns where id=OBJECT_ID('detail')
(6)	查看存储过程语句
sp_helptext 'pro_select_customers'
(7)	更换表名
alter table web 
rename to web2
(8)	创建事务
begin transaction
select * from t_1
commit
(9)	创建函数
第一个返回用returns,第二个return。
create function f_plus (@@num1 int,@@num2 int) returns int as  begin 	return @@num1+@@num2; end

--dbo.一定要存在--
select dbo.f_plus (2,44) as num
(10)	加上自动增长列
select ROW_NUMBER() over(order by oid)as nums,* from orders
(11)	游标的使用
sql server换行相当于;
--声明游标-- declare cur_test cursor for  select * from dbo.Employees  declare @@num int  set @@num=0  --打开游标--  open cur_test fetch next from cur_test  while @@FETCH_STATUS=0  begin       --对变量赋值用set-- 	set @@num=@@num+1 	 	print @@num 	 	fetch next from cur_test  end  --关闭游标--  close cur_test  --释放游标--  deallocate cur_test
(12)	更改数据库名称
sp_renamedb '旧数据库名','新数据库名'
(13)	没有fetch offset的情况下如何分页
先把表排个序号,然后根据序号去查询分页
select * from( select ROW_NUMBER() over(order by score) as num,* from dbo.StudentScores ) as tb where num between 11 and 20
支持offset的情况下
--每页十条记录,查询第一页的10条--
select * from tableName offset 0 fetch next 10 rows only;
--查询第二页的10条
select * from tableName offset 10 fetch next 10 rows only;
相关推荐
MatrixOrigin17 小时前
MatrixOne Git4Data 技术详解(三):MatrixOne 架构及 Git4Data 原理解析,快照、Diff、Merge 凭什么这么快
数据库·人工智能·数据平台·矩阵起源·数据底座
王小王-12317 小时前
基于电脑硬件市场数据分析与可视化系统
数据库·数据分析·django·sqlite·电脑·电脑硬件数据·电脑硬件市场分析
yyuuuzz17 小时前
云服务器软件部署的常见问题与经验
linux·运维·服务器·网络·数据库·人工智能·github
码云骑士17 小时前
25-数据库连接池-Django连接复用与连接数上限控制
数据库·python·django
叫我:松哥17 小时前
基于Flask的在线考试刷题系统设计与实现,集智能练习、过程追踪、深度分析与个性化引导
数据库·人工智能·后端·python·flask·boostrap
倒流时光三十年17 小时前
PostgreSQL LEAST 表达式函数详解
数据库·postgresql
thinking_talk17 小时前
2026中国MongoDB云服务厂商能力榜:选型对比与效能评估
数据库·mongodb·腾讯云
dishugj17 小时前
从应用--DB发一条 SQL的数据流向
数据库·oracle
杨云龙UP18 小时前
Oracle 19c 单机环境安装目录规划与磁盘永久挂载操作指南_2026-06-15
运维·服务器·数据库·oracle·部署·目录·规划