-
正序排列,倒叙排列查看全部
-
0.选择若干行代码按F5可执行被选中的代码 1.select top 100 表示搜索前100行的信息 2.order by可以出现多个字段,默认为asc升序;order by 2表示从select中的第二列按照默认排序 3.isnull(行名,'') 目的是使值为null的元组在查询结果中以空白显示 4.as关键字作别名: A as B :将A列名重新命名为B输出到查询结果中 5. + 关键字将列与字符串连接起来,例如: A + "is" + B 6.round(a*10,1)表示小数点后四舍五入保留一位查看全部
-
主键与外键查看全部
-
group by 后要限制条件的 用HAVING 例HAVING MAX(ID)>10000查看全部
-
SELECT中若使用了聚集函数, 下面一定要group by查看全部
-
SELECT Avg(属性列)查看全部
-
都是放在SELECT 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查看全部
-
列的筛选: where size in('60','61','62')查看全部
-
where like '_ountai%' 也会把含有这几个字母的属性找出来查看全部
-
where like '%mountain% ' 所有含mountain的属性 where like 'mountain% ' 所有mountain开头的属性查看全部
-
isnull(color,'') 把原来为null的空格清空查看全部
-
order by 某列 desc/asc //倒序 正序查看全部
-
SELECT TOP 100 * 选择前100行查看全部
-
不错查看全部
-
讲解不错查看全部
举报
0/150
提交
取消