摘要: 一、定义变量--简单赋值 declare @a intset @a=5 print @a --使用select语句赋值 declare @user1 nvarchar(50) select @user1='张三'print @user1 declare @user2 nvarchar(50) sel 阅读全文
posted @ 2018-06-26 10:19 microsoftzhcn 阅读(4232) 评论(0) 推荐(1) 编辑
摘要: 存储过程的种类: 1.系统存储过程。 以sp_开头 2.扩展存储过程。 以xp_开头 3.用户定义存储过程。 SQL 循环 阅读全文
posted @ 2018-06-26 09:36 microsoftzhcn 阅读(4916) 评论(0) 推荐(0) 编辑