SqlServer--常用数据查询

1,查询的基本语法

查询内容:select StudentId,StudentName,Gender   -->列名

查询对象:from Students  -->表名

过滤条件:where Gender='男'   --> 查询条件表达式(可选)

结果排序:order by StudentId DESC  --> 排序的列名(可选)

2,改变列的名称 as 或者 =

as:改变的列名写在as后面

=: 改变的列名写在=前面

 

 3,两列合并 +

注意+号两边如果都是int,就是求和啦

 

 4,查询为null的

 

5,取前5行数据

 6,查询前20%的数据

 7,升序排序 ASC

 8,把某个数据都加上5

 9,降序排序 DESC

 10,多列排序

 11,时间范围和两个条件查询

SELECT * FROM tighteningresultdb.tighteningresult__01_01_2023 where StationName = '5线合箱' AND ResultDateTime between '2022-7-18 22:22:22' and '2023-7-18 14:32:22';

  

posted @ 2020-10-28 22:26  包子789654  阅读(393)  评论(0编辑  收藏  举报