摘要: --定义变量 declare @a int; --赋值 set @a = 123456; --输出 print @a; --使用select语句赋值 declare @student nvarchar(50); select @student = Sname from student where s 阅读全文
posted @ 2019-09-25 15:56 highlightyys 阅读(27) 评论(0) 推荐(0) 编辑