Amos的随笔

Java/Python/Go,软件测试等等

导航

2019年4月8日 #

sql server三种不同的赋值方法

摘要: 1. 使用Set关键字 declare @variable int set @variable = <value> 2. 使用select语法 select @variable = <column or expression> from <table name> 3. 申明的同时赋值 declare 阅读全文

posted @ 2019-04-08 16:31 AmosChen 阅读(39) 评论(0) 推荐(0)