
sql server
文章平均质量分 61
xusheng120
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
sql server T_sql学习 入门笔记
T-sql: 定义变量 :declare @变量名 类型[,...] 默认为null 赋值 : select @变量名 = 值 set @变量名 = 值 引用 : select @变量名 print @变量名案例: 变量声明: declare @VariableName D原创 2013-12-27 10:01:33 · 434 阅读 · 0 评论 -
SQL Server T-SQL高级查询
高级查询在数据库中用得是最频繁的,也是应用最广泛的。 Ø 基本常用查询 --selectselect * from student; --all 查询所有select all sex from student; --distinct 过滤重复select distinct sex from student; --count 统计select转载 2014-04-30 14:32:29 · 321 阅读 · 0 评论