-
table的基本框架查看全部
-
关系型数据库的概念查看全部
-
自己新建ER图查看全部
-
数据库的第一印象查看全部
-
1,where的条件语句; 2,%,_,的模糊通配符; 3,字符串要用单引号:‘abc123’; 4,is in和is not in; 5,and和or。查看全部
-
开源——指代码是公开的,免费的。查看全部
-
数据库巨头,最后两个公开源代码查看全部
-
表的行列名查看全部
-
locathose/. 都表示本机上的SQL Server查看全部
-
select from where group by having order by查看全部
-
----The classical T-SQL query!!! select SalesPersonID,OrderDate,Max(TotalDue) as MaximumTotalSales from [Sales].[SalesOrderHeader] where SalesPersonID is not null and OrderDate >='2007/1/1' group by SalesPersonID,OrderDate having Max(TotalDue)>150000 order by OrderDate desc查看全部
-
count 计算行数 distinct 不重复列出所有情况 select count(aaa) from... where aaa is not null select distinct(aaa) from... where aaa is not null select count(distinct(aaa)) from... where aaa is not null Avg(),Min(),Max(),Sum() group by select aaa,Max(...) as ... from... group by aaa having Max(...)>15000 Having与Where的区别 where 子句的作用是在对查询结果进行分组前,将不符合where条件的行去掉,即在分组之前过滤数据,where条件中不能包含聚组函数,使用where条件过滤出特定的行。 having 子句的作用是筛选满足条件的组,即在分组之后过滤数据,条件中经常包含聚组函数,使用having 条件过滤出特定的组,也可以使用多个分组标准进行分组查看全部
-
where...=,>,<,>=,<=,<>只能接int型 如果是string型要加‘’<br> 可以用and或or并列<br> between...and...<br> (表示时间两种方式:年-月-日;月/日/年)<br> 通配符 模糊查询<br> % where name like'%mountain%' %表示可有可无任何字符串<br> _ where name like '_ountain%'<br> _表示这个不知道是什么字符 in或not in<br> where color in('red','white','black')<br> in表示含有 where class not in('H')等同于<>'H"<br>not in表示不含有 is null或is not null<br>是空或不是空 where size is (not) null查看全部
-
0.选择若干行代码按F5可执行被选中的代码,或者execute<br> 1.select top 100 表示搜索前100行的信息,select*尽量少用<br> 2.order by可以出现多个字段,默认为asc升序,desc降序;<br> order by 2表示从select中的第二列按照默认排序<br> 3.isnull(行名,'') 目的是使值为null的元组在查询结果中以空白显示<br> 4.3中无变量名,as关键字作别名: A as B :将A列名重新命名为B输出到查询结果中<br> 5. + 关键字将列与字符串连接起来,例如:A + "is" + B<br> 6. convert(type,变量) 7.可以加入运算,比如round(a*10,1)表示小数点后四舍五入保留一位查看全部
-
use语句 use [...(用的DB)] go(可有可无) 选中use语句后,F5或execute执行查看全部
举报
0/150
提交
取消