简介 目录 评价 推荐
  • NovCMC 2023-04-09

    T-SQL总结一句话


    0赞 · 0采集
  • lovescript 2022-03-23

    最基本的sql查询语句


    0赞 · 0采集
  • 慕少_mq 2021-11-20

    行号

    大小写转换  ctrl +shift +u  大写   ctrl +shift +l 小写   

    0赞 · 0采集
  • 慕少_mq 2021-11-19

    0赞 · 0采集
  • 慕少_mq 2021-11-19









    sa

    0赞 · 0采集
  • 世界会好吗 2021-08-31
    Microsoft SQL server management studio express简称(SS M S E)图片管理工具
    0赞 · 0采集
  • 慕斯卡2921970 2021-08-30
    USE table
    SELECT fiest_name,last_name
    FROM customers_table
    0赞 · 0采集
  • 网工1805何泽楚 2021-07-30

    desc  从大到小


    asc 从小到大

    0赞 · 0采集
  • 网工1805何泽楚 2021-07-30

    两张表通过主键、外键联系起来

    某张表中的外键就是另一张的表中的主键

    0赞 · 0采集
  • 好好学习csx 2021-05-07

     笔记

     

    0赞 · 0采集
  • 好好学习csx 2021-05-07

    聚合函数&经典查询语句

    集合运算function:

    • count()

    • distinct()

    • count(distinct())


    聚合函数:

    • Avg()

    • Min()

    • Max()

    • Sum()


    聚合函数选择出来的是唯一的值,前面所使用的非聚合函数一定要放在Group By中,或者不能使用普通的column

    select SalesPersonID,Max(TotalDue) as MaximumTotalSales
    from [Sales].[SalesOrderHeader]
    group by SalesPersonID

    使用聚合函数和多个普通column,必须将所有普通的column放在group by后

    select SalesPersonID,OrderDate,Max(TotalDue) as MaximumTotalSales
    from [Sales].[SalesOrderHeader]
    group by SalesPersonID,OrderDate

    添加having专门针对聚合函数进行一些限制条件,having后一定要是select中聚合函数的限制条件;普通column的限制操作放在where中

    select SalesPersonID,OrderDate,Max(TotalDue) as MaximumTotalSales
    from [Sales].[SalesOrderHeader]
    group by SalesPersonID,OrderDate
    having Max(TotalDue)>15000

    经典查询语句(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)>15000
    order by SalesPersonID







    1赞 · 2采集
  • 好好学习csx 2021-04-27

    where 关键字

    • Comparison conditions(比较条件):=,>,<,>=,<=,<>

    • between * and *

    Where 语句中使用

    • or 或 and

    • Like  "%" 或 "_" 通配符

    • in 或 not in

    • is null 或 is not null

    0赞 · 0采集
  • weixin_慕运维5037083 2021-04-21
    attach之后可以通过这个服务器联系到
    截图
    0赞 · 0采集
  • 慕婉清7405813 2021-04-08
    学过数据结构,好像很类似,还记得数据查询SQL
    截图
    0赞 · 0采集
  • 慕盖茨502698 2021-02-24
    MySQL database 免费
    截图
    0赞 · 0采集
  • 恍恍惚惚假假真真 2020-09-19
    链接能发一下嘛
    截图
    0赞 · 0采集
  • Ta叫艾琳 2020-07-24
    书签
    截图
    0赞 · 0采集
  • 忧伤的民工 2020-07-06

    如何自由转换queries大小写

    截图
    0赞 · 0采集
  • 忧伤的民工 2020-07-06

    如何显示Line Number

    截图
    0赞 · 0采集
  • 忧伤的民工 2020-07-05

    最基本的SQL查询语句

    截图
    0赞 · 0采集
  • 忧伤的民工 2020-07-05

    T-SQL的用途是什么?

    截图
    1赞 · 0采集
  • 忧伤的民工 2020-07-05

    什么是SQL?

    截图
    0赞 · 0采集
  • 慕雪3464082 2020-05-24

    最基本的SQL查询语句

    截图
    0赞 · 0采集
  • 慕雪3464082 2020-05-24

    Row/Record 行   Field/Cell 字段  Column/Attribute 列

    截图
    0赞 · 0采集
  • Metis1148596 2020-05-16
    select ProductID, Name, ProductName,--using an alias
    'The list price for' + ProductNumber + 'is$' + convert(varchar,Listprice) + '.',--using the concatenation ……

    http://img.mukewang.com/5ec0063100013b0b13070741.jpg

    截图
    0赞 · 0采集
  • WE_Xing 2020-05-14
    SELECT name, size, color FROM tb_Production ORDER BY 2;
    # 2 即 size


    截图
    1赞 · 0采集
  • WE_Xing 2020-05-12

    --desc = descending order

    --asc = ascending order

    截图
    0赞 · 0采集
  • WE_Xing 2020-05-11

    如何自由转换 queries 大小写

    截图
    0赞 · 0采集
  • WE_Xing 2020-05-10

    use xxx [go]

    截图
    0赞 · 0采集
  • WE_Xing 2020-05-10
    最基本的 SQL 查询语句
    截图
    0赞 · 0采集
数据加载中...
开始学习 免费